Added wxToggleButton handler
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28971 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b5ab476a0f
commit
85f138db83
@ -33,6 +33,7 @@ XRCDLL_OBJECTS = \
|
||||
$(OBJS)\xrcdll_xh_bttn.obj \
|
||||
$(OBJS)\xrcdll_xh_cald.obj \
|
||||
$(OBJS)\xrcdll_xh_chckb.obj \
|
||||
$(OBJS)\xrcdll_xh_tglbtn.obj \
|
||||
$(OBJS)\xrcdll_xh_chckl.obj \
|
||||
$(OBJS)\xrcdll_xh_choic.obj \
|
||||
$(OBJS)\xrcdll_xh_combo.obj \
|
||||
@ -82,6 +83,7 @@ XRCLIB_OBJECTS = \
|
||||
$(OBJS)\xrclib_xh_bttn.obj \
|
||||
$(OBJS)\xrclib_xh_cald.obj \
|
||||
$(OBJS)\xrclib_xh_chckb.obj \
|
||||
$(OBJS)\xrclib_xh_tglbtn.obj \
|
||||
$(OBJS)\xrclib_xh_chckl.obj \
|
||||
$(OBJS)\xrclib_xh_choic.obj \
|
||||
$(OBJS)\xrclib_xh_combo.obj \
|
||||
@ -373,6 +375,9 @@ $(OBJS)\xrcdll_xh_cald.obj: ../../src/xrc\xh_cald.cpp
|
||||
$(OBJS)\xrcdll_xh_chckb.obj: ../../src/xrc\xh_chckb.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) $**
|
||||
|
||||
$(OBJS)\xrcdll_xh_tglbtn.obj: ../../src/xrc\xh_tglbtn.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) $**
|
||||
|
||||
$(OBJS)\xrcdll_xh_chckl.obj: ../../src/xrc\xh_chckl.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) $**
|
||||
|
||||
@ -490,6 +495,9 @@ $(OBJS)\xrclib_xh_cald.obj: ../../src/xrc\xh_cald.cpp
|
||||
$(OBJS)\xrclib_xh_chckb.obj: ../../src/xrc\xh_chckb.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(XRCLIB_CXXFLAGS) $**
|
||||
|
||||
$(OBJS)\xrclib_xh_tglbtn.obj: ../../src/xrc\xh_tglbtn.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(XRCLIB_CXXFLAGS) $**
|
||||
|
||||
$(OBJS)\xrclib_xh_chckl.obj: ../../src/xrc\xh_chckl.cpp
|
||||
$(CXX) /c /nologo /TP /Fo$@ $(XRCLIB_CXXFLAGS) $**
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
xh_bttn.cpp
|
||||
xh_cald.cpp
|
||||
xh_chckb.cpp
|
||||
xh_tglbtn.cpp
|
||||
xh_chckl.cpp
|
||||
xh_choic.cpp
|
||||
xh_combo.cpp
|
||||
@ -57,6 +58,7 @@
|
||||
wx/xrc/xh_bttn.h
|
||||
wx/xrc/xh_cald.h
|
||||
wx/xrc/xh_chckb.h
|
||||
wx/xrc/xh_tglbtn.h
|
||||
wx/xrc/xh_chckl.h
|
||||
wx/xrc/xh_choic.h
|
||||
wx/xrc/xh_combo.h
|
||||
|
@ -478,6 +478,10 @@ SOURCE=../../src/xrc\xh_chckb.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=../../src/xrc\xh_tglbtn.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=../../src/xrc\xh_chckl.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include "wx/xrc/xh_dlg.h"
|
||||
#include "wx/xrc/xh_bttn.h"
|
||||
#include "wx/xrc/xh_chckb.h"
|
||||
#include "wx/xrc/xh_tglbtn.h"
|
||||
#include "wx/xrc/xh_gauge.h"
|
||||
#include "wx/xrc/xh_html.h"
|
||||
#include "wx/xrc/xh_spin.h"
|
||||
|
@ -57,6 +57,9 @@ void wxXmlResource::InitAllHandlers()
|
||||
#if wxUSE_CHECKBOX
|
||||
AddHandler(new wxCheckBoxXmlHandler);
|
||||
#endif
|
||||
#if wxUSE_TOGGLEBTN
|
||||
AddHandler(new wxToggleButtonXmlHandler);
|
||||
#endif
|
||||
#if wxUSE_HTML
|
||||
AddHandler(new wxHtmlWindowXmlHandler);
|
||||
#endif
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include "wx/xrc/xh_dlg.h"
|
||||
#include "wx/xrc/xh_bttn.h"
|
||||
#include "wx/xrc/xh_chckb.h"
|
||||
#include "wx/xrc/xh_tglbtn.h"
|
||||
#include "wx/xrc/xh_gauge.h"
|
||||
#include "wx/xrc/xh_html.h"
|
||||
#include "wx/xrc/xh_spin.h"
|
||||
|
@ -57,6 +57,9 @@ void wxXmlResource::InitAllHandlers()
|
||||
#if wxUSE_CHECKBOX
|
||||
AddHandler(new wxCheckBoxXmlHandler);
|
||||
#endif
|
||||
#if wxUSE_TOGGLEBTN
|
||||
AddHandler(new wxToggleButtonXmlHandler);
|
||||
#endif
|
||||
#if wxUSE_HTML
|
||||
AddHandler(new wxHtmlWindowXmlHandler);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user