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

« back to all changes in this revision

Viewing changes to eeschema/dialogs/dialog_eeschema_options_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:
22
22
#include <wx/settings.h>
23
23
#include <wx/choice.h>
24
24
#include <wx/spinctrl.h>
25
 
#include <wx/textctrl.h>
26
25
#include <wx/sizer.h>
27
26
#include <wx/statline.h>
28
27
#include <wx/checkbox.h>
30
29
#include <wx/bitmap.h>
31
30
#include <wx/image.h>
32
31
#include <wx/icon.h>
 
32
#include <wx/textctrl.h>
33
33
#include <wx/notebook.h>
34
34
#include <wx/button.h>
35
35
#include <wx/dialog.h>
84
84
                wxSpinCtrl* m_spinAutoSaveInterval;
85
85
                wxStaticText* m_staticText23;
86
86
                wxStaticText* m_staticText26;
87
 
                wxTextCtrl* m_textCtrlSeparatorRefId;
88
 
                wxStaticText* m_staticText27;
89
 
                wxTextCtrl* m_textCtrlPartFirstId;
 
87
                wxChoice* m_choiceSeparatorRefId;
90
88
                wxStaticLine* m_staticline1;
91
89
                wxCheckBox* m_checkShowGrid;
92
90
                wxCheckBox* m_checkShowHiddenPins;
125
123
        
126
124
        public:
127
125
                
128
 
                DIALOG_EESCHEMA_OPTIONS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Schematic Editor Options"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 432,560 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); 
 
126
                DIALOG_EESCHEMA_OPTIONS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Schematic Editor Options"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 508,560 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); 
129
127
                ~DIALOG_EESCHEMA_OPTIONS_BASE();
130
128
        
131
129
};