tool_modedit.cpp 11.9 KB
Newer Older
1 2 3
/*
 * This program source code file is part of KiCad, a free EDA CAD application.
 *
4 5 6 7
 * Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
 * Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
 * Copyright (C) 2012 Wayne Stambaugh <stambaughw@verizon.net>
 * Copyright (C) 1992-2012 KiCad Developers, see AUTHORS.txt for contributors.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 * 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
 */

/**
 * @file tool_modedit.cpp
 * @brief Footprint editor tool bars
 */
31

32
#include <fctsys.h>
33

34 35 36 37 38 39
#include <pcbnew.h>
#include <wxPcbStruct.h>
#include <module_editor_frame.h>
#include <dialog_helpers.h>
#include <pcbnew_id.h>
#include <hotkeys.h>
40

plyatov's avatar
plyatov committed
41
#ifdef __UNIX__
42
#define LISTBOX_WIDTH 140
plyatov's avatar
plyatov committed
43
#else
44
#define LISTBOX_WIDTH 120
plyatov's avatar
plyatov committed
45
#endif
46

47

48
void FOOTPRINT_EDIT_FRAME::ReCreateHToolbar()
49
{
50
    if( m_mainToolBar  != NULL )
51 52 53 54
        return;

    wxString msg;

55 56
    m_mainToolBar = new wxAuiToolBar( this, ID_H_TOOLBAR, wxDefaultPosition, wxDefaultSize,
                                      wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_HORZ_LAYOUT );
57

58
    // Set up toolbar
59 60 61
    m_mainToolBar->AddTool( ID_MODEDIT_SELECT_CURRENT_LIB, wxEmptyString,
                            KiBitmap( open_library_xpm ),
                            _( "Select active library" ) );
62

63 64
    m_mainToolBar->AddTool( ID_MODEDIT_SAVE_LIBMODULE, wxEmptyString, KiBitmap( save_library_xpm ),
                            _( "Save module in active library" ) );
65

66 67 68
    m_mainToolBar->AddTool( ID_MODEDIT_CREATE_NEW_LIB_AND_SAVE_CURRENT_PART, wxEmptyString,
                            KiBitmap( new_library_xpm ),
                            _( "Create new library and save current module" ) );
69

70
    m_mainToolBar->AddTool( ID_OPEN_MODULE_VIEWER, wxEmptyString, KiBitmap( modview_icon_xpm ),
71 72
                            _( "Open module viewer" ) );

73 74 75
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( ID_MODEDIT_DELETE_PART, wxEmptyString, KiBitmap( delete_xpm ),
                            _( "Delete part from active library" ) );
76

77 78 79
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( ID_MODEDIT_NEW_MODULE, wxEmptyString, KiBitmap( new_footprint_xpm ),
                            _( "New module" ) );
80

81
#ifdef KICAD_SCRIPTING
82 83 84
    m_mainToolBar->AddTool( ID_MODEDIT_NEW_MODULE_FROM_WIZARD, wxEmptyString,
                            KiBitmap( module_wizard_xpm ),
                            _( "New module from footprint wizard" ) );
85
#endif
86

87

88 89 90
    m_mainToolBar->AddTool( ID_MODEDIT_LOAD_MODULE, wxEmptyString,
                            KiBitmap( load_module_lib_xpm ),
                            _( "Load module from library" ) );
91

92 93 94 95
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( ID_MODEDIT_LOAD_MODULE_FROM_BOARD, wxEmptyString,
                            KiBitmap( load_module_board_xpm ),
                            _( "Load module from current board" ) );
96

97 98 99
    m_mainToolBar->AddTool( ID_MODEDIT_UPDATE_MODULE_IN_BOARD, wxEmptyString,
                            KiBitmap( update_module_board_xpm ),
                            _( "Update module in current board" ) );
100

101 102 103
    m_mainToolBar->AddTool( ID_MODEDIT_INSERT_MODULE_IN_BOARD, wxEmptyString,
                            KiBitmap( insert_module_board_xpm ),
                            _( "Insert module into current board" ) );
104

105 106 107
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( ID_MODEDIT_IMPORT_PART, wxEmptyString, KiBitmap( import_module_xpm ),
                            _( "Import module" ) );
108

109 110
    m_mainToolBar->AddTool( ID_MODEDIT_EXPORT_PART, wxEmptyString, KiBitmap( export_module_xpm ),
                            _( "Export module" ) );
111 112


113 114 115 116 117
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( wxID_UNDO, wxEmptyString, KiBitmap( undo_xpm ),
                            _( "Undo last edition" ) );
    m_mainToolBar->AddTool( wxID_REDO, wxEmptyString, KiBitmap( redo_xpm ),
                            _( "Redo the last undo command" ) );
118

119 120 121 122
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( ID_MODEDIT_EDIT_MODULE_PROPERTIES, wxEmptyString,
                            KiBitmap( module_options_xpm ),
                            _( "Module properties" ) );
123

124 125 126
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( wxID_PRINT, wxEmptyString, KiBitmap( print_button_xpm ),
                            _( "Print module" ) );
127

128
    m_mainToolBar->AddSeparator();
129
    msg = AddHotkeyName( _( "Zoom in" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_IN, IS_COMMENT );
130
    m_mainToolBar->AddTool( ID_ZOOM_IN, wxEmptyString, KiBitmap( zoom_in_xpm ), msg );
131

132
    msg = AddHotkeyName( _( "Zoom out" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_OUT, IS_COMMENT );
133
    m_mainToolBar->AddTool( ID_ZOOM_OUT, wxEmptyString, KiBitmap( zoom_out_xpm ), msg );
134

135 136 137
    msg = AddHotkeyName( _( "Redraw view" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_REDRAW,
                         IS_COMMENT );
    m_mainToolBar->AddTool( ID_ZOOM_REDRAW, wxEmptyString, KiBitmap( zoom_redraw_xpm ), msg );
138

139
    msg = AddHotkeyName( _( "Zoom auto" ), g_Module_Editor_Hokeys_Descr, HK_ZOOM_AUTO, IS_COMMENT );
140
    m_mainToolBar->AddTool( ID_ZOOM_PAGE, wxEmptyString, KiBitmap( zoom_fit_in_page_xpm ), msg );
141

142 143 144
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( ID_MODEDIT_PAD_SETTINGS, wxEmptyString, KiBitmap( options_pad_xpm ),
                            _( "Pad settings" ) );
145

146 147 148 149
    m_mainToolBar->AddSeparator();
    m_mainToolBar->AddTool( ID_MODEDIT_CHECK, wxEmptyString,
                            KiBitmap( module_check_xpm ),
                            _( "Check module" ) );
150

151
    // after adding the buttons to the toolbar, must call Realize() to reflect the changes
152
    m_mainToolBar->Realize();
153 154
}

155

156
void FOOTPRINT_EDIT_FRAME::ReCreateVToolbar()
157
{
158
    if( m_drawToolBar )
159
        return;
160

161 162
    m_drawToolBar = new wxAuiToolBar( this, ID_V_TOOLBAR, wxDefaultPosition, wxDefaultSize,
                                      wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_VERTICAL );
163

164
    // Set up toolbar
165 166
    m_drawToolBar->AddTool( ID_NO_TOOL_SELECTED, wxEmptyString, KiBitmap( cursor_xpm ),
                            wxEmptyString, wxITEM_CHECK );
167

168 169 170
    m_drawToolBar->AddSeparator();
    m_drawToolBar->AddTool( ID_MODEDIT_PAD_TOOL, wxEmptyString, KiBitmap( pad_xpm ),
                            _( "Add pads" ), wxITEM_CHECK );
171

172 173 174
    m_drawToolBar->AddSeparator();
    m_drawToolBar->AddTool( ID_MODEDIT_LINE_TOOL, wxEmptyString, KiBitmap( add_polygon_xpm ),
                            _( "Add graphic line or polygon" ), wxITEM_CHECK );
175

176 177
    m_drawToolBar->AddTool( ID_MODEDIT_CIRCLE_TOOL, wxEmptyString, KiBitmap( add_circle_xpm ),
                            _( "Add graphic circle" ), wxITEM_CHECK );
178

179 180
    m_drawToolBar->AddTool( ID_MODEDIT_ARC_TOOL, wxEmptyString, KiBitmap( add_arc_xpm ),
                            _( "Add graphic arc" ), wxITEM_CHECK );
181

182 183
    m_drawToolBar->AddTool( ID_MODEDIT_TEXT_TOOL, wxEmptyString, KiBitmap( add_text_xpm ),
                            _( "Add Text" ), wxITEM_CHECK );
184

185 186 187 188
    m_drawToolBar->AddSeparator();
    m_drawToolBar->AddTool( ID_MODEDIT_ANCHOR_TOOL, wxEmptyString, KiBitmap( anchor_xpm ),
                            _( "Place the footprint module reference anchor" ),
                            wxITEM_CHECK );
189

190
    m_drawToolBar->AddSeparator();
191
    m_drawToolBar->AddTool( ID_MODEDIT_DELETE_TOOL, wxEmptyString, KiBitmap( delete_xpm ),
192
                            _( "Delete items" ), wxITEM_CHECK );
193

194 195 196 197
    m_drawToolBar->AddTool( ID_MODEDIT_PLACE_GRID_COORD, wxEmptyString,
                            KiBitmap( grid_select_axis_xpm ),
                            _( "Set the origin point for the grid" ),
                            wxITEM_CHECK );
198

199
    m_drawToolBar->Realize();
200 201
}

202

203
void FOOTPRINT_EDIT_FRAME::ReCreateOptToolbar()
204
{
205
    if( m_optionsToolBar )
206 207
        return;

208
    // Create options tool bar.
209 210
    m_optionsToolBar = new wxAuiToolBar( this, ID_OPT_TOOLBAR, wxDefaultPosition, wxDefaultSize,
                                         wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_VERTICAL );
211
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_GRID, wxEmptyString, KiBitmap( grid_xpm ),
charras's avatar
charras committed
212
                               _( "Hide grid" ), wxITEM_CHECK );
213

214
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_POLAR_COORD, wxEmptyString,
215
                               KiBitmap( polar_coord_xpm ),
216 217
                               _( "Display Polar Coord ON" ), wxITEM_CHECK );

218
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_INCH, wxEmptyString,
219
                               KiBitmap( unit_inch_xpm ),
jerryjacobs's avatar
jerryjacobs committed
220
                               _( "Units in inches" ), wxITEM_CHECK );
221

222
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_UNIT_MM, wxEmptyString,
223
                               KiBitmap( unit_mm_xpm ),
jerryjacobs's avatar
jerryjacobs committed
224
                               _( "Units in millimeters" ), wxITEM_CHECK );
