]>
Commit | Line | Data |
---|---|---|
ec4f95c4 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/toplevel.h | |
3 | // Purpose: declares wxTopLevelWindow class, the base class for all | |
4 | // top level windows (such as frames and dialogs) | |
5 | // Author: Vadim Zeitlin | |
6 | // Modified by: | |
7 | // Created: 06.08.01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
10 | // Licence: wxWindows licence | |
11 | /////////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | #ifndef _WX_TOPLEVEL_H_ | |
14 | #define _WX_TOPLEVEL_H_ | |
15 | ||
16 | #include "wx/window.h" | |
17 | ||
18 | // ---------------------------------------------------------------------------- | |
19 | // wxTopLevelWindow: a top level (as opposed to child) window | |
20 | // ---------------------------------------------------------------------------- | |
21 | ||
22 | class WXDLLEXPORT wxTopLevelWindow : public wxWindow | |
23 | { | |
24 | public: | |
25 | /* | |
26 | for now we already have them in wxWindow, but this is wrong: these | |
27 | methods really only make sense for wxTopLevelWindow! | |
28 | ||
29 | virtual void SetTitle( const wxString& title) = 0; | |
30 | virtual wxString GetTitle() const = 0; | |
31 | */ | |
32 | }; | |
33 | ||
34 | #endif // _WX_TOPLEVEL_H_ |