These navigation events are enabled when the Canvas does not implement any of the following pointer events callback functions.
protected void pointerDragged(int x, int y)
protected void...
Type: Posts; User: gorkem.ercan; Keyword(s):
These navigation events are enabled when the Canvas does not implement any of the following pointer events callback functions.
protected void pointerDragged(int x, int y)
protected void...
The version of the ShowCase example that accommodates the new single touch Command mapping will be released together with the 3.7 version of the Java Developer's Library. I do not know the exact...
Does your application implement any of the following pointer functions pointerDragged(int x, int y), pointerPressed(int x, int y) , or pointerReleased(int x, int y)
On C7, if ...
You can query the current orientation using the Screen[1]. Screen can be retrieved from MobileDevice. Screen also provides mechanism for the detection of the orientation changes.
In addition...
It is JMUnit that is integrated with Eclipse MTJ/Pulsar
--
Gorkem
After doing some research it turns out that, this was actually a bug. A fix for it is released so the newer devices and software updates should not be affected from it.
--
Gorkem
Code looks fine.. Can you confirm that the selected language of the device is German, when this happens?
--
Gorkem
Have you enabled on device debugging on the device?
--
Gorkem
Is this the "Options" text that opens up the menu? Can you provide a quick snippet?
Thanks,
Gorkem
The long tap pop up menu is active if you have a Menu of pop up type set for the Control (in your case Button) or a Command has the Button as its parent. I think in your case you just need to change...
The first information is what the SDK (ClamShellCldcPhone1) is capable of supporting. The second information is what your application descriptor configured to support. The default values comes from...
If you are using S60 3rd Ed FP2 or a later SDK both NetBeans and MTJ will populate the buildpath with eSWT library, you do not need to do anything special.
In MTJ, there is a new midlet template...
Due to a limitation on the S60 native browser, eSWT Browser component can not report the url changes until the change has happened. This means that LocationListener.changing() is called only for...
The preferred size of the Browser on S60 is screen size so the next time layout manager (in your case RowLayout) tries to layout it resizes the Browser. You can use the RowData to hint a preferred...
I am sorry, could not respond earlier but had a quite busy week.
The MMAPI problem was common to both LCDUI and eSWT and is now addressed and will be included on the final release. Thanks for...
ScrolledComposite does not support panning. It provides scrolling due to changes on the scroll bar values. Basically, it adds selection listeners to the scrollbars and moves the content as the values...
Hi,
The touch events are delivered are delivered/named as MouseEvents on eSWT.
By default eSWT components are not scrolled by themselves you need to add scrolling logic, however there is a...
SWT.FLAT style may help a little but there is no real way to get rid of the margins around the Button.
--
Gorkem
Tasktip has a fixed position, that depends on the device form factor.
--
Gorkem
Hi,
For full screen check out the MobileShell. This should work for both Landscape and Portrait...
I was under the impression that you are trying to draw a background image to the Canvas and and add eSWT Controls to it. But from your images I got the impression that you are trying to create an...
Have you tried the example code provided when you asked this question the first time? ( http://discussion.forum.nokia.com/forum/showthread.php?t=191919) Is that working for you? If it does then it is...
Thread.currentThread() != display.getThread() check is not implementation specific. In eSWT & SWT, UI thread is the one that creates the Display object so application already has a way to know the UI...
Combo look & feel is tied to the native component and in order to be able to keep it usable, it can not go smaller than a certain height. Scrollbars thickness is also the same story.
However you can...
I honestly do not know when you will start receiving those fixes, but they will come as part of firmware updates, new products and such..
The ScrolledComposite we will be providing is almost the...