~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

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

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
///////////////////////////////////////////////////////////////////////////////
 
2
// Name:        wx/xrc/xh_bannerwindow.h
 
3
// Purpose:     Declaration of wxBannerWindow XRC handler.
 
4
// Author:      Vadim Zeitlin
 
5
// Created:     2011-08-16
 
6
// RCS-ID:      $Id: xh_bannerwindow.h 68840 2011-08-22 12:18:56Z VZ $
 
7
// Copyright:   (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
 
8
// Licence:     wxWindows licence
 
9
///////////////////////////////////////////////////////////////////////////////
 
10
 
 
11
#ifndef _WX_XH_BANNERWINDOW_H_
 
12
#define _WX_XH_BANNERWINDOW_H_
 
13
 
 
14
#include "wx/xrc/xmlres.h"
 
15
 
 
16
#if wxUSE_XRC && wxUSE_BANNERWINDOW
 
17
 
 
18
class WXDLLIMPEXP_XRC wxBannerWindowXmlHandler : public wxXmlResourceHandler
 
19
{
 
20
public:
 
21
    wxBannerWindowXmlHandler();
 
22
 
 
23
    virtual wxObject *DoCreateResource();
 
24
    virtual bool CanHandle(wxXmlNode *node);
 
25
 
 
26
    wxDECLARE_DYNAMIC_CLASS(wxBannerWindowXmlHandler);
 
27
};
 
28
 
 
29
#endif // wxUSE_XRC && wxUSE_BANNERWINDOW
 
30
 
 
31
#endif // _WX_XH_BANNERWINDOW_H_