Browse Source
Option dialog mnemonic and padding fixes
Option dialog mnemonic and padding fixes
* Fix conflicting mnemonics in Eeschema options dialog. * Add mnemonics to Pcbnew, Footprint editor, and Component editor option dialogs. * Fix padding in all option dialogs. * Remove obsolete DIALOG_LIBEDIT_DIMENSIONS.pull/6/head
committed by
Wayne Stambaugh
27 changed files with 170 additions and 3097 deletions
-
2eeschema/CMakeLists.txt
-
4eeschema/dialogs/dialog_eeschema_options.h
-
48eeschema/dialogs/dialog_eeschema_options_base.cpp
-
46eeschema/dialogs/dialog_eeschema_options_base.fbp
-
2eeschema/dialogs/dialog_eeschema_options_base.h
-
53eeschema/dialogs/dialog_libedit_dimensions.cpp
-
46eeschema/dialogs/dialog_libedit_dimensions.h
-
178eeschema/dialogs/dialog_libedit_dimensions_base.cpp
-
2551eeschema/dialogs/dialog_libedit_dimensions_base.fbp
-
90eeschema/dialogs/dialog_libedit_dimensions_base.h
-
20eeschema/dialogs/dialog_libedit_options_base.cpp
-
22eeschema/dialogs/dialog_libedit_options_base.fbp
-
2eeschema/dialogs/dialog_libedit_options_base.h
-
9eeschema/libeditframe.cpp
-
1eeschema/libeditframe.h
-
20pcbnew/dialogs/dialog_block_options_base.cpp
-
18pcbnew/dialogs/dialog_block_options_base.fbp
-
2pcbnew/dialogs/dialog_block_options_base.h
-
8pcbnew/dialogs/dialog_cleaning_options_base.cpp
-
12pcbnew/dialogs/dialog_cleaning_options_base.fbp
-
4pcbnew/dialogs/dialog_cleaning_options_base.h
-
4pcbnew/dialogs/dialog_general_options.cpp
-
49pcbnew/dialogs/dialog_general_options_BoardEditor_base.cpp
-
48pcbnew/dialogs/dialog_general_options_BoardEditor_base.fbp
-
2pcbnew/dialogs/dialog_general_options_BoardEditor_base.h
-
12pcbnew/dialogs/dialog_modedit_options_base.cpp
-
14pcbnew/dialogs/dialog_modedit_options_base.fbp
@ -1,53 +0,0 @@ |
|||
/*
|
|||
* This program source code file is part of KiCad, a free EDA CAD application. |
|||
* |
|||
* Copyright (C) 2010 Jean-Pierre Charras, jp.charras at wanadoo.fr |
|||
* Copyright (C) 2014 KiCad Developers, see CHANGELOG.TXT for contributors. |
|||
* |
|||
* This program is free software; you can redistribute it and/or |
|||
* modify it under the terms of the GNU General Public License |
|||
* as published by the Free Software Foundation; either version 2 |
|||
* of the License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program; if not, you may find one here: |
|||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|||
* or you may search the http://www.gnu.org website for the version 2 license,
|
|||
* or you may write to the Free Software Foundation, Inc., |
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
|||
*/ |
|||
|
|||
/*
|
|||
* dialog_libedit_dimensions.cpp |
|||
* Handles the dialog so set current texts and pins sizes in LibEdit |
|||
*/ |
|||
#include <fctsys.h>
|
|||
|
|||
#include <general.h>
|
|||
#include <libeditframe.h>
|
|||
|
|||
#include <dialog_libedit_dimensions.h>
|
|||
|
|||
|
|||
DIALOG_LIBEDIT_DIMENSIONS::DIALOG_LIBEDIT_DIMENSIONS( LIB_EDIT_FRAME* parent ) |
|||
: DIALOG_LIBEDIT_DIMENSIONS_BASE( parent ) |
|||
{ |
|||
GetSizer()->SetSizeHints( this ); |
|||
Centre( wxBOTH ); |
|||
} |
|||
|
|||
|
|||
DIALOG_LIBEDIT_DIMENSIONS::~DIALOG_LIBEDIT_DIMENSIONS() |
|||
{ |
|||
} |
|||
|
|||
|
|||
void DIALOG_LIBEDIT_DIMENSIONS::initDialog() |
|||
{ |
|||
SetFocus(); |
|||
} |
|||
@ -1,46 +0,0 @@ |
|||
/* |
|||
* This program source code file is part of KiCad, a free EDA CAD application. |
|||
* |
|||
* Copyright (C) 2010 Wayne Stambaugh <stambaughw@verizon.net> |
|||
* Copyright (C) 2014 KiCad Developers, see CHANGELOG.TXT for contributors. |
|||
* |
|||
* This program is free software; you can redistribute it and/or |
|||
* modify it under the terms of the GNU General Public License |
|||
* as published by the Free Software Foundation; either version 2 |
|||
* of the License, or (at your option) any later version. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program; if not, you may find one here: |
|||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html |
|||
* or you may search the http://www.gnu.org website for the version 2 license, |
|||
* or you may write to the Free Software Foundation, Inc., |
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA |
|||
*/ |
|||
|
|||
#ifndef _DIALOG_LIBEDIT_DIMENSIONS_H_ |
|||
#define _DIALOG_LIBEDIT_DIMENSIONS_H_ |
|||
|
|||
|
|||
#include <dialog_libedit_dimensions_base.h> |
|||
|
|||
|
|||
class LIB_EDIT_FRAME; |
|||
|
|||
|
|||
class DIALOG_LIBEDIT_DIMENSIONS : public DIALOG_LIBEDIT_DIMENSIONS_BASE |
|||
{ |
|||
public: |
|||
DIALOG_LIBEDIT_DIMENSIONS( LIB_EDIT_FRAME* parent ); |
|||
~DIALOG_LIBEDIT_DIMENSIONS(); |
|||
|
|||
private: |
|||
void initDialog( ); |
|||
}; |
|||
|
|||
|
|||
#endif // _DIALOG_LIBEDIT_DIMENSIONS_H_ |
|||
@ -1,178 +0,0 @@ |
|||
///////////////////////////////////////////////////////////////////////////
|
|||
// C++ code generated with wxFormBuilder (version Mar 9 2015)
|
|||
// http://www.wxformbuilder.org/
|
|||
//
|
|||
// PLEASE DO "NOT" EDIT THIS FILE!
|
|||
///////////////////////////////////////////////////////////////////////////
|
|||
|
|||
#include "dialog_libedit_dimensions_base.h"
|
|||
|
|||
///////////////////////////////////////////////////////////////////////////
|
|||
|
|||
BEGIN_EVENT_TABLE( DIALOG_LIBEDIT_DIMENSIONS_BASE, wxDialog ) |
|||
EVT_BUTTON( wxID_ANY, DIALOG_LIBEDIT_DIMENSIONS_BASE::_wxFB_OnSaveSetupClick ) |
|||
EVT_BUTTON( wxID_CANCEL, DIALOG_LIBEDIT_DIMENSIONS_BASE::_wxFB_OnCancelClick ) |
|||
EVT_BUTTON( wxID_OK, DIALOG_LIBEDIT_DIMENSIONS_BASE::_wxFB_OnOkClick ) |
|||
END_EVENT_TABLE() |
|||
|
|||
DIALOG_LIBEDIT_DIMENSIONS_BASE::DIALOG_LIBEDIT_DIMENSIONS_BASE( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style ) |
|||
{ |
|||
this->SetSizeHints( wxDefaultSize, wxDefaultSize ); |
|||
|
|||
wxBoxSizer* mainSizer; |
|||
mainSizer = new wxBoxSizer( wxVERTICAL ); |
|||
|
|||
wxFlexGridSizer* fgSizer1; |
|||
fgSizer1 = new wxFlexGridSizer( 7, 3, 0, 0 ); |
|||
fgSizer1->AddGrowableCol( 0 ); |
|||
fgSizer1->AddGrowableCol( 1 ); |
|||
fgSizer1->AddGrowableCol( 2 ); |
|||
fgSizer1->SetFlexibleDirection( wxHORIZONTAL ); |
|||
fgSizer1->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); |
|||
|
|||
m_staticText3 = new wxStaticText( this, wxID_ANY, _("&Grid size:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText3->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText3, 1, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
wxString m_choiceGridSizeChoices[] = { _("50"), _("25"), _("10"), _("5"), _("2"), _("1") }; |
|||
int m_choiceGridSizeNChoices = sizeof( m_choiceGridSizeChoices ) / sizeof( wxString ); |
|||
m_choiceGridSize = new wxChoice( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceGridSizeNChoices, m_choiceGridSizeChoices, 0 ); |
|||
m_choiceGridSize->SetSelection( 0 ); |
|||
fgSizer1->Add( m_choiceGridSize, 0, wxALL|wxEXPAND, 3 ); |
|||
|
|||
m_staticGridUnits = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticGridUnits->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticGridUnits, 0, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
m_staticText5 = new wxStaticText( this, wxID_ANY, _("Current graphic &line width:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText5->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText5, 1, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
m_CurrentGraphicLineThicknessCtrl = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_CurrentGraphicLineThicknessCtrl->SetMaxLength( 0 ); |
|||
fgSizer1->Add( m_CurrentGraphicLineThicknessCtrl, 0, wxALL|wxEXPAND, 5 ); |
|||
|
|||
m_staticLineWidthUnits = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticLineWidthUnits->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticLineWidthUnits, 0, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
m_staticText7 = new wxStaticText( this, wxID_ANY, _("Current graphic text &size:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText7->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText7, 1, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
m_CurrentGraphicTextSizeCtrl = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_CurrentGraphicTextSizeCtrl->SetMaxLength( 0 ); |
|||
fgSizer1->Add( m_CurrentGraphicTextSizeCtrl, 0, wxALL|wxEXPAND, 5 ); |
|||
|
|||
m_staticTextSizeUnits = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticTextSizeUnits->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticTextSizeUnits, 0, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
m_staticText9 = new wxStaticText( this, wxID_ANY, _("Repeat draw item &horizontal displacement:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText9->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText9, 1, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
wxString m_choiceRepeatHorizontalChoices[] = { _("50"), _("25") }; |
|||
int m_choiceRepeatHorizontalNChoices = sizeof( m_choiceRepeatHorizontalChoices ) / sizeof( wxString ); |
|||
m_choiceRepeatHorizontal = new wxChoice( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceRepeatHorizontalNChoices, m_choiceRepeatHorizontalChoices, 0 ); |
|||
m_choiceRepeatHorizontal->SetSelection( 0 ); |
|||
fgSizer1->Add( m_choiceRepeatHorizontal, 0, wxALL|wxEXPAND, 5 ); |
|||
|
|||
m_staticRepeatXUnits = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticRepeatXUnits->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticRepeatXUnits, 0, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
m_staticText12 = new wxStaticText( this, wxID_ANY, _("Repeat draw item &vertical displacement:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText12->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText12, 1, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
wxString m_choiceRepeatVerticalChoices[] = { _("50"), _("25") }; |
|||
int m_choiceRepeatVerticalNChoices = sizeof( m_choiceRepeatVerticalChoices ) / sizeof( wxString ); |
|||
m_choiceRepeatVertical = new wxChoice( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, m_choiceRepeatVerticalNChoices, m_choiceRepeatVerticalChoices, 0 ); |
|||
m_choiceRepeatVertical->SetSelection( 0 ); |
|||
fgSizer1->Add( m_choiceRepeatVertical, 0, wxALL|wxEXPAND, 5 ); |
|||
|
|||
m_staticRepeatYUnits = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticRepeatYUnits->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticRepeatYUnits, 0, wxALIGN_CENTER_VERTICAL|wxALL, 3 ); |
|||
|
|||
m_staticText15 = new wxStaticText( this, wxID_ANY, _("Current &pin lenght:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText15->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText15, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 ); |
|||
|
|||
m_CurrentPinLenghtCtrl = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_CurrentPinLenghtCtrl->SetMaxLength( 0 ); |
|||
fgSizer1->Add( m_CurrentPinLenghtCtrl, 0, wxEXPAND|wxALL, 5 ); |
|||
|
|||
m_staticText161 = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText161->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText161, 0, wxALL, 5 ); |
|||
|
|||
m_CurrentPinNameSizeText = new wxStaticText( this, wxID_ANY, _("Current pin name size:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_CurrentPinNameSizeText->Wrap( -1 ); |
|||
fgSizer1->Add( m_CurrentPinNameSizeText, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 ); |
|||
|
|||
m_CurrentPinNameSizeCtrl = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_CurrentPinNameSizeCtrl->SetMaxLength( 0 ); |
|||
fgSizer1->Add( m_CurrentPinNameSizeCtrl, 0, wxALL|wxEXPAND, 5 ); |
|||
|
|||
m_staticText18 = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText18->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText18, 0, wxALL, 5 ); |
|||
|
|||
m_CurrentPinNumberSizeText = new wxStaticText( this, wxID_ANY, _("Current pin number size:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_CurrentPinNumberSizeText->Wrap( -1 ); |
|||
fgSizer1->Add( m_CurrentPinNumberSizeText, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 ); |
|||
|
|||
m_CurrentPinNumberSizeCtrl = new wxTextCtrl( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_CurrentPinNumberSizeCtrl->SetMaxLength( 0 ); |
|||
fgSizer1->Add( m_CurrentPinNumberSizeCtrl, 0, wxALL|wxEXPAND, 5 ); |
|||
|
|||
m_staticText20 = new wxStaticText( this, wxID_ANY, _("mils"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText20->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText20, 0, wxALL, 5 ); |
|||
|
|||
m_staticText16 = new wxStaticText( this, wxID_ANY, _("&Repeat pin number increment:"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
m_staticText16->Wrap( -1 ); |
|||
fgSizer1->Add( m_staticText16, 0, wxALL|wxALIGN_CENTER_VERTICAL, 3 ); |
|||
|
|||
m_spinRepeatLabel = new wxSpinCtrl( this, wxID_ANY, wxT("1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS|wxSP_WRAP, 0, 10, 1 ); |
|||
fgSizer1->Add( m_spinRepeatLabel, 0, wxALL|wxEXPAND, 3 ); |
|||
|
|||
|
|||
fgSizer1->Add( 0, 0, 1, wxEXPAND, 3 ); |
|||
|
|||
|
|||
mainSizer->Add( fgSizer1, 0, wxEXPAND, 0 ); |
|||
|
|||
m_staticline1 = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL ); |
|||
mainSizer->Add( m_staticline1, 0, wxEXPAND | wxALL, 5 ); |
|||
|
|||
wxBoxSizer* bSizerBttons; |
|||
bSizerBttons = new wxBoxSizer( wxHORIZONTAL ); |
|||
|
|||
m_buttonSave = new wxButton( this, wxID_ANY, _("Save as Default"), wxDefaultPosition, wxDefaultSize, 0 ); |
|||
bSizerBttons->Add( m_buttonSave, 0, wxALL, 5 ); |
|||
|
|||
m_sdbSizer1 = new wxStdDialogButtonSizer(); |
|||
m_sdbSizer1OK = new wxButton( this, wxID_OK ); |
|||
m_sdbSizer1->AddButton( m_sdbSizer1OK ); |
|||
m_sdbSizer1Cancel = new wxButton( this, wxID_CANCEL ); |
|||
m_sdbSizer1->AddButton( m_sdbSizer1Cancel ); |
|||
m_sdbSizer1->Realize(); |
|||
|
|||
bSizerBttons->Add( m_sdbSizer1, 0, wxALL|wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL, 0 ); |
|||
|
|||
|
|||
mainSizer->Add( bSizerBttons, 0, wxALIGN_RIGHT, 5 ); |
|||
|
|||
|
|||
this->SetSizer( mainSizer ); |
|||
this->Layout(); |
|||
|
|||
this->Centre( wxBOTH ); |
|||
} |
|||
|
|||
DIALOG_LIBEDIT_DIMENSIONS_BASE::~DIALOG_LIBEDIT_DIMENSIONS_BASE() |
|||
{ |
|||
} |
|||
2551
eeschema/dialogs/dialog_libedit_dimensions_base.fbp
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,90 +0,0 @@ |
|||
/////////////////////////////////////////////////////////////////////////// |
|||
// C++ code generated with wxFormBuilder (version Mar 9 2015) |
|||
// http://www.wxformbuilder.org/ |
|||
// |
|||
// PLEASE DO "NOT" EDIT THIS FILE! |
|||
/////////////////////////////////////////////////////////////////////////// |
|||
|
|||
#ifndef __DIALOG_LIBEDIT_DIMENSIONS_BASE_H__ |
|||
#define __DIALOG_LIBEDIT_DIMENSIONS_BASE_H__ |
|||
|
|||
#include <wx/artprov.h> |
|||
#include <wx/xrc/xmlres.h> |
|||
#include <wx/intl.h> |
|||
#include <wx/string.h> |
|||
#include <wx/stattext.h> |
|||
#include <wx/gdicmn.h> |
|||
#include <wx/font.h> |
|||
#include <wx/colour.h> |
|||
#include <wx/settings.h> |
|||
#include <wx/choice.h> |
|||
#include <wx/textctrl.h> |
|||
#include <wx/spinctrl.h> |
|||
#include <wx/sizer.h> |
|||
#include <wx/statline.h> |
|||
#include <wx/button.h> |
|||
#include <wx/dialog.h> |
|||
|
|||
/////////////////////////////////////////////////////////////////////////// |
|||
|
|||
/////////////////////////////////////////////////////////////////////////////// |
|||
/// Class DIALOG_LIBEDIT_DIMENSIONS_BASE |
|||
/////////////////////////////////////////////////////////////////////////////// |
|||
class DIALOG_LIBEDIT_DIMENSIONS_BASE : public wxDialog |
|||
{ |
|||
DECLARE_EVENT_TABLE() |
|||
private: |
|||
|
|||
// Private event handlers |
|||
void _wxFB_OnSaveSetupClick( wxCommandEvent& event ){ OnSaveSetupClick( event ); } |
|||
void _wxFB_OnCancelClick( wxCommandEvent& event ){ OnCancelClick( event ); } |
|||
void _wxFB_OnOkClick( wxCommandEvent& event ){ OnOkClick( event ); } |
|||
|
|||
|
|||
protected: |
|||
wxStaticText* m_staticText3; |
|||
wxChoice* m_choiceGridSize; |
|||
wxStaticText* m_staticGridUnits; |
|||
wxStaticText* m_staticText5; |
|||
wxTextCtrl* m_CurrentGraphicLineThicknessCtrl; |
|||
wxStaticText* m_staticLineWidthUnits; |
|||
wxStaticText* m_staticText7; |
|||
wxTextCtrl* m_CurrentGraphicTextSizeCtrl; |
|||
wxStaticText* m_staticTextSizeUnits; |
|||
wxStaticText* m_staticText9; |
|||
wxChoice* m_choiceRepeatHorizontal; |
|||
wxStaticText* m_staticRepeatXUnits; |
|||
wxStaticText* m_staticText12; |
|||
wxChoice* m_choiceRepeatVertical; |
|||
wxStaticText* m_staticRepeatYUnits; |
|||
wxStaticText* m_staticText15; |
|||
wxTextCtrl* m_CurrentPinLenghtCtrl; |
|||
wxStaticText* m_staticText161; |
|||
wxStaticText* m_CurrentPinNameSizeText; |
|||
wxTextCtrl* m_CurrentPinNameSizeCtrl; |
|||
wxStaticText* m_staticText18; |
|||
wxStaticText* m_CurrentPinNumberSizeText; |
|||
wxTextCtrl* m_CurrentPinNumberSizeCtrl; |
|||
wxStaticText* m_staticText20; |
|||
wxStaticText* m_staticText16; |
|||
wxSpinCtrl* m_spinRepeatLabel; |
|||
wxStaticLine* m_staticline1; |
|||
wxButton* m_buttonSave; |
|||
wxStdDialogButtonSizer* m_sdbSizer1; |
|||
wxButton* m_sdbSizer1OK; |
|||
wxButton* m_sdbSizer1Cancel; |
|||
|
|||
// Virtual event handlers, overide them in your derived class |
|||
virtual void OnSaveSetupClick( wxCommandEvent& event ) { event.Skip(); } |
|||
virtual void OnCancelClick( wxCommandEvent& event ) { event.Skip(); } |
|||
virtual void OnOkClick( wxCommandEvent& event ) { event.Skip(); } |
|||
|
|||
|
|||
public: |
|||
|
|||
DIALOG_LIBEDIT_DIMENSIONS_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Library Editor Options"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 412,349 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER ); |
|||
~DIALOG_LIBEDIT_DIMENSIONS_BASE(); |
|||
|
|||
}; |
|||
|
|||
#endif //__DIALOG_LIBEDIT_DIMENSIONS_BASE_H__ |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue