~cern-kicad/kicad/kicad-pns-tom

« back to all changes in this revision

Viewing changes to common/dialogs/dialog_page_settings_base.h

  • Committer: Maciej Suminski
  • Date: 2013-08-02 13:57:24 UTC
  • mfrom: (4024.1.238 kicad)
  • mto: This revision was merged to the branch mainline in revision 4221.
  • Revision ID: maciej.suminski@cern.ch-20130802135724-gix6orezshkukodv
Upstream merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include <wx/datectrl.h>
34
34
#include <wx/dateevt.h>
35
35
#include <wx/checkbox.h>
 
36
#include <wx/filepicker.h>
36
37
#include <wx/dialog.h>
37
38
 
38
39
///////////////////////////////////////////////////////////////////////////
111
112
                wxStaticText* m_staticTextComment4;
112
113
                wxTextCtrl* m_TextComment4;
113
114
                wxCheckBox* m_Comment4Export;
 
115
                wxStaticText* m_staticTextfilename;
 
116
                wxFilePickerCtrl* m_filePicker;
114
117
                wxStdDialogButtonSizer* m_sdbSizer1;
115
118
                wxButton* m_sdbSizer1OK;
116
119
                wxButton* m_sdbSizer1Cancel;
117
120
                
118
121
                // Virtual event handlers, overide them in your derived class
119
 
                virtual void OnCloseWindow( wxCloseEvent& event ) { event.Skip(); }
120
122
                virtual void OnPaperSizeChoice( wxCommandEvent& event ) { event.Skip(); }
121
123
                virtual void OnPageOrientationChoice( wxCommandEvent& event ) { event.Skip(); }
122
124
                virtual void OnUserPageSizeYTextUpdated( wxCommandEvent& event ) { event.Skip(); }
131
133
                virtual void OnComment2TextUpdated( wxCommandEvent& event ) { event.Skip(); }
132
134
                virtual void OnComment3TextUpdated( wxCommandEvent& event ) { event.Skip(); }
133
135
                virtual void OnComment4TextUpdated( wxCommandEvent& event ) { event.Skip(); }
 
136
                virtual void OnWksFileSelection( wxFileDirPickerEvent& event ) { event.Skip(); }
134
137
                virtual void OnCancelClick( wxCommandEvent& event ) { event.Skip(); }
135
138
                virtual void OnOkClick( wxCommandEvent& event ) { event.Skip(); }
136
139
                
137
140
        
138
141
        public:
139
142
                
140
 
                DIALOG_PAGES_SETTINGS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Page Settings"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 748,464 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); 
 
143
                DIALOG_PAGES_SETTINGS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Page Settings"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 748,470 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); 
141
144
                ~DIALOG_PAGES_SETTINGS_BASE();
142
145
        
143
146
};