Get/SetTitle only for wxTopLevelWindow (wxGTK part).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-11-04 11:11:22 +00:00
parent d40209bbc4
commit cb8cc2506b
8 changed files with 42 additions and 34 deletions

View File

@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////
// Name: gtk/mdi.h
// Name: wx/gtk/mdi.h
// Purpose:
// Author: Robert Roebling
// Id: $Id$
@@ -140,11 +140,11 @@ public:
// no size hints
virtual void DoSetSizeHints( int WXUNUSED(minW),
int WXUNUSED(minH),
int WXUNUSED(maxW) = -1,
int WXUNUSED(maxH) = -1,
int WXUNUSED(incW) = -1,
int WXUNUSED(incH) = -1) {}
int WXUNUSED(minH),
int WXUNUSED(maxW) = wxDefaultCoord,
int WXUNUSED(maxH) = wxDefaultCoord,
int WXUNUSED(incW) = wxDefaultCoord,
int WXUNUSED(incH) = wxDefaultCoord) {}
#if wxUSE_TOOLBAR
// no toolbar
@@ -162,8 +162,7 @@ public:
{ wxTopLevelWindowBase::SetIcons(icons); }
// no title
void SetTitle( const wxString &title );
wxString GetTitle() const { return m_title; }
virtual void SetTitle( const wxString &title );
// no maximize etc
virtual void Maximize( bool WXUNUSED(maximize) = true ) { }
@@ -213,4 +212,3 @@ private:
};
#endif // __MDIH__