1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/toplevel.h
3 // Purpose: wxTopLevelWindowX11 is the X11 implementation of wxTLW
4 // Author: Julian Smart
8 // Copyright: (c) 2002 Julian Smart
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_X11_TOPLEVEL_H_
13 #define _WX_X11_TOPLEVEL_H_
15 // ----------------------------------------------------------------------------
16 // wxTopLevelWindowX11
17 // ----------------------------------------------------------------------------
19 class WXDLLEXPORT wxTopLevelWindowX11
: public wxTopLevelWindowBase
22 // constructors and such
23 wxTopLevelWindowX11() { Init(); }
25 wxTopLevelWindowX11(wxWindow
*parent
,
27 const wxString
& title
,
28 const wxPoint
& pos
= wxDefaultPosition
,
29 const wxSize
& size
= wxDefaultSize
,
30 long style
= wxDEFAULT_FRAME_STYLE
,
31 const wxString
& name
= wxFrameNameStr
)
35 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
38 bool Create(wxWindow
*parent
,
40 const wxString
& title
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
,
43 long style
= wxDEFAULT_FRAME_STYLE
,
44 const wxString
& name
= wxFrameNameStr
);
46 virtual ~wxTopLevelWindowX11();
48 // implement base class pure virtuals
49 virtual void Maximize(bool maximize
= true);
50 virtual bool IsMaximized() const;
51 virtual void Iconize(bool iconize
= true);
52 virtual bool IsIconized() const;
53 virtual void SetIcon(const wxIcon
& icon
) { SetIcons( wxIconBundle( icon
) ); }
54 virtual void SetIcons(const wxIconBundle
& icons
);
55 virtual void Restore();
57 virtual bool Show( bool show
= true );
59 virtual bool ShowFullScreen( bool show
, long style
= wxFULLSCREEN_ALL
);
60 virtual bool IsFullScreen() const { return m_fsIsShowing
; }
62 virtual void SetTitle( const wxString
& title
);
63 virtual wxString
GetTitle() const;
66 void SetNeedResizeInIdle( bool set
= true )
67 { m_needResizeInIdle
= set
; }
68 void SetConfigureGeometry( int x
, int y
, int width
, int height
)
69 { m_x
= x
; m_y
= y
; m_width
= width
; m_height
= height
; }
71 virtual bool SetShape(const wxRegion
& region
);
73 // For implementation purposes - sometimes decorations make the
74 // client area smaller
75 virtual wxPoint
GetClientAreaOrigin() const;
77 virtual void OnInternalIdle();
80 // common part of all ctors
83 // set the icon for the window
84 void DoSetIcon( const wxIcon
& icon
);
86 // For implementation of delayed resize events
87 bool m_needResizeInIdle
;
89 virtual void DoGetClientSize( int *width
, int *height
) const;
90 virtual void DoGetSize( int *width
, int *height
) const;
91 virtual void DoSetClientSize(int width
, int height
);
92 virtual void DoSetSize(int x
, int y
,
93 int width
, int height
,
94 int sizeFlags
= wxSIZE_AUTO
);
95 virtual void DoGetPosition( int *x
, int *y
) const;
97 // Is the frame currently iconized?
100 // Should the frame be maximized when it will be shown? set by Maximize()
101 // when it is called while the frame is hidden
102 bool m_maximizeOnShow
;
104 // Data to save/restore when calling ShowFullScreen
105 long m_fsStyle
; // Passed to ShowFullScreen
107 bool m_fsIsMaximized
;
112 int m_x
,m_y
,m_width
,m_height
;
115 // list of all frames and modeless dialogs
116 //extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
118 #endif // _WX_X11_TOPLEVEL_H_