XRC headers cleaning.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39980 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-07-04 18:08:09 +00:00
parent 2bbabc0647
commit e8a793f06c
48 changed files with 75 additions and 63 deletions

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_bmp.h // Name: wx/xrc/xh_bmp.h
// Purpose: XML resource handler for wxBitmap and wxIcon // Purpose: XML resource handler for wxBitmap and wxIcon
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/09/00 // Created: 2000/09/00

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_bmpbt.h // Name: wx/xrc/xh_bmpbt.h
// Purpose: XML resource handler for bitmap buttons // Purpose: XML resource handler for bitmap buttons
// Author: Brian Gavin // Author: Brian Gavin
// Created: 2000/03/05 // Created: 2000/03/05
@@ -11,10 +11,11 @@
#ifndef _WX_XH_BMPBT_H_ #ifndef _WX_XH_BMPBT_H_
#define _WX_XH_BMPBT_H_ #define _WX_XH_BMPBT_H_
#include "wx/xrc/xmlres.h" #include "wx/defs.h"
#if wxUSE_XRC #if wxUSE_XRC
#include "wx/xrc/xmlres.h"
class WXDLLIMPEXP_XRC wxBitmapButtonXmlHandler : public wxXmlResourceHandler class WXDLLIMPEXP_XRC wxBitmapButtonXmlHandler : public wxXmlResourceHandler
{ {

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_bttn.h // Name: wx/xrc/xh_bttn.h
// Purpose: XML resource handler for buttons // Purpose: XML resource handler for buttons
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/03/05 // Created: 2000/03/05

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_cald.h // Name: wx/xrc/xh_cald.h
// Purpose: XML resource handler for wxCalendarCtrl // Purpose: XML resource handler for wxCalendarCtrl
// Author: Brian Gavin // Author: Brian Gavin
// Created: 2000/09/09 // Created: 2000/09/09
@@ -11,6 +11,10 @@
#ifndef _WX_XH_CALD_H_ #ifndef _WX_XH_CALD_H_
#define _WX_XH_CALD_H_ #define _WX_XH_CALD_H_
#include "wx/defs.h"
#if wxUSE_XRC && wxUSE_CALENDARCTRL
#include "wx/xrc/xmlres.h" #include "wx/xrc/xmlres.h"
class WXDLLIMPEXP_XRC wxCalendarCtrlXmlHandler : public wxXmlResourceHandler class WXDLLIMPEXP_XRC wxCalendarCtrlXmlHandler : public wxXmlResourceHandler
@@ -22,5 +26,6 @@ public:
virtual bool CanHandle(wxXmlNode *node); virtual bool CanHandle(wxXmlNode *node);
}; };
#endif // wxUSE_XRC && wxUSE_CALENDARCTRL
#endif // _WX_XH_CALD_H_ #endif // _WX_XH_CALD_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_chckb.h // Name: wx/xrc/xh_chckb.h
// Purpose: XML resource handler for wxCheckBox // Purpose: XML resource handler for wxCheckBox
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21
@@ -11,10 +11,11 @@
#ifndef _WX_XH_CHCKB_H_ #ifndef _WX_XH_CHCKB_H_
#define _WX_XH_CHCKB_H_ #define _WX_XH_CHCKB_H_
#include "wx/xrc/xmlres.h"
#include "wx/defs.h" #include "wx/defs.h"
#if wxUSE_CHECKBOX #if wxUSE_XRC && wxUSE_CHECKBOX
#include "wx/xrc/xmlres.h"
class WXDLLIMPEXP_XRC wxCheckBoxXmlHandler : public wxXmlResourceHandler class WXDLLIMPEXP_XRC wxCheckBoxXmlHandler : public wxXmlResourceHandler
{ {
@@ -25,8 +26,7 @@ public:
virtual bool CanHandle(wxXmlNode *node); virtual bool CanHandle(wxXmlNode *node);
}; };
#endif #endif // wxUSE_XRC && wxUSE_CHECKBOX
#endif // _WX_XH_CHECKBOX_H_ #endif // _WX_XH_CHECKBOX_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_chckl.h // Name: wx/xrc/xh_chckl.h
// Purpose: XML resource handler for wxCheckListBox // Purpose: XML resource handler for wxCheckListBox
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21
@@ -11,9 +11,11 @@
#ifndef _WX_XH_CHCKL_H_ #ifndef _WX_XH_CHCKL_H_
#define _WX_XH_CHCKL_H_ #define _WX_XH_CHCKL_H_
#include "wx/xrc/xmlres.h" #include "wx/defs.h"
#if wxUSE_CHECKLISTBOX #if wxUSE_XRC && wxUSE_CHECKLISTBOX
#include "wx/xrc/xmlres.h"
class WXDLLIMPEXP_XRC wxCheckListBoxXmlHandler : public wxXmlResourceHandler class WXDLLIMPEXP_XRC wxCheckListBoxXmlHandler : public wxXmlResourceHandler
{ {
@@ -27,6 +29,6 @@ private:
wxArrayString strList; wxArrayString strList;
}; };
#endif #endif // wxUSE_XRC && wxUSE_CHECKLISTBOX
#endif // _WX_XH_CHECKLIST_H_ #endif // _WX_XH_CHECKLIST_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_choic.h // Name: wx/xrc/xh_choic.h
// Purpose: XML resource handler for wxChoice // Purpose: XML resource handler for wxChoice
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21
@@ -11,6 +11,10 @@
#ifndef _WX_XH_CHOIC_H_ #ifndef _WX_XH_CHOIC_H_
#define _WX_XH_CHOIC_H_ #define _WX_XH_CHOIC_H_
#include "wx/defs.h"
#if wxUSE_XRC && wxUSE_CHOICE
#include "wx/xrc/xmlres.h" #include "wx/xrc/xmlres.h"
class WXDLLIMPEXP_XRC wxChoiceXmlHandler : public wxXmlResourceHandler class WXDLLIMPEXP_XRC wxChoiceXmlHandler : public wxXmlResourceHandler
@@ -25,5 +29,6 @@ private:
wxArrayString strList; wxArrayString strList;
}; };
#endif // wxUSE_XRC && wxUSE_CHOICE
#endif // _WX_XH_CHOIC_H_ #endif // _WX_XH_CHOIC_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_choicbk.h // Name: wx/xrc/xh_choicbk.h
// Purpose: XML resource handler for wxChoicebook // Purpose: XML resource handler for wxChoicebook
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Copyright: (c) 2000 Vaclav Slavik // Copyright: (c) 2000 Vaclav Slavik
@@ -9,9 +9,11 @@
#ifndef _WX_XH_CHOICEBK_H_ #ifndef _WX_XH_CHOICEBK_H_
#define _WX_XH_CHOICEBK_H_ #define _WX_XH_CHOICEBK_H_
#include "wx/xrc/xmlres.h" #include "wx/defs.h"
#if wxUSE_CHOICEBOOK #if wxUSE_XRC && wxUSE_CHOICEBOOK
#include "wx/xrc/xmlres.h"
class WXDLLEXPORT wxChoicebook; class WXDLLEXPORT wxChoicebook;
@@ -28,6 +30,6 @@ private:
wxChoicebook *m_choicebook; wxChoicebook *m_choicebook;
}; };
#endif #endif // wxUSE_XRC && wxUSE_CHOICEBOOK
#endif // _WX_XH_CHOICEBK_H_ #endif // _WX_XH_CHOICEBK_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_clrpicker.cpp // Name: wx/xrc/xh_clrpicker.cpp
// Purpose: XML resource handler for wxColourPickerCtrl // Purpose: XML resource handler for wxColourPickerCtrl
// Author: Francesco Montorsi // Author: Francesco Montorsi
// Created: 2006-04-17 // Created: 2006-04-17

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_combo.h // Name: wx/xrc/xh_combo.h
// Purpose: XML resource handler for wxComboBox // Purpose: XML resource handler for wxComboBox
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_datectrl.h // Name: wx/xrc/xh_datectrl.h
// Purpose: XML resource handler for wxDatePickerCtrl // Purpose: XML resource handler for wxDatePickerCtrl
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2005-02-07 // Created: 2005-02-07

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_clrpicker.cpp // Name: wx/xrc/xh_clrpicker.cpp
// Purpose: XML resource handler for wxColourPickerCtrl // Purpose: XML resource handler for wxColourPickerCtrl
// Author: Francesco Montorsi // Author: Francesco Montorsi
// Created: 2006-04-17 // Created: 2006-04-17

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_dlg.h // Name: wx/xrc/xh_dlg.h
// Purpose: XML resource handler for dialogs // Purpose: XML resource handler for dialogs
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/03/05 // Created: 2000/03/05

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_clrpicker.cpp // Name: wx/xrc/xh_clrpicker.cpp
// Purpose: XML resource handler for wxColourPickerCtrl // Purpose: XML resource handler for wxColourPickerCtrl
// Author: Francesco Montorsi // Author: Francesco Montorsi
// Created: 2006-04-17 // Created: 2006-04-17

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_clrpicker.cpp // Name: wx/xrc/xh_clrpicker.cpp
// Purpose: XML resource handler for wxColourPickerCtrl // Purpose: XML resource handler for wxColourPickerCtrl
// Author: Francesco Montorsi // Author: Francesco Montorsi
// Created: 2006-04-17 // Created: 2006-04-17

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_frame.h // Name: wx/xrc/xh_frame.h
// Purpose: XML resource handler for dialogs // Purpose: XML resource handler for dialogs
// Author: Vaclav Slavik & Aleks. // Author: Vaclav Slavik & Aleks.
// Created: 2000/03/05 // Created: 2000/03/05

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_gauge.h // Name: wx/xrc/xh_gauge.h
// Purpose: XML resource handler for wxGauge // Purpose: XML resource handler for wxGauge
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_gdctl.h // Name: wx/xrc/xh_gdctl.h
// Purpose: XML resource handler for wxGenericDirCtrl // Purpose: XML resource handler for wxGenericDirCtrl
// Author: Markus Greither // Author: Markus Greither
// Created: 2002/01/20 // Created: 2002/01/20

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: wx/xh_grid.h // Name: wx/xrc/xh_grid.h
// Purpose: XML resource handler for the grid control // Purpose: XML resource handler for the grid control
// Author: Agron Selimaj // Author: Agron Selimaj
// Created: 2005/08/11 // Created: 2005/08/11

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_html.h // Name: wx/xrc/xh_html.h
// Purpose: XML resource handler for wxHtmlWindow // Purpose: XML resource handler for wxHtmlWindow
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_listb.h // Name: wx/xrc/xh_listb.h
// Purpose: XML resource handler for wxListbox // Purpose: XML resource handler for wxListbox
// Author: Bob Mitchell & Vaclav Slavik // Author: Bob Mitchell & Vaclav Slavik
// Created: 2000/07/29 // Created: 2000/07/29

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_listbk.h // Name: wx/xrc/xh_listbk.h
// Purpose: XML resource handler for wxListbook // Purpose: XML resource handler for wxListbook
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Copyright: (c) 2000 Vaclav Slavik // Copyright: (c) 2000 Vaclav Slavik

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_listc.h // Name: wx/xrc/xh_listc.h
// Purpose: XML resource handler for wxCalendarCtrl // Purpose: XML resource handler for wxCalendarCtrl
// Author: Brian Gavin // Author: Brian Gavin
// Created: 2000/09/09 // Created: 2000/09/09

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_mdi.h // Name: wx/xrc/xh_mdi.h
// Purpose: XML resource handler for dialogs // Purpose: XML resource handler for dialogs
// Author: David M. Falkinder & Vaclav Slavik // Author: David M. Falkinder & Vaclav Slavik
// Created: 14/02/2005 // Created: 14/02/2005

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_menu.h // Name: wx/xrc/xh_menu.h
// Purpose: XML resource handler for menus/menubars // Purpose: XML resource handler for menus/menubars
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/03/05 // Created: 2000/03/05

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_notbk.h // Name: wx/xrc/xh_notbk.h
// Purpose: XML resource handler for wxNotebook // Purpose: XML resource handler for wxNotebook
// Author: Vaclav Slavik // Author: Vaclav Slavik
// RCS-ID: $Id$ // RCS-ID: $Id$

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_panel.h // Name: wx/xrc/xh_panel.h
// Purpose: XML resource handler for panels // Purpose: XML resource handler for panels
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/03/05 // Created: 2000/03/05

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_radbt.h // Name: wx/xrc/xh_radbt.h
// Purpose: XML resource handler for radio buttons // Purpose: XML resource handler for radio buttons
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_radbx.h // Name: wx/xrc/xh_radbx.h
// Purpose: XML resource handler for radio box // Purpose: XML resource handler for radio box
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21
@@ -31,7 +31,7 @@ private:
// the items tooltips // the items tooltips
wxArrayString tooltips; wxArrayString tooltips;
// the item help text // the item help text
wxArrayString helptexts; wxArrayString helptexts;
wxArrayInt helptextSpecified; wxArrayInt helptextSpecified;
}; };

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_scrol.h // Name: wx/xrc/xh_scrol.h
// Purpose: XML resource handler for wxScrollBar // Purpose: XML resource handler for wxScrollBar
// Author: Brian Gavin // Author: Brian Gavin
// Created: 2000/09/09 // Created: 2000/09/09

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_scwin.h // Name: wx/xrc/xh_scwin.h
// Purpose: XML resource handler for wxScrolledWindow // Purpose: XML resource handler for wxScrolledWindow
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2002/10/18 // Created: 2002/10/18

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_sizer.h // Name: wx/xrc/xh_sizer.h
// Purpose: XML resource handler for wxBoxSizer // Purpose: XML resource handler for wxBoxSizer
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/04/24 // Created: 2000/04/24

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_slidr.h // Name: wx/xrc/xh_slidr.h
// Purpose: XML resource handler for wxSlider // Purpose: XML resource handler for wxSlider
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_spin.h // Name: wx/xrc/xh_spin.h
// Purpose: XML resource handler for wxSpinButton // Purpose: XML resource handler for wxSpinButton
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_split.h // Name: wx/xrc/xh_split.h
// Purpose: XRC resource for wxSplitterWindow // Purpose: XRC resource for wxSplitterWindow
// Author: panga@freemail.hu, Vaclav Slavik // Author: panga@freemail.hu, Vaclav Slavik
// Created: 2003/01/26 // Created: 2003/01/26

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_statbar.h // Name: wx/xrc/xh_statbar.h
// Purpose: XML resource handler for wxStatusBar // Purpose: XML resource handler for wxStatusBar
// Author: Brian Ravnsgaard Riis // Author: Brian Ravnsgaard Riis
// Created: 2004/01/21 // Created: 2004/01/21
@@ -23,4 +23,3 @@ DECLARE_DYNAMIC_CLASS(wxStatusBarXmlHandler)
}; };
#endif // _WX_XH_STATBAR_H_ #endif // _WX_XH_STATBAR_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_stbmp.h // Name: wx/xrc/xh_stbmp.h
// Purpose: XML resource handler for wxStaticBitmap // Purpose: XML resource handler for wxStaticBitmap
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/04/22 // Created: 2000/04/22

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_stbox.h // Name: wx/xrc/xh_stbox.h
// Purpose: XML resource handler for wxStaticBox // Purpose: XML resource handler for wxStaticBox
// Author: Brian Gavin // Author: Brian Gavin
// Created: 2000/09/00 // Created: 2000/09/00

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_stlin.h // Name: wx/xrc/xh_stlin.h
// Purpose: XML resource handler for wxStaticLine // Purpose: XML resource handler for wxStaticLine
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/09/00 // Created: 2000/09/00

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_sttxt.h // Name: wx/xrc/xh_sttxt.h
// Purpose: XML resource handler for wxStaticBitmap // Purpose: XML resource handler for wxStaticBitmap
// Author: Bob Mitchell // Author: Bob Mitchell
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_text.h // Name: wx/xrc/xh_text.h
// Purpose: XML resource handler for wxTextCtrl // Purpose: XML resource handler for wxTextCtrl
// Author: Aleksandras Gluchovas // Author: Aleksandras Gluchovas
// Created: 2000/03/21 // Created: 2000/03/21

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_tglbtn.h // Name: wx/xrc/xh_tglbtn.h
// Purpose: XML resource handler for wxToggleButton // Purpose: XML resource handler for wxToggleButton
// Author: Julian Smart // Author: Julian Smart
// Created: 2004-08-30 // Created: 2004-08-30
@@ -29,4 +29,3 @@ public:
#endif // _WX_XH_TGLBTN_H_ #endif // _WX_XH_TGLBTN_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_toolb.h // Name: wx/xrc/xh_toolb.h
// Purpose: XML resource handler for wxBoxSizer // Purpose: XML resource handler for wxBoxSizer
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/08/11 // Created: 2000/08/11

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_tree.h // Name: wx/xrc/xh_tree.h
// Purpose: XML resource handler for wxTreeCtrl // Purpose: XML resource handler for wxTreeCtrl
// Author: Brian Gavin // Author: Brian Gavin
// Created: 2000/09/09 // Created: 2000/09/09

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_treebk.h // Name: wx/xrc/xh_treebk.h
// Purpose: XML resource handler for wxTreebook // Purpose: XML resource handler for wxTreebook
// Author: Evgeniy Tarassov // Author: Evgeniy Tarassov
// Created: 2005/09/28 // Created: 2005/09/28
@@ -81,4 +81,3 @@ private:
#endif // wxUSE_TREEBOOK #endif // wxUSE_TREEBOOK
#endif // _WX_XH_TREEBK_H_ #endif // _WX_XH_TREEBK_H_

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_unkwn.h // Name: wx/xrc/xh_unkwn.h
// Purpose: XML resource handler for unkown widget // Purpose: XML resource handler for unkown widget
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/03/05 // Created: 2000/03/05

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xh_wizrd.h // Name: wx/xrc/xh_wizrd.h
// Purpose: XML resource handler for wxWizard // Purpose: XML resource handler for wxWizard
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2003/03/02 // Created: 2003/03/02

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: xmlres.h // Name: wx/xrc/xmlres.h
// Purpose: XML resources // Purpose: XML resources
// Author: Vaclav Slavik // Author: Vaclav Slavik
// Created: 2000/03/05 // Created: 2000/03/05