1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "popupwin.h"
18 #include "wx/popupwin.h"
21 #include "wx/x11/private.h"
22 #include "X11/Xatom.h"
23 #include "X11/Xutil.h"
25 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
29 BEGIN_EVENT_TABLE(wxPopupWindow
,wxPopupWindowBase
)
32 IMPLEMENT_DYNAMIC_CLASS(wxPopupWindow
, wxWindow
)
34 bool wxPopupWindow::Create( wxWindow
*parent
, int style
)
36 if (!CreateBase( parent
, -1, wxDefaultPosition
, wxDefaultSize
, style
, wxDefaultValidator
, "popup" ))
38 wxFAIL_MSG( wxT("wxPopupWindow creation failed") );
42 // All dialogs should really have this style
43 m_windowStyle
= style
;
44 m_windowStyle
|= wxTAB_TRAVERSAL
;
50 if (m_parent
) m_parent
->AddChild( this );
52 Display
*xdisplay
= wxGlobalDisplay();
53 int xscreen
= DefaultScreen( xdisplay
);
54 Visual
*xvisual
= DefaultVisual( xdisplay
, xscreen
);
55 Window xparent
= RootWindow( xdisplay
, xscreen
);
57 XSetWindowAttributes xattributes
;
58 XSizeHints size_hints
;
61 long xattributes_mask
=
64 CWBorderPixel
| CWBackPixel
;
65 xattributes
.background_pixel
= BlackPixel( xdisplay
, xscreen
);
66 xattributes
.border_pixel
= BlackPixel( xdisplay
, xscreen
);
67 xattributes
.override_redirect
= True
;
68 xattributes
.save_under
= True
;
70 Window xwindow
= XCreateWindow( xdisplay
, xparent
, pos
.x
, pos
.y
, size
.x
, size
.y
,
71 0, DefaultDepth(xdisplay
,xscreen
), InputOutput
, xvisual
, xattributes_mask
, &xattributes
);
73 XSelectInput( xdisplay
, xwindow
,
74 ExposureMask
| KeyPressMask
| KeyReleaseMask
| ButtonPressMask
| ButtonReleaseMask
|
75 ButtonMotionMask
| EnterWindowMask
| LeaveWindowMask
| PointerMotionMask
|
76 KeymapStateMask
| FocusChangeMask
| ColormapChangeMask
| StructureNotifyMask
|
79 m_mainWidget
= (WXWindow
) xwindow
;
80 wxAddWindowToTable( xwindow
, (wxWindow
*) this );
82 // Probably shouldn't be here for an unmanaged window
83 //XSetTransientForHint( xdisplay, xwindow, xparent );
85 // TODO: Will these calls cause decoration??
87 size_hints
.flags
= PSize
;
88 size_hints
.width
= size
.x
;
89 size_hints
.height
= size
.y
;
90 XSetWMNormalHints( xdisplay
, xwindow
, &size_hints
);
92 wm_hints
.flags
= InputHint
| StateHint
/* | WindowGroupHint */;
93 wm_hints
.input
= True
;
94 wm_hints
.initial_state
= NormalState
;
95 XSetWMHints( xdisplay
, xwindow
, &wm_hints
);
97 // No decorations for this window
99 Atom wm_delete_window
= XInternAtom( xdisplay
, "WM_DELETE_WINDOW", False
);
100 XSetWMProtocols( xdisplay
, xwindow
, &wm_delete_window
, 1);
102 wxSetWMDecorations((Window
) GetMainWindow(), style
);
108 void wxPopupWindow::DoMoveWindow(int WXUNUSED(x
), int WXUNUSED(y
), int WXUNUSED(width
), int WXUNUSED(height
) )
110 wxFAIL_MSG( wxT("DoMoveWindow called for wxPopupWindow") );
113 void wxPopupWindow::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
115 wxWindowX11::DoSetSize(x
, y
, width
, height
, sizeFlags
);
118 bool wxPopupWindow::Show( bool show
)
120 return wxWindowX11::Show( show
);
123 #endif // wxUSE_POPUPWIN