Version 14 of wm transient

Updated 2003-03-20 18:22:25

MGS - If you are creating a transient window, the full 'transient effect' may not kick in properly until the window has been in a fully unmapped state. It's possible that you may not even notice that it's not fully transient. Just setting the transient flag before the window is initially mapped may not have the full desired result.

From my understanding:

  1. The transient window should always remain on-top, or in front, of the parent window.
  2. Minimizing the parent window should also minimize/withdraw the transient window.
  3. The geometry of the transient window should not change when moving/resizing/minimizing/maximizing the parent window.
  4. The transient window should never have an application (taskbar) icon.
  5. The window manager should not draw minimize/maximize buttons for the transient window (only a close button).
  6. Transient windows may or may not be resizable. The window manager should provide hooks to resize the window.

Some of these (probably just 5) may be dependent on the window manager. If your window is not fully transient (as mentioned above) 1, 3 and/or 5 may not happen.


jenglish As a matter of fact all of them are WM-dependent. Most window managers I've seen do #1 and #4, and use a smaller set of window decorations (usually just a close button and sometimes a menu button). #2 is also pretty common.

The transient flag is only a hint; you shouldn't depend on any particular behaviour.


Of course, I've probably got this all wrong, and I should read the ICCCM.

If you're writing code to create a transient window, you should either:

  • wait until your toplevel is mapped, then make it transient, then withdraw and deiconify, OR
  • create your toplevel, withdraw it, update idletasks, mark as transient, and then deiconify.

I favor the second approach, as follows:

   toplevel .t
   wm withdraw  .t
   update idletasks
   wm transient .t .
   wm deiconify .t

jenglish Window managers are only required to examine the transient field when the window transitions from the Withdrawn to the Normal state, so the above is correct. You can also just do:

   toplevel .t ; wm transient .t .

since .t won't be mapped until the next update, update idletasks, or the event loop is reentered.

MGS - Unfortunately, this 1-2 liner doesn't work for me (Linux, kwin/KDE 3). I have to resort to the 5 lines above.


Category Command