~ubuntu-dev/wxwidgets2.6/upstream-debian

« back to all changes in this revision

Viewing changes to include/wx/xrc/xh_notbk.h

  • Committer: Daniel T Chen
  • Date: 2006-06-26 10:15:11 UTC
  • Revision ID: crimsun@ubuntu.com-20060626101511-a4436cec4c6d9b35
ImportĀ DebianĀ 2.6.3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////////
 
2
// Name:        xh_notbk.h
 
3
// Purpose:     XML resource handler for wxNotebook
 
4
// Author:      Vaclav Slavik
 
5
// RCS-ID:      $Id: xh_notbk.h,v 1.5 2005/01/07 21:27:19 VS Exp $
 
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
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 
14
#pragma interface "xh_notbk.h"
 
15
#endif
 
16
 
 
17
#include "wx/xrc/xmlres.h"
 
18
 
 
19
#if wxUSE_NOTEBOOK
 
20
 
 
21
class WXDLLEXPORT wxNotebook;
 
22
 
 
23
class WXDLLIMPEXP_XRC wxNotebookXmlHandler : public wxXmlResourceHandler
 
24
{
 
25
DECLARE_DYNAMIC_CLASS(wxNotebookXmlHandler)
 
26
public:
 
27
    wxNotebookXmlHandler();
 
28
    virtual wxObject *DoCreateResource();
 
29
    virtual bool CanHandle(wxXmlNode *node);
 
30
 
 
31
private:
 
32
    bool m_isInside;
 
33
    wxNotebook *m_notebook;
 
34
};
 
35
 
 
36
#endif
 
37
 
 
38
#endif // _WX_XH_NOTBK_H_