1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declares wxTopLevelWindow class, the base class for all
4 // top level windows (such as frames and dialogs)
5 // Author: Vadim Zeitlin
9 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10 // Licence: wxWindows licence
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_TOPLEVEL_H_
14 #define _WX_TOPLEVEL_H_
16 #include "wx/window.h"
18 // ----------------------------------------------------------------------------
19 // wxTopLevelWindow: a top level (as opposed to child) window
20 // ----------------------------------------------------------------------------
22 class WXDLLEXPORT wxTopLevelWindow
: public wxWindow
26 for now we already have them in wxWindow, but this is wrong: these
27 methods really only make sense for wxTopLevelWindow!
29 virtual void SetTitle( const wxString& title) = 0;
30 virtual wxString GetTitle() const = 0;
34 #endif // _WX_TOPLEVEL_H_