projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed bug with wxcolourDatabase::FindColour(); added (and documented) new Find()...
[wxWidgets.git]
/
include
/
wx
/
gtk
/
toplevel.h
diff --git
a/include/wx/gtk/toplevel.h
b/include/wx/gtk/toplevel.h
index 2cc960a242a5b94fb6f83ed248ae3e80a0013ea2..e95ee0f11c50ece2f0d55a0e55e9c6a1f4473593 100644
(file)
--- a/
include/wx/gtk/toplevel.h
+++ b/
include/wx/gtk/toplevel.h
@@
-11,7
+11,7
@@
#ifndef __GTKTOPLEVELH__
#define __GTKTOPLEVELH__
#ifndef __GTKTOPLEVELH__
#define __GTKTOPLEVELH__
-#if
def __GNUG__
+#if
defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "toplevel.h"
#endif
#pragma interface "toplevel.h"
#endif
@@
-60,11
+60,19
@@
public:
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
virtual bool IsFullScreen() const { return m_fsIsShowing; };
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
virtual bool IsFullScreen() const { return m_fsIsShowing; };
+ virtual bool SetShape(const wxRegion& region);
+
virtual bool Show(bool show = TRUE);
virtual void SetTitle( const wxString &title );
virtual wxString GetTitle() const { return m_title; }
virtual bool Show(bool show = TRUE);
virtual void SetTitle( const wxString &title );
virtual wxString GetTitle() const { return m_title; }
+ // Experimental, to allow help windows to be
+ // viewable from within modal dialogs
+ virtual void AddGrab();
+ virtual void RemoveGrab();
+ virtual bool IsGrabbed() const { return m_grabbed; }
+
// implementation from now on
// --------------------------
// implementation from now on
// --------------------------
@@
-111,6
+119,9
@@
protected:
// is the frame currently iconized?
bool m_isIconized;
// is the frame currently iconized?
bool m_isIconized;
+ // is the frame currently grabbed explicitly
+ // by the application?
+ bool m_grabbed;
};
#endif // __GTKTOPLEVELH__
};
#endif // __GTKTOPLEVELH__