]> git.saurik.com Git - wxWidgets.git/blob - contrib/include/wx/xml/xh_notbk.h
use SetForegroundWindow instead of BringWindowToTop
[wxWidgets.git] / contrib / include / wx / xml / xh_notbk.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_notbk.h
3 // Purpose: XML resource handler for wxNotebook
4 // Author: Vaclav Slavik
5 // RCS-ID: $Id$
6 // Copyright: (c) 2000 Vaclav Slavik
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef _WX_XH_NOTBK_H_
11 #define _WX_XH_NOTBK_H_
12
13 #ifdef __GNUG__
14 #pragma interface "xh_notbk.h"
15 #endif
16
17 #include "wx/xml/xmlres.h"
18
19 #if wxUSE_NOTEBOOK
20
21 class WXDLLEXPORT wxNotebook;
22
23 class WXXMLDLLEXPORT wxNotebookXmlHandler : public wxXmlResourceHandler
24 {
25 public:
26 wxNotebookXmlHandler();
27 virtual wxObject *DoCreateResource();
28 virtual bool CanHandle(wxXmlNode *node);
29
30 private:
31 bool m_isInside;
32 wxNotebook *m_notebook;
33 };
34
35 #endif
36
37 #endif // _WX_XH_NOTBK_H_