vitamin wrote:> > Mawk wrote: > > I couldn't find any information regarding how to disable the title bar for applications running in Wine > > There isn't one. win32api doesn't allow this.Sorry, that's not true: Please have a look at Winamp in Windows, you'll see that Winamp does not have a title bar there. The equalizer window which can be opened from Winamp does not have a title bar either. If you run Winamp in Wine, the current window decorations are attached to the Winamp window, which makes it look just ugly ... if you open the equalizer subwindow, that window will be opened without decorations like in windows. So, I wanted to start Winamp in Wine without the decorations, in the same way it works in Windows and in the same way sub windows are opened from Winamp. Could you by any change provide a hint how this can be done? Thank you, Andreas
vitamin
2011-Jan-30 16:59 UTC
[Wine] Re: Run Command (or option) to disable Wine Title Bar
truell wrote:> Sorry, that's not true: Please have a look at Winamp in Windows, you'll see that Winamp does not have a title bar there. The equalizer window which can be opened from Winamp does not have a title bar either.You can't disable title bar of an application that has one. That application needs to be written in such a way to disable title bar itself. In more details, the window will have to be created with special flags, which alters what messages that window will receive. While you can easily override windows' creation flags, you can't alter application code to deal with new window state.