1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/toplevel.h
4 // Author: Robert Roebling
5 // Copyright: (c) 1998 Robert Roebling, Julian Smart
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef __GTKTOPLEVELH__
10 #define __GTKTOPLEVELH__
12 //-----------------------------------------------------------------------------
13 // wxTopLevelWindowGTK
14 //-----------------------------------------------------------------------------
16 class WXDLLIMPEXP_CORE wxTopLevelWindowGTK
: public wxTopLevelWindowBase
20 wxTopLevelWindowGTK() { Init(); }
21 wxTopLevelWindowGTK(wxWindow
*parent
,
23 const wxString
& title
,
24 const wxPoint
& pos
= wxDefaultPosition
,
25 const wxSize
& size
= wxDefaultSize
,
26 long style
= wxDEFAULT_FRAME_STYLE
,
27 const wxString
& name
= wxFrameNameStr
)
31 Create(parent
, id
, title
, pos
, size
, style
, name
);
34 bool Create(wxWindow
*parent
,
36 const wxString
& title
,
37 const wxPoint
& pos
= wxDefaultPosition
,
38 const wxSize
& size
= wxDefaultSize
,
39 long style
= wxDEFAULT_FRAME_STYLE
,
40 const wxString
& name
= wxFrameNameStr
);
42 virtual ~wxTopLevelWindowGTK();
44 // implement base class pure virtuals
45 virtual void Maximize(bool maximize
= true);
46 virtual bool IsMaximized() const;
47 virtual void Iconize(bool iconize
= true);
48 virtual bool IsIconized() const;
49 virtual void SetIcons(const wxIconBundle
& icons
);
50 virtual void Restore();
52 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
);
53 virtual bool IsFullScreen() const { return m_fsIsShowing
; }
55 virtual bool SetShape(const wxRegion
& region
);
57 virtual void RequestUserAttention(int flags
= wxUSER_ATTENTION_INFO
);
59 virtual void SetWindowStyleFlag( long style
);
61 virtual bool Show(bool show
= true);
65 virtual bool IsActive();
67 virtual void SetTitle( const wxString
&title
);
68 virtual wxString
GetTitle() const { return m_title
; }
70 // Experimental, to allow help windows to be
71 // viewable from within modal dialogs
72 virtual void AddGrab();
73 virtual void RemoveGrab();
74 virtual bool IsGrabbed() const { return m_grabbed
; }
76 // implementation from now on
77 // --------------------------
79 // move the window to the specified location and resize it: this is called
80 // from both DoSetSize() and DoSetClientSize()
81 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
84 virtual void GtkOnSize( int x
, int y
, int width
, int height
);
85 virtual void OnInternalIdle();
87 // do *not* call this to iconize the frame, this is a private function!
88 void SetIconizeState(bool iconic
);
92 GtkWidget
*m_mainWidget
;
93 bool m_insertInClientArea
; /* not from within OnCreateXXX */
95 bool m_fsIsShowing
; /* full screen */
96 long m_fsSaveGdkFunc
, m_fsSaveGdkDecor
;
100 // m_windowStyle translated to GDK's terms
104 // private gtk_timeout_add result for mimicing wxUSER_ATTENTION_INFO and
105 // wxUSER_ATTENTION_ERROR difference, -2 for no hint, -1 for ERROR hint, rest for GtkTimeout handle.
109 // common part of all ctors
112 // override wxWindow methods to take into account tool/menu/statusbars
113 virtual void DoSetSize(int x
, int y
,
114 int width
, int height
,
115 int sizeFlags
= wxSIZE_AUTO
);
117 virtual void DoSetClientSize(int width
, int height
);
118 virtual void DoGetClientSize( int *width
, int *height
) const;
122 // is the frame currently iconized?
124 // is the frame currently grabbed explicitly
125 // by the application?
129 #endif // __GTKTOPLEVELH__