225

226
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SELECT_CURSOR, wxEmptyString,
227
                               KiBitmap( cursor_shape_xpm ),
charras's avatar
charras committed
228
                               _( "Change Cursor Shape" ), wxITEM_CHECK  );
229

230 231
    m_optionsToolBar->AddSeparator();
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_PADS_SKETCH, wxEmptyString,
232
                               KiBitmap( pad_sketch_xpm ),
charras's avatar
charras committed
233
                               _( "Show Pads Sketch" ), wxITEM_CHECK  );
234

235
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_MODULE_TEXT_SKETCH, wxEmptyString,
236
                               KiBitmap( text_sketch_xpm ),
charras's avatar
charras committed
237
                               _( "Show Texts Sketch" ), wxITEM_CHECK  );
238

239
    m_optionsToolBar->AddTool( ID_TB_OPTIONS_SHOW_MODULE_EDGE_SKETCH, wxEmptyString,
240
                               KiBitmap( show_mod_edge_xpm ),
charras's avatar
charras committed
241
                               _( "Show Edges Sketch" ), wxITEM_CHECK  );
242

243
    m_optionsToolBar->Realize();
244 245
}

246

247
void FOOTPRINT_EDIT_FRAME::ReCreateAuxiliaryToolbar()
248
{
249 250
    wxString msg;

251
    if( m_auxiliaryToolBar )
252 253
        return;

254 255
    m_auxiliaryToolBar = new wxAuiToolBar( this, ID_AUX_TOOLBAR, wxDefaultPosition, wxDefaultSize,
                                           wxAUI_TB_DEFAULT_STYLE | wxAUI_TB_HORZ_LAYOUT );
256 257

    // Set up toolbar
258
    m_auxiliaryToolBar->AddSeparator();
259 260

    // Grid selection choice box.
261 262 263 264 265 266 267
    m_gridSelectBox = new wxComboBox( m_auxiliaryToolBar,
                                      ID_ON_GRID_SELECT,
                                      wxEmptyString,
                                      wxPoint( -1, -1 ),
                                      wxSize( LISTBOX_WIDTH, -1 ),
                                      0, NULL, wxCB_READONLY );
    m_auxiliaryToolBar->AddControl( m_gridSelectBox );
268 269

    // Zoom selection choice box.
270 271 272 273 274 275 276 277
    m_auxiliaryToolBar->AddSeparator();
    m_zoomSelectBox = new wxComboBox( m_auxiliaryToolBar,
                                      ID_ON_ZOOM_SELECT,
                                      wxEmptyString,
                                      wxPoint( -1, -1 ),
                                      wxSize( LISTBOX_WIDTH, -1 ),
                                      0, NULL, wxCB_READONLY );
    m_auxiliaryToolBar->AddControl( m_zoomSelectBox );
278

279
    // Update tool bar to reflect setting.
280 281 282 283
    updateGridSelectBox();
    updateZoomSelectBox();

    // after adding the buttons to the toolbar, must call Realize() to reflect the changes
284
    m_auxiliaryToolBar->Realize();
285
}