added wx{Colour|File|Dir|Font}PickerCtrl (patch 1472329 by Francesco)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39495 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-05-31 23:57:54 +00:00
parent 96aed0cd6b
commit ec376c8fd9
70 changed files with 6911 additions and 1 deletions

59
src/xrc/xh_filepicker.cpp Normal file
View File

@@ -0,0 +1,59 @@
/////////////////////////////////////////////////////////////////////////////
// Name: xh_clrpicker.cpp
// Purpose: XML resource handler for wxColourPickerCtrl
// Author: Francesco Montorsi
// Created: 2006-04-17
// RCS-ID: $Id$
// Copyright: (c) 2006 Francesco Montorsi
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#if wxUSE_XRC && wxUSE_FILEPICKERCTRL
#include "wx/xrc/xh_filepicker.h"
#include "wx/filepicker.h"
IMPLEMENT_DYNAMIC_CLASS(wxFilePickerCtrlXmlHandler, wxXmlResourceHandler)
wxFilePickerCtrlXmlHandler::wxFilePickerCtrlXmlHandler() : wxXmlResourceHandler()
{
XRC_ADD_STYLE(wxFLP_OPEN);
XRC_ADD_STYLE(wxFLP_SAVE);
XRC_ADD_STYLE(wxFLP_OVERWRITE_PROMPT);
XRC_ADD_STYLE(wxFLP_FILE_MUST_EXIST);
XRC_ADD_STYLE(wxFLP_CHANGE_DIR);
XRC_ADD_STYLE(wxFLP_DEFAULT_STYLE);
AddWindowStyles();
}
wxObject *wxFilePickerCtrlXmlHandler::DoCreateResource()
{
XRC_MAKE_INSTANCE(picker, wxFilePickerCtrl)
picker->Create(m_parentAsWindow,
GetID(),
GetParamValue(wxT("default-path")),
GetParamValue(wxT("message")),
GetParamValue(wxT("wildcard")),
GetPosition(), GetSize(),
GetStyle(_T("style"), wxFLP_DEFAULT_STYLE),
wxDefaultValidator,
GetName());
SetupWindow(picker);
return picker;
}
bool wxFilePickerCtrlXmlHandler::CanHandle(wxXmlNode *node)
{
return IsOfClass(node, wxT("wxFilePickerCtrl"));
}
#endif // wxUSE_XRC && wxUSE_FILEPICKERCTRL