class WXDLLIMPEXP_CORE wxTopLevelWindowGTK : public wxTopLevelWindowBase
{
+ typedef wxTopLevelWindowBase base_type;
public:
// construction
wxTopLevelWindowGTK() { Init(); }
virtual bool EnableCloseButton(bool enable = true);
+ virtual void ShowWithoutActivating();
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
- virtual bool IsFullScreen() const { return m_fsIsShowing; };
-
- virtual bool SetShape(const wxRegion& region);
+ virtual bool IsFullScreen() const { return m_fsIsShowing; }
virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
virtual void SetTitle( const wxString &title );
virtual wxString GetTitle() const { return m_title; }
+ virtual void SetLabel(const wxString& label) { SetTitle( label ); }
+ virtual wxString GetLabel() const { return GetTitle(); }
+
+
virtual bool SetTransparent(wxByte alpha);
virtual bool CanSetTransparent();
// GTK callbacks
virtual void OnInternalIdle();
+ virtual void GTKHandleRealized();
+
// do *not* call this to iconize the frame, this is a private function!
void SetIconizeState(bool iconic);
// size of WM decorations
wxSize m_decorSize;
- // shape of the frame
- wxRegion m_shape;
-
// private gtk_timeout_add result for mimicing wxUSER_ATTENTION_INFO and
// wxUSER_ATTENTION_ERROR difference, -2 for no hint, -1 for ERROR hint, rest for GtkTimeout handle.
int m_urgency_hint;
+ // timer for detecting WM with broken _NET_REQUEST_FRAME_EXTENTS handling
+ unsigned m_netFrameExtentsTimerId;
// return the size of the window without WM decorations
void GTKDoGetSize(int *width, int *height) const;