wxTLW::IsMaximized for wxGTK2 (patch 992743)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28278 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2004-07-17 16:53:28 +00:00
parent 9f45f08eff
commit d8e1fe80ad
3 changed files with 16 additions and 0 deletions

View File

@ -234,6 +234,8 @@ wxGTK:
in wxSystemSettings::GetMetric (Mart Raudsepp)
- wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
configure if you want to use GTK+ 1.2
- implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
freedesktop.org's wm-spec (Mart Raudsepp)
wxMotif:

View File

@ -936,10 +936,17 @@ void wxTopLevelWindowGTK::Maximize(bool maximize)
bool wxTopLevelWindowGTK::IsMaximized() const
{
#ifdef __WXGTK20__
if(!m_widget->window)
return false;
return gdk_window_get_state(m_widget->window) & GDK_WINDOW_STATE_MAXIMIZED;
#else
// wxFAIL_MSG( _T("not implemented") );
// This is an approximation
return FALSE;
#endif
}
void wxTopLevelWindowGTK::Restore()

View File

@ -936,10 +936,17 @@ void wxTopLevelWindowGTK::Maximize(bool maximize)
bool wxTopLevelWindowGTK::IsMaximized() const
{
#ifdef __WXGTK20__
if(!m_widget->window)
return false;
return gdk_window_get_state(m_widget->window) & GDK_WINDOW_STATE_MAXIMIZED;
#else
// wxFAIL_MSG( _T("not implemented") );
// This is an approximation
return FALSE;
#endif
}
void wxTopLevelWindowGTK::Restore()