active questions tagged swt - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:20:24Z http://stackoverflow.com/feeds/tag/swt http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1840423/osgi-swt-how-to-split-the-view-gui-in-many-bundles 0 OSGI + SWT: How to split the View (GUI) in many bundles Hectoret 2009-12-03T15:01:10Z 2009-12-03T15:01:10Z <p>I'm writing a graphic application, with java, swt and osgi. The bundle A holds the application main window. Depending on the selection of the user, a different user interface must be loaded. That is, the different GUI are in different bundles. So the main bundle A calls the bundle B to draw the new graphic interface. The bundle B contains many classes, SWT controls that extend the Composite class. This controls need a parent to draw to. The problem here is, the bundle B needs to draw on the bundle A. I tried to sends the parent composite that will hold the new interface from A to B, but when B creates the new control, it crashes.</p> <p>Any idea? How to solve this problem?</p> http://stackoverflow.com/questions/1838837/swt-how-to-render-a-widget-in-the-background-into-an-offscreenbuffer 0 SWT: How to “render” a Widget in the background / into an offscreenbuffer jan 2009-12-03T09:45:25Z 2009-12-03T09:45:25Z <p>Hello Experts,</p> <p>I would very much appreciate your advice and help: </p> <p>How can I render a SWT Widget/Component in the BACKGROUND (offscreenbuffer?) and get the “painted” pixels that were drawn by the Widget/Component to save them on the harddisk:</p> <p>What I currently have is:</p> <pre><code>Display display = new Display(); Shell shell = new Shell(display); // ... MyWidgetComponent mwc = new MyWidgetComponent(shell, SWT.BORDER); shell.open(); Image screenshot = new Image(shell.getDisplay(), shell.getBounds()); GC.copyArea(screenshot, 0, 0); //... </code></pre> <p>Problem: Taking the screenshot itself of the shell/widget works, but it will open a new Window in the Taskbar. That is something I do NOT want. </p> <p>What I want to achieve is: I want to run this application completely in the background as a “server application” (for example embed and call this into a servlet). So the MyWidgetComponent should be rendered pixel by pixel completely in the offscreenbuffer and I later I retrieve the pixels and save them to the harddisk or directly return the rendered widget as an image as the result of the servlet-request. (I do not want to popup any windows in a server environment, in case this might be a windows server...).</p> <p>How can I achieve this. I searched a lot but havent found anything useful.</p> <p>Thank you very much!! Jan</p> http://stackoverflow.com/questions/1632842/how-to-implement-a-google-chrome-like-title-bar-for-java-swt-application 1 How to implement a Google-chrome-like title bar for Java SWT application MartyC 2009-10-27T18:42:01Z 2009-12-03T02:55:24Z <p><img src="http://z1mag3.s3.amazonaws.com/chrome.gif" alt="alt text" /></p> <p>I have inherited development of a Java/SWT application running on Windows only. One of the feature requests that I need to scope is a Google-chrome-type title bar in place of the SWT windows title bar. The application's tabs appear at the same level as the window control buttons.</p> <p>My understanding is that I will need to: </p> <ul> <li>write a Windows widget capable of rendering the custom look and managing tabs as opposed to menus.</li> <li>expose the Windows widget as a dll for use in Java via JNI</li> <li>write a custom SWT widget to wrap it and expose the tab management interface.</li> </ul> <p>I have a lot of experience with Java programming, GUI programming with Swing/AWT, and non-GUI C# programming. Windows GUI programming and SWT are new to me so I'm not sure where to start. The best I have found so far is a 2001 article on <a href="http://eclipse.org/articles/Article-Writing%20Your%20Own%20Widget/Writing%20Your%20Own%20Widget.htm" rel="nofollow">writing your own SWT widget</a>. </p> <p>My biggest unknown is the best way to implement a custom Windows application-window.</p> http://stackoverflow.com/questions/1832378/png-image-with-transparency-on-swt 0 PNG image with transparency on SWT Hectoret 2009-12-02T11:34:35Z 2009-12-02T11:34:35Z <p>I've got a Composite and would like to use a png file as background image. I can do that, the problem is when the image uses transparency it doesn't work and shows a white colour instead. Any thoughts on how to get this to work?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1830058/styling-a-swt-label-to-be-italic 2 Styling a SWT label to be italic Simon Lieschke 2009-12-02T01:08:10Z 2009-12-02T10:08:34Z <p>How would I go about styling a SWT label created along the following lines so it is displayed italicised?</p> <pre><code>Label label = formToolkit.createLabel(composite, "My label name"); </code></pre> http://stackoverflow.com/questions/1770837/linkactivated-is-not-called-from-ihyperlinklistener-class-on-sled11 0 linkActivated is not called from IHyperlinkListener class on SLED11 JavaDoe 2009-11-20T14:38:13Z 2009-11-30T22:04:52Z <p>Hello, I used the IHyperlinkListener class to implment links on a composite. The linkActivated() was called correctly when I did a mouse click on the Windows OS.</p> <p>However, when I did a mouse click on SLED11, linkActivated() is not called during the first time. I saw the composite got redrawn and re-positioned. The initial mouse down cursor position sort of becomes the upper right corner position of the composite once it is anchored. </p> <p>linkActivated() got called the second time when I clicked on the same link.</p> <p>Is this a known issue or does anybody know any work around for it?</p> <p>Thanks.</p> http://stackoverflow.com/questions/971014/how-do-get-a-nice-scale-widget-in-swt-under-gnome 0 How do get a "nice" scale-widget in SWT under Gnome? toobb 2009-06-09T16:03:35Z 2009-11-27T16:00:03Z <p>Hi,</p> <p>I would need a scale-widget in SWT that looks like the following example: <a href="http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/Scales.htm" rel="nofollow">http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/Scales.htm</a></p> <p>If I run this example under Ubuntu (Gnome) the scale looks like this: http:// book.javanb.com/swt-the-standard-widget-toolkit/ch10lev1sec2.html</p> <p>But actually I would prefer to have these steps beside the bar.</p> <p>What can I do?</p> <p>Thank you, Tobias</p> http://stackoverflow.com/questions/1769547/beautifying-a-swt-application-on-mac 2 Beautifying a SWT application on Mac Mark 2009-11-20T10:17:17Z 2009-11-27T14:21:04Z <p>SWT is designed to be cross-platform, so it can run on a Mac. The problem is it commits the cardinal sin of Macland - it's UGLY. Toolbars don't look like Mac toolbars, status bars don't look like Mac status bars, etc.</p> <p>Does anyone have any experience in making an SWT application look more like a Mac application? For example, by making platform-specific JNI calls via the 'OS' class in SWT? If so, how difficult was it?</p> <p>(This question arises because we are looking at porting an existing SWT app designed to run on Windows)</p> <p>Thanks</p> http://stackoverflow.com/questions/1803021/is-there-a-better-way-to-use-sorting-and-filtering-with-ilazytreecontentprovider 1 Is there a better way to use sorting and filtering with ILazyTreeContentProvider Svilen 2009-11-26T10:58:46Z 2009-11-26T12:15:25Z <p>Apparently if using <code>ILazyTree(TreePath)ContentProvider</code> sorting and filtering is not supported by <code>TreeViewers</code>. So setting <code>ViewerFilters</code> or <code>Sorters/Comparators</code> to your TreeView won't do any good. Perhaps this is related to not knowing all elements, including those not visible at the moment. </p> <p>In support to this statement here is javadoc excerpt from <code>org.eclipse.jface.viewers.TreeViewer</code> class:</p> <blockquote> <p>If the content provider is an <code>ILazyTreeContentProvider</code> or an <code>ILazyTreePathContentProvider</code>, the underlying Tree must be created using the {@link SWT#VIRTUAL} style bit, the tree viewer will not support sorting or filtering, and hash lookup must be enabled by calling {@link #setUseHashlookup(boolean)}. </p> </blockquote> <p>The only solution I see at the moment is to get the children for each node already ordered. If you need dynamic sorting, i.e., being able to switch sorting order in desc or asc order during run time, then you need to come up with your own solution for this, monitoring a boolean flag of sorts when filling and updating children for example.</p> <p>Are you aware possibly of better solutions, perhaps more jface API involving?</p> http://stackoverflow.com/questions/1770791/mouse-events-on-an-swt-scrollbar 0 Mouse events on an SWT Scrollbar Paul Lammertsma 2009-11-20T14:30:43Z 2009-11-25T21:29:10Z <p>Using standalone SWT Scrollbars is something of a hack (using <a href="http://stackoverflow.com/questions/1675514/swt-standalone-scrollbar-widget">this workaround</a>), but it can be done. Here's a snippet:</p> <pre><code>ScrolledComposite scrolledComposite = new ScrolledComposite( parent, SWT.V_SCROLL); ScrollBar scrollbar = scrolledComposite.getVerticalBar(); Shell tip = new Shell(UserInterface.getShell(), SWT.ON_TOP | SWT.NO_FOCUS | SWT.TOOL); // ..stylize and fill the tooltip.. </code></pre> <p>Now what I'm trying to do is monitor when the user is interacting with the scrollbar. In particular, I want to know when the user is dragging the scrollbar&mdash;and when it has been released&mdash;in order to display an Office 2007-style tooltip revealing which page the position of the scrollbar corresponds with.</p> <p><img src="http://img8.imageshack.us/img8/1148/wordscrollbar.png" alt="Word-style scrolling tooltip"></p> <p>Presently, I have the following code which displays the tooltip:</p> <pre><code>scrollbar.addSelectionListener(new SelectionListener() { public void widgetDefaultSelected(SelectionEvent event) {} public void widgetSelected(SelectionEvent event) { tip.setVisible(true); } } </code></pre> <p>It would seem logical then to have the tooltip disappear when the mouse button is released:</p> <pre><code>scrollbar.addListener(SWT.MouseUp, new Listener() { public void handleEvent(Event event) { tip.setVisible(false); } }); </code></pre> <p>However, neither <code>scrollbar</code> nor <code>scrolledComposite</code> seem to respond to the <code>SWT.MouseUp</code> event when the user interacts with the scrollbar.</p> <p>I presently have a workaround that hides the tip after a timeout, but I'm not satisfied with this. Any insights would be most appreciated!</p> http://stackoverflow.com/questions/1792828/lazy-and-deferred-treeviewer-questions 1 Lazy and Deferred TreeViewer questions Svilen 2009-11-24T20:48:27Z 2009-11-25T19:57:59Z <p>Hello Everyone,</p> <p>I have actually two questions but they are kind of related so here they go as one...</p> <p>How to ensure garbage collection of tree nodes that are not currently displayed using TreeViewer(SWT.VIRTUAL) and ILazeTreeContentProvider? If a node has 5000 children, once they are displayed by the viewer they are never let go, hence Out of Memory Error if your tree has great number of nodes and leafs and not big enough heap size. Is there some kind of a best practice how to avoid memory leakages, caused by never closed view holding a treeviewer with great amounts of data (hundreds of thousands objects or even millions)? Perhaps maybe there is some callback interface which allow greater flexibility with viewer/content provider elements?</p> <p>Is it possible to combine deffered (DeferredTreeContentManager) AND lazy (ILazyTreeContentProvider) loading for a single TreeViewer(SWT.VIRTUAL)? As much as I understand by looking at examples and APIs, it is only possible to use either one at a given time but not both in conjunction ,e.g. , fetch ONLY the visible children for a given node AND fetch them in a separate thread using Job API. What bothers me is that Deferred approach loads ALL children. Although in a different thread, you It still load all elements even though only a minimal subset are displayed at once.</p> <p>I can provide code examples to my questions if required...</p> <p>I am currently struggling with those myself so If I manage to come up with something in the meantime I will gladly share it here.</p> <p>Thanks!</p> <p>Regards, Svilen</p> http://stackoverflow.com/questions/1779727/create-a-custom-button-with-swt 0 Create a custom button with SWT Hectoret 2009-11-22T19:41:01Z 2009-11-24T09:19:26Z <p>I would like to ask the same thing than <a href="http://stackoverflow.com/questions/2158/creating-a-custom-button-in-java">this question</a> but using SWT: Is there a way to make a Button with your own button graphic not just with an image inside the button? If not is another way to create a custom button in java?</p> http://stackoverflow.com/questions/1784079/add-toolbar-to-section 0 add toolbar to section Ido 2009-11-23T15:59:36Z 2009-11-24T00:13:33Z <p>Hello,</p> <p>I want to add a toolbar to a section in SWT. There is an example i saw in the PDE manifest editor.</p> <p>How can i add this toolbar or buttons? maybe i need to use a different control?</p> <p>Thank you, Ido</p> http://stackoverflow.com/questions/1726331/populating-huge-table-in-swt-jface-rcp-application 0 Populating huge table in SWT/JFace RCP application Dima 2009-11-13T00:13:57Z 2009-11-23T17:04:43Z <p>How would you go about displaying huge amount of rows in SWT table? Huge is something above 20K rows, 20 columns. Don't ask me why I need to show that much data, it's not the point. The point is how to make it work as fast as possible so that end user won't get bored waiting. Each row displays an instance of some object, columns are its properties (some). I thought to use JFace content/label provider pattern, but afraid it will be even slower than hitting the table directly with the data. This is how it goes :</p> <pre><code> Display.getDefault().asyncExec(new Runnable() { public void run() { List&lt;MyObject&gt; objects = model.getViewData(); for(MyObject object: objects){ TableItem item = new TableItem(table, SWT.NULL); item.setImage(0, img1); item.setBackground(color1); item.setText(0, object.getProperty0()); item.setText(1, object.getProperty1()); item.setText(2, object.getProperty2()); ..... } }); </code></pre> <p>Drawing 20k records on my computer takes about 20 sec. The biggest performance problem I've seen in Windows are caused by incredible amount of native windowing messages sent by SWT when new table item created and populated with text. I've found great workaround for this - hide table before populating, and then show it when done. Just calling table.setVisible(false) before the loop and table.setVisible(true) after the loop does wonders - the speed goes up six-seven times! </p> <p>I'd like to speed it up even more. What would you suggest ? Also, I wonder how this trick hiding the widget would work on non-windows implementations of SWT (aka Linux) ? </p> http://stackoverflow.com/questions/1725457/swt-gui-performance-problem-on-linux 0 swt GUI performance problem on linux. Kishore 2009-11-12T21:13:04Z 2009-11-23T13:29:05Z <p>We have a monitoring application built on swt and running on linux. we have few buttons and a dynamic part that changes as we click on these buttons. The problem is that if some ones click too rapidly the cpu could reach 100% and hanging forever. We observed this rapid cpu spikes only on Ubuntu Linux where as windows it runs without on itch. We are sure that our app does repainting whenever we click (we have dynamic part) the button and that's by design. The problem is not alone with the dynamic part. One solution is to ignore rapid clicks.</p> <p>We are wondering if we can ignore rapid Button clicks to avoid cpu spiking all the way to 100%. If that doesn't work we may have to redesign the dynamic part which we prefer as last option. suggestions/comments are greatly appreciated.</p> http://stackoverflow.com/questions/1474760/what-is-the-state-of-swt-to-wpf-port 0 What is the state of SWT to WPF port? TomA 2009-09-24T23:51:53Z 2009-11-22T12:47:43Z <p>A while ago I read about a WPF port of Eclipse and SWT. I can't find any recent information about it.</p> <p>What is the current status of the WPF port? Will it be available before E4?</p> <p>Any other details about the implementation also welcome.</p> http://stackoverflow.com/questions/704621/fonts-on-org-eclipse-swt-widgets-composite-are-messed-up-on-linux 1 fonts on org.eclipse.swt.widgets.Composite are messed up on Linux amarnath vishwakarma 2009-04-01T08:41:37Z 2009-11-19T19:00:03Z <p>I extend org.eclipse.swt.widgets.Composite and create many widgets on it, (labels, table, text etc). The problem I am facing is that the labels' text is getting truncated on linux while it appears fine on windows. When I change the linux's font to gothic the truncation is little less but still there. Is there way to homogenize the windows and linux display. What could be the best font to use in linux in such a case.</p> http://stackoverflow.com/questions/1327354/swt-browser-problem-on-vista 1 SWT Browser Problem on Vista Jonas Byström 2009-08-25T10:22:56Z 2009-11-19T14:16:06Z <p>We're running Java Swing and are using an SWT bridge to get ahold of the SWT browser. Everything normally works just fine, but we have a problem on a Vista test machine. It worked fine until just a week ago or so. The call stack:</p> <pre><code>org.eclipse.swt.SWTError: No more handles at org.eclipse.swt.SWT.error(SWT.java:3589) at org.eclipse.swt.SWT.error(SWT.java:3481) at org.eclipse.swt.SWT.error(SWT.java:3452) at org.eclipse.swt.browser.IE.create(IE.java:184) at org.eclipse.swt.browser.Browser.&lt;init&gt;(Browser.java:109) ... </code></pre> <p>I have tried IE7 and IE8 through the SWT browser, but none is working (XULRunner is not applicable on our application since we need two browser instances).</p> <p>XP, Windows7 and Vista is working on other machines, and I can't exclude something being correpted on this specific machine. We got some Windows updates close to when this error started happening, they seem related. It is a our only Vista test machine with a virtual screen, has there been any Windows updates for IE relating to virtual screens that could cause this? To me it looks like a likely target for security holes, so maybe that could be it?</p> <p>I know this is looking for a needle in a haystack, but has anybody seen anything similar lately?</p> http://stackoverflow.com/questions/1749217/rapid-switch-to-java-for-an-experienced-c-developer 1 Rapid switch to Java for an experienced C++ developer MadH 2009-11-17T14:22:24Z 2009-11-17T14:59:09Z <p>I'm am looking for online tutorials/books, which assume a solid knowledge of OOP/Design patterns concepts and stress on differences (both conceptional and syntactical) between C++ and Java thus allowing for a rapid development in the latter. Thank you very much in advance, appreciate your time. </p> http://stackoverflow.com/questions/1742551/how-do-i-run-the-swt-win32-extension-example-program-locally 0 How do I run the SWT Win32 extension example program locally? Ovesh 2009-11-16T14:36:59Z 2009-11-16T14:36:59Z <p>I am looking into using the <a href="http://feeling.sourceforge.net/" rel="nofollow">SWT Win32 Extension</a>. I downloaded the <a href="http://feeling.sourceforge.net/downloads/org.sf.feeling.swt.win32.extension.zip" rel="nofollow">extension jar files</a>, and the <a href="http://feeling.sourceforge.net/downloads/org.sf.feeling.swt.win32.extension.example.zip" rel="nofollow">example code</a>. However, I couldn't find how to run the example. When I run the application with their <a href="http://feeling.sourceforge.net/jws/example.jnlp" rel="nofollow">jnlp file</a>, it runs. When I looked into the file, I saw that they specify their main class as <code>org.sf.feeling.swt.win32.extension.example.Example</code>, but this class is not part of the sample code (although almost everything else is, including the "about" dialog.</p> <p>So what I'm looking for is either:</p> <ol> <li>A simple main class code to run the example - or - </li> <li>an explanation where I can get the original code for Example.java.</li> </ol> http://stackoverflow.com/questions/1595015/how-can-i-populate-a-jface-contentproposaladapter-from-the-internet 0 How can I populate a JFace ContentProposalAdapter from the internet? Peter 2009-10-20T14:29:20Z 2009-11-10T14:44:46Z <p>So, I'm working on a plugin at work and I've run into a situation where I could use a ContentProposalAdapter to my benefit. Basically, a person will start typing in someone's name and then a list of names matching the current query will be returned in a type-ahead manner (a la <a href="http://google.com" rel="nofollow">Google</a>). So, I created a class IContentProposalProvider which, upon calling it's getProposals() method fires off a thread which handles getting the proposals in the background. The problem I am having is that I run into a race condition, where the processing for getting the proposals via HTTP happens and I try to get the proposals before they have actually been retrieved.</p> <p>Now, I'm trying not to run into an issue of Thread hell, and that isn't getting me very far anyway. So, here is what I've done so far. Does anyone have any suggestions as to what I can do?</p> <pre><code>public class ProfilesProposalProvider implements IContentProposalProvider, PropertyChangeListener { private IContentProposal[] props; @Override public IContentProposal[] getProposals(String arg0, int arg1) { Display display = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell().getDisplay(); RunProfilesJobThread t1 = new RunProfilesJobThread(arg0, display); t1.run(); return props; } @Override public void propertyChange(PropertyChangeEvent arg0) { if (arg0.getSource() instanceof RunProfilesJobThread){ RunProfilesJobThread thread = (RunProfilesJobThread)arg0.getSource(); props = thread.getProps(); } } } public class RunProfilesJobThread extends Thread { private ProfileProposal[] props; private Display display; private String query; public RunProfilesJobThread(String query, Display display){ this.query = query; } @Override public void run() { if (!(query.equals(""))){ GetProfilesJob job = new GetProfilesJob("profiles", query); job.schedule(); try { job.join(); } catch (InterruptedException e) { e.printStackTrace(); } GetProfilesJobInfoThread thread = new GetProfilesJobInfoThread(job.getResults()); try { thread.join(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } props = thread.getProps(); } } public ProfileProposal[] getProps(){ return props; } } public class GetProfilesJobInfoThread extends Thread { private ArrayList&lt;String&gt; names; private ProfileProposal[] props; public GetProfilesJobInfoThread(ArrayList&lt;String&gt; names){ this.names = names; } @Override public void run() { if (names != null){ props = new ProfileProposal[names.size()]; for (int i = 0; i &lt; props.length - 1; i++){ ProfileProposal temp = new ProfileProposal(names.get(i), names.get(i)); props[i] = temp; } } } public ProfileProposal[] getProps(){ return props; } } </code></pre> http://stackoverflow.com/questions/1678369/turning-on-anti-aliasing-in-swt 0 Turning on anti-aliasing in SWT arcticpenguin 2009-11-05T04:33:16Z 2009-11-10T14:12:21Z <p>I've called <code>gc.setAntialias(SWT.ON);</code> and it does nothing. According to that method, it should work.</p> <p>The Javadoc states: </p> <blockquote> <p>Sets the receiver's anti-aliasing value to the parameter, which must be one of SWT.DEFAULT, SWT.OFF or SWT.ON.</p> </blockquote> <p>It's not working for me, and I'm painting on a simple Canvas.</p> http://stackoverflow.com/questions/1690338/drawing-into-an-eclipse-editor 1 Drawing into an Eclipse editor ericbodden 2009-11-06T20:50:42Z 2009-11-10T14:06:29Z <p>I am trying to draw some shapes (boxed ans arrows) into, i.e., "over" the text in an eclipse editor. To get started, I wrote the following code:</p> <pre> IWorkbenchPage activePage = Activator.getDefault().getWorkbench().getActiveWorkbenchWindow().getActivePage(); final Shell shell2 = activePage.getActiveEditor().getSite().getShell(); shell2.addPaintListener(new PaintListener(){ public void paintControl(PaintEvent e){ Rectangle clientArea = shell2.getClientArea(); e.gc.drawLine(0,0,clientArea.width,clientArea.height); } }); </pre> <p>The problem with this code is twofold: (1) The line is drawn not across the editor but across the entire workbench, i.e., Eclipse window, and (2) the line is drawn behind (!) all other controls like toolbars and editors. This causes the line to be almost invisible: it only shows at some pixels between other controls.</p> <p>How can I draw a line across a control like a text editor in Eclipse?</p> http://stackoverflow.com/questions/1697909/add-an-swt-widget-to-a-swing-jpanel 0 Add an SWT widget to a swing JPanel braedy. 2009-11-08T20:58:35Z 2009-11-10T04:11:30Z <p>I understand that this <em>may</em> be impossible, but I would sure like to know if somebody has accomplished this, or have a work-around.</p> <p>I have an SWT Button and am wanting to overwrite an existing JPanel's contents with just the Button being present. My current strategy is to have the SWT Button as an initial null field and then set it through a method, which will refresh the JPanel with the SWT Button.</p> <pre><code>Button ibutton = null; </code></pre> <p>The following is taken from my constructor (class <code>extends JPanel</code>):</p> <pre><code>ibutton.addListener(SWT.Selection, new Listener() { public void handleEvent(Event e) { switch (e.type) { case SWT.Selection: } } }); add(ibutton); //add is the usual swing assignment function // and thus does not work. </code></pre> <p>If there is another means to acheive this, I would be more than grateful to hear what you have.</p> http://stackoverflow.com/questions/1690219/gwt-osx-swt-issues 0 GWT + OSX = SWT issues John Leonard 2009-11-06T20:34:04Z 2009-11-09T22:47:44Z <p>I'm new to GWT development and I'm putting myself through the paces with Google's tutorial but I'm getting errors:</p> <blockquote> <p>java[10574:80f] [Java CocoaComponent compatibility mode]: Enabled 2009-11-06 15:27:38.769 java[10574:80f] [Java CocoaComponent compatibility mode]: Setting timeout for SWT to 0.100000</p> </blockquote> <p>I checked my Java prefs and I have Java SE6 (64 bit) as the preferred JVM. I'm really not sure how to clear this up.</p> http://stackoverflow.com/questions/1694748/adding-item-to-eclipse-text-viewer-context-menu 1 Adding item to Eclipse text viewer context menu Igman 2009-11-07T23:02:39Z 2009-11-08T01:04:12Z <p>Hello. I am developing a plugin for eclipse. In this plugin I need to be able to add an item to the context menu in the text editor. So far I have been unsuccessful in this, does anyone know how to add this item.</p> <p>Also, how do I get a string with the text currently selected in the editor.</p> <p>Thank you so much.</p> http://stackoverflow.com/questions/1688266/swt-cross-platform-enter-detection 0 SWT Cross-Platform Enter Detection Mohsen 2009-11-06T15:19:26Z 2009-11-07T08:50:42Z <p>Hi, I have a global filter (Display.addFilter) in SWT in which I want to detect Enter key. In Windows, pressing Enter generates SWT.CR in 'keyCode' part of KeyListener event. Is this assumption safe for all platforms, or should I check if keyCode == SWT.CR || keyCode == SWT.LF?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1675514/swt-standalone-scrollbar-widget 1 SWT standalone scrollbar widget JesperE 2009-11-04T17:47:13Z 2009-11-06T11:42:28Z <p>Is there a way to create a "standalone" scrollbar in SWT? I would like to have a scrollbar which I have full control over myself and use it to control the contents of another widget in a way which isn't possible with the "built-in" scrollbars in the Table widget, for example.</p> http://stackoverflow.com/questions/538673/swt-link-text-with 0 SWT Link Text with > DKC 2009-02-11T20:41:48Z 2009-11-05T23:03:31Z <p>I am trying to create a SWT Link with the text so it looks like the following</p> <p>&lt;this is the link></p> <p>where the text <strong>this is the link</strong> is the actual link.</p> <p>I can get close with the following code:</p> <pre><code>link.setText("&lt;a&gt;&lt;this is the link&gt;&lt;/a&gt;"); </code></pre> <p>However, I want just the text to be the link, and not include the &lt; and >. I thought I could do it simply by doing:</p> <pre><code>link.setText("&lt;&lt;a&gt;this is the link&lt;/a&gt;&gt;"); </code></pre> <p>But when I do that - I lose the ending >. Can anyone think of how to get the > back (without it being part of the link?</p> <p>Thanks</p> http://stackoverflow.com/questions/939820/javaswt-in-eclipse 0 Java_swt in eclipse Ken 2009-06-02T14:13:18Z 2009-11-05T08:00:03Z <p>Can someone tell me where I can find the executeable "java_swt"?</p> <p>I see multiple sites that say it is embedded in eclipse, and other sites say it is shipped with Mac swt drops. I have the zip file for a mac called "swt-3.5M6-carbon-macosx.zip" and i have the eclipse IDE installed on my test mac machine and windows machine. But i cannot find this executeable which i need to run an swt app smoothly on mac os x.</p> <p>Any help would be appreciated. Thanks.</p>