]> git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_gdctl.cpp
Fixed bug [ 657949 ] Segmentation fault in ~wxFileHistory
[wxWidgets.git] / src / xrc / xh_gdctl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: xh_gdctl.cpp
3 // Purpose: XRC resource for wxGenericDirCtrl
4 // Author: Markus Greither
5 // Created: 2002/01/20
6 // RCS-ID:
7 // Copyright: (c) 2002 Markus Greither
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifdef __GNUG__
12 #pragma implementation "xh_gdctl.h"
13 #endif
14
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
17
18 #ifdef __BORLANDC__
19 #pragma hdrstop
20 #endif
21
22 #include "wx/defs.h"
23 #if wxUSE_DIRDLG
24
25 #include "wx/textctrl.h"
26 #include "wx/xrc/xh_gdctl.h"
27 #include "wx/dirctrl.h"
28
29 wxGenericDirCtrlXmlHandler::wxGenericDirCtrlXmlHandler()
30 : wxXmlResourceHandler()
31 {
32 ADD_STYLE(wxDIRCTRL_DIR_ONLY);
33 ADD_STYLE(wxDIRCTRL_3D_INTERNAL);
34 ADD_STYLE(wxDIRCTRL_SELECT_FIRST);
35 ADD_STYLE(wxDIRCTRL_SHOW_FILTERS);
36 AddWindowStyles();
37 }
38
39 wxObject *wxGenericDirCtrlXmlHandler::DoCreateResource()
40 {
41 XRC_MAKE_INSTANCE(ctrl, wxGenericDirCtrl)
42
43 ctrl->Create(m_parentAsWindow,
44 GetID(),
45 GetText(wxT("defaultfolder")),
46 GetPosition(), GetSize(),
47 GetStyle(),
48 GetText(wxT("filter")),
49 (int)GetLong(wxT("defaultfilter")),
50 GetName());
51
52 SetupWindow(ctrl);
53
54 return ctrl;
55 }
56
57 bool wxGenericDirCtrlXmlHandler::CanHandle(wxXmlNode *node)
58 {
59 return IsOfClass(node, wxT("wxGenericDirCtrl"));
60 }
61
62 #endif