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 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();
virtual void RemoveGrab();
virtual bool IsGrabbed() const { return m_grabbed; }
+
+ virtual void Refresh( bool eraseBackground = true,
+ const wxRect *rect = (const wxRect *) NULL );
+
// implementation from now on
// --------------------------
// 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;
bool m_grabbed;
bool m_updateDecorSize;
-
-public:
- bool m_resizeQueued;
+ bool m_deferShowAllowed;
};
#endif // _WX_GTK_TOPLEVEL_H_