2006-06-21 10:46:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Program: wxWidgets Widgets Sample
|
|
|
|
// Name: filepicker.cpp
|
|
|
|
// Purpose: Part of the widgets sample showing wx*PickerCtrl
|
|
|
|
// Author: Francesco Montorsi
|
|
|
|
// Created: 20/6/2006
|
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 2006 Francesco Montorsi
|
|
|
|
// License: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// declarations
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// for compilers that support precompilation, includes "wx/wx.h".
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_FILEPICKERCTRL
|
|
|
|
|
|
|
|
// for all others, include the necessary headers
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/app.h"
|
|
|
|
#include "wx/log.h"
|
|
|
|
#include "wx/radiobox.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/artprov.h"
|
|
|
|
#include "wx/sizer.h"
|
|
|
|
#include "wx/stattext.h"
|
|
|
|
#include "wx/checkbox.h"
|
|
|
|
#include "wx/imaglist.h"
|
|
|
|
|
|
|
|
#include "wx/filepicker.h"
|
|
|
|
#include "widgets.h"
|
|
|
|
|
|
|
|
#include "icons/filepicker.xpm"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
FilePickerMode_Open = 0,
|
|
|
|
FilePickerMode_Save
|
|
|
|
};
|
|
|
|
|
|
|
|
// control ids
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PickerPage_Reset = wxID_HIGHEST,
|
|
|
|
PickerPage_File
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// FilePickerWidgetsPage
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class FilePickerWidgetsPage : public WidgetsPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FilePickerWidgetsPage(WidgetsBookCtrl *book, wxImageList *imaglist);
|
|
|
|
virtual ~FilePickerWidgetsPage(){};
|
|
|
|
|
|
|
|
virtual wxControl *GetWidget() const { return m_filePicker; }
|
|
|
|
virtual void RecreateWidget() { RecreatePicker(); }
|
|
|
|
|
|
|
|
// lazy creation of the content
|
|
|
|
virtual void CreateContent();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// called only once at first construction
|
|
|
|
void CreatePicker();
|
|
|
|
|
|
|
|
// called to recreate an existing control
|
|
|
|
void RecreatePicker();
|
|
|
|
|
|
|
|
// restore the checkboxes state to the initial values
|
|
|
|
void Reset();
|
|
|
|
|
|
|
|
// get the initial style for the picker of the given kind
|
|
|
|
long GetPickerStyle();
|
|
|
|
|
|
|
|
// update filepicker radiobox
|
|
|
|
void UpdateFilePickerMode();
|
|
|
|
|
|
|
|
// the pickers and the relative event handlers
|
|
|
|
void OnFileChange(wxFileDirPickerEvent &ev);
|
|
|
|
void OnCheckBox(wxCommandEvent &ev);
|
|
|
|
void OnButtonReset(wxCommandEvent &ev);
|
|
|
|
|
|
|
|
|
|
|
|
// the picker
|
|
|
|
wxFilePickerCtrl *m_filePicker;
|
|
|
|
|
|
|
|
|
|
|
|
// other controls
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
wxCheckBox *m_chkFileTextCtrl,
|
|
|
|
*m_chkFileOverwritePrompt,
|
|
|
|
*m_chkFileMustExist,
|
|
|
|
*m_chkFileChangeDir;
|
|
|
|
wxRadioBox *m_radioFilePickerMode;
|
|
|
|
|
|
|
|
wxBoxSizer *m_sizer;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
DECLARE_WIDGETS_PAGE(FilePickerWidgetsPage)
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// event tables
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE(FilePickerWidgetsPage, WidgetsPage)
|
|
|
|
EVT_BUTTON(PickerPage_Reset, FilePickerWidgetsPage::OnButtonReset)
|
|
|
|
|
|
|
|
EVT_FILEPICKER_CHANGED(PickerPage_File, FilePickerWidgetsPage::OnFileChange)
|
|
|
|
|
|
|
|
EVT_CHECKBOX(wxID_ANY, FilePickerWidgetsPage::OnCheckBox)
|
|
|
|
EVT_RADIOBOX(wxID_ANY, FilePickerWidgetsPage::OnCheckBox)
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// implementation
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
#if defined(__WXGTK24__)
|
|
|
|
#define FAMILY_CTRLS NATIVE_CTRLS
|
|
|
|
#else
|
|
|
|
#define FAMILY_CTRLS GENERIC_CTRLS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
IMPLEMENT_WIDGETS_PAGE(FilePickerWidgetsPage, _T("FilePicker"),
|
|
|
|
PICKER_CTRLS | FAMILY_CTRLS);
|
|
|
|
|
|
|
|
FilePickerWidgetsPage::FilePickerWidgetsPage(WidgetsBookCtrl *book,
|
|
|
|
wxImageList *imaglist)
|
|
|
|
: WidgetsPage(book, imaglist, filepicker_xpm)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::CreateContent()
|
|
|
|
{
|
|
|
|
// left pane
|
|
|
|
wxSizer *boxleft = new wxBoxSizer(wxVERTICAL);
|
|
|
|
|
|
|
|
static const wxString mode[] = { _T("open"), _T("save") };
|
|
|
|
m_radioFilePickerMode = new wxRadioBox(this, wxID_ANY, _T("wxFilePicker mode"),
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
WXSIZEOF(mode), mode);
|
|
|
|
boxleft->Add(m_radioFilePickerMode, 0, wxALL|wxGROW, 5);
|
|
|
|
|
|
|
|
wxStaticBoxSizer *filebox = new wxStaticBoxSizer(wxVERTICAL, this, _T("&FilePicker style"));
|
|
|
|
m_chkFileTextCtrl = CreateCheckBoxAndAddToSizer(filebox, _T("With textctrl"), false);
|
|
|
|
m_chkFileOverwritePrompt = CreateCheckBoxAndAddToSizer(filebox, _T("Overwrite prompt"), false);
|
|
|
|
m_chkFileMustExist = CreateCheckBoxAndAddToSizer(filebox, _T("File must exist"), false);
|
|
|
|
m_chkFileChangeDir = CreateCheckBoxAndAddToSizer(filebox, _T("Change working dir"), false);
|
|
|
|
boxleft->Add(filebox, 0, wxALL|wxGROW, 5);
|
|
|
|
|
|
|
|
boxleft->Add(new wxButton(this, PickerPage_Reset, _T("&Reset")),
|
|
|
|
0, wxALIGN_CENTRE_HORIZONTAL | wxALL, 15);
|
|
|
|
|
|
|
|
Reset(); // set checkboxes state
|
|
|
|
|
|
|
|
// create pickers
|
|
|
|
m_filePicker = NULL;
|
|
|
|
CreatePicker();
|
|
|
|
|
|
|
|
// right pane
|
|
|
|
m_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
m_sizer->Add(1, 1, 1, wxGROW | wxALL, 5); // spacer
|
|
|
|
m_sizer->Add(m_filePicker, 0, wxALIGN_CENTER|wxALL, 5);
|
|
|
|
m_sizer->Add(1, 1, 1, wxGROW | wxALL, 5); // spacer
|
|
|
|
|
|
|
|
// global pane
|
|
|
|
wxSizer *sz = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
sz->Add(boxleft, 0, wxGROW|wxALL, 5);
|
|
|
|
sz->Add(m_sizer, 1, wxGROW|wxALL, 5);
|
|
|
|
|
2006-12-03 13:43:44 +00:00
|
|
|
SetSizer(sz);
|
2006-06-21 10:46:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::CreatePicker()
|
|
|
|
{
|
|
|
|
delete m_filePicker;
|
|
|
|
|
|
|
|
// pass an empty string as initial file
|
|
|
|
m_filePicker = new wxFilePickerCtrl(this, PickerPage_File,
|
|
|
|
wxEmptyString,
|
|
|
|
wxT("Hello!"), wxT("*"),
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
GetPickerStyle());
|
|
|
|
}
|
|
|
|
|
|
|
|
long FilePickerWidgetsPage::GetPickerStyle()
|
|
|
|
{
|
|
|
|
long style = 0;
|
|
|
|
|
|
|
|
if ( m_chkFileTextCtrl->GetValue() )
|
|
|
|
style |= wxFLP_USE_TEXTCTRL;
|
|
|
|
|
|
|
|
if ( m_chkFileOverwritePrompt->GetValue() )
|
|
|
|
style |= wxFLP_OVERWRITE_PROMPT;
|
|
|
|
|
|
|
|
if ( m_chkFileMustExist->GetValue() )
|
|
|
|
style |= wxFLP_FILE_MUST_EXIST;
|
|
|
|
|
|
|
|
if ( m_chkFileChangeDir->GetValue() )
|
|
|
|
style |= wxFLP_CHANGE_DIR;
|
|
|
|
|
|
|
|
if (m_radioFilePickerMode->GetSelection() == FilePickerMode_Open)
|
|
|
|
style |= wxFLP_OPEN;
|
|
|
|
else
|
|
|
|
style |= wxFLP_SAVE;
|
|
|
|
|
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::RecreatePicker()
|
|
|
|
{
|
|
|
|
m_sizer->Remove(1);
|
|
|
|
CreatePicker();
|
|
|
|
m_sizer->Insert(1, m_filePicker, 0, wxALIGN_CENTER||wxALL, 5);
|
|
|
|
|
|
|
|
m_sizer->Layout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::Reset()
|
|
|
|
{
|
|
|
|
m_radioFilePickerMode->SetSelection((wxFLP_DEFAULT_STYLE & wxFLP_OPEN) ?
|
|
|
|
FilePickerMode_Open : FilePickerMode_Save);
|
|
|
|
m_chkFileTextCtrl->SetValue((wxFLP_DEFAULT_STYLE & wxFLP_USE_TEXTCTRL) != 0);
|
|
|
|
m_chkFileOverwritePrompt->SetValue((wxFLP_DEFAULT_STYLE & wxFLP_OVERWRITE_PROMPT) != 0);
|
|
|
|
m_chkFileMustExist->SetValue((wxFLP_DEFAULT_STYLE & wxFLP_FILE_MUST_EXIST) != 0);
|
|
|
|
m_chkFileChangeDir->SetValue((wxFLP_DEFAULT_STYLE & wxFLP_CHANGE_DIR) != 0);
|
|
|
|
|
|
|
|
UpdateFilePickerMode();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::UpdateFilePickerMode()
|
|
|
|
{
|
|
|
|
switch (m_radioFilePickerMode->GetSelection())
|
|
|
|
{
|
|
|
|
case FilePickerMode_Open:
|
|
|
|
m_chkFileOverwritePrompt->SetValue(false);
|
|
|
|
m_chkFileOverwritePrompt->Disable();
|
|
|
|
m_chkFileMustExist->Enable();
|
|
|
|
break;
|
|
|
|
case FilePickerMode_Save:
|
|
|
|
m_chkFileMustExist->SetValue(false);
|
|
|
|
m_chkFileMustExist->Disable();
|
|
|
|
m_chkFileOverwritePrompt->Enable();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// event handlers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::OnButtonReset(wxCommandEvent& WXUNUSED(event))
|
|
|
|
{
|
|
|
|
Reset();
|
|
|
|
|
|
|
|
RecreatePicker();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::OnFileChange(wxFileDirPickerEvent& event)
|
|
|
|
{
|
|
|
|
wxLogMessage(wxT("The file changed to '%s' ! The current working directory is '%s'"),
|
|
|
|
event.GetPath().c_str(), wxGetCwd().c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilePickerWidgetsPage::OnCheckBox(wxCommandEvent &event)
|
|
|
|
{
|
|
|
|
if (event.GetEventObject() == m_chkFileTextCtrl ||
|
|
|
|
event.GetEventObject() == m_chkFileOverwritePrompt ||
|
|
|
|
event.GetEventObject() == m_chkFileMustExist ||
|
|
|
|
event.GetEventObject() == m_chkFileChangeDir)
|
|
|
|
RecreatePicker();
|
|
|
|
|
|
|
|
if (event.GetEventObject() == m_radioFilePickerMode)
|
|
|
|
{
|
|
|
|
UpdateFilePickerMode();
|
|
|
|
RecreatePicker();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // wxUSE_FILEPICKERCTRL
|