vote up 1 vote down star

alt text

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.

My understanding is that I will need to:

  • write a Windows widget capable of rendering the custom look and managing tabs as opposed to menus.
  • expose the Windows widget as a dll for use in Java via JNI
  • write a custom SWT widget to wrap it and expose the tab management interface.

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 writing your own SWT widget.

My biggest unknown is the best way to implement a custom Windows application-window.

flag
The way I understand it is that it would be nearly impossible to do this with SWT as SWT is pretty much the most platform-agnostic GUI tool, and thus the most standardized. A GUI like Chrome requires a much more direct interface with the operating system as it does not use standard OS GUI elements. You will effectively need to write your own tab (and probably window) manager. – HalfBrian yesterday

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.