Adding new icons
@@ -1,7 +1,7 @@
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2024 KiCad Developers, see AUTHORS.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
|
||||
|
||||
@@ -375,63 +375,63 @@ TOOL_ACTION ACTIONS::selectColumns( TOOL_ACTION_ARGS()
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Select Column(s)" ) )
|
||||
.Tooltip( _( "Select complete column(s) containing the current selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_select_column ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::selectRows( TOOL_ACTION_ARGS()
|
||||
.Name( "common.InteractiveSelection.Rows" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Select Row(s)" ) )
|
||||
.Tooltip( _( "Select complete row(s) containing the current selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_select_row ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::selectTable( TOOL_ACTION_ARGS()
|
||||
.Name( "common.InteractiveSelection.SelectTable" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Select Table" ) )
|
||||
.Tooltip( _( "Select parent table of selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_select ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::addRowAbove( TOOL_ACTION_ARGS()
|
||||
.Name( "common.TableEditor.addRowAbove" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Add Row Above" ) )
|
||||
.Tooltip( _( "Insert a new table row above the selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_add_row_above ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::addRowBelow( TOOL_ACTION_ARGS()
|
||||
.Name( "common.TableEditor.addRowBelow" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Add Row Below" ) )
|
||||
.Tooltip( _( "Insert a new table row below the selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_add_row_below ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::addColBefore( TOOL_ACTION_ARGS()
|
||||
.Name( "common.TableEditor.addColBefore" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Add Column Before" ) )
|
||||
.Tooltip( _( "Insert a new table column before the selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_add_column_before ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::addColAfter( TOOL_ACTION_ARGS()
|
||||
.Name( "common.TableEditor.addColAfter" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Add Column After" ) )
|
||||
.Tooltip( _( "Insert a new table column after the selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_add_column_after ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::deleteRows( TOOL_ACTION_ARGS()
|
||||
.Name( "common.TableEditor.deleteRows" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Delete Row(s)" ) )
|
||||
.Tooltip( _( "Delete rows containing the currently selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_delete_row ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::deleteColumns( TOOL_ACTION_ARGS()
|
||||
.Name( "common.TableEditor.deleteColumns" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.FriendlyName( _( "Delete Column(s)" ) )
|
||||
.Tooltip( _( "Delete columns containing the currently selected cell(s)" ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_delete_column ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::mergeCells( TOOL_ACTION_ARGS()
|
||||
.Name( "common.TableEditor.mergeCells" )
|
||||
@@ -452,7 +452,7 @@ TOOL_ACTION ACTIONS::editTable( TOOL_ACTION_ARGS()
|
||||
.Scope( AS_GLOBAL )
|
||||
.DefaultHotkey( MD_CTRL + 'E' )
|
||||
.FriendlyName( _( "Edit Table..." ) )
|
||||
.Icon( BITMAPS::spreadsheet ) ); // JEY TODO: need icon
|
||||
.Icon( BITMAPS::table_edit ) ); // JEY TODO: need icon
|
||||
|
||||
TOOL_ACTION ACTIONS::activatePointEditor( TOOL_ACTION_ARGS()
|
||||
.Name( "common.Control.activatePointEditor" )
|
||||
|
||||
@@ -108,6 +108,7 @@ enum class BITMAPS : unsigned int
|
||||
axis3d_left,
|
||||
axis3d_right,
|
||||
axis3d_top,
|
||||
body_style,
|
||||
break_bus,
|
||||
break_line,
|
||||
bug,
|
||||
@@ -317,6 +318,7 @@ enum class BITMAPS : unsigned int
|
||||
insert_module_board,
|
||||
intersect_polygons,
|
||||
invisible_text,
|
||||
jobset,
|
||||
kicad_icon_small,
|
||||
label_align_left,
|
||||
label_align_right,
|
||||
@@ -471,6 +473,7 @@ enum class BITMAPS : unsigned int
|
||||
primitives_to_custom_pad,
|
||||
print_button,
|
||||
project,
|
||||
project_clone,
|
||||
project_close,
|
||||
project_kicad,
|
||||
ps_diff_pair,
|
||||
@@ -484,6 +487,7 @@ enum class BITMAPS : unsigned int
|
||||
puzzle_piece,
|
||||
py_script,
|
||||
question_mark,
|
||||
ray_tracing,
|
||||
reannotate_down_left,
|
||||
reannotate_down_right,
|
||||
reannotate_left_down,
|
||||
@@ -535,6 +539,7 @@ enum class BITMAPS : unsigned int
|
||||
show_all_front_layers,
|
||||
show_all_layers,
|
||||
show_back_assembly_layers,
|
||||
show_board_body,
|
||||
show_dcodenumber,
|
||||
show_dnp,
|
||||
show_footprint,
|
||||
@@ -587,6 +592,16 @@ enum class BITMAPS : unsigned int
|
||||
swap,
|
||||
swap_layer,
|
||||
switch_corner_rounding_shape,
|
||||
table_add_column_after,
|
||||
table_add_column_before,
|
||||
table_add_row_above,
|
||||
table_add_row_below,
|
||||
table_delete_column,
|
||||
table_delete_row,
|
||||
table_edit,
|
||||
table_select,
|
||||
table_select_column,
|
||||
table_select_row,
|
||||
teardrop_sizes,
|
||||
teardrop_rect_sizes,
|
||||
teardrop_track_sizes,
|
||||
|
||||
@@ -58,14 +58,14 @@ TOOL_ACTION KICAD_MANAGER_ACTIONS::newFromRepository( TOOL_ACTION_ARGS()
|
||||
.Scope( AS_GLOBAL )
|
||||
.LegacyHotkeyName( "Clone Project From Repository" )
|
||||
.FriendlyName( _( "Clone Project from Repository..." ) )
|
||||
.Icon( BITMAPS::new_project_from_template ) );
|
||||
.Icon( BITMAPS::project_clone ) );
|
||||
|
||||
TOOL_ACTION KICAD_MANAGER_ACTIONS::newJobsetFile( TOOL_ACTION_ARGS()
|
||||
.Name( "kicad.Control.newJobs" )
|
||||
.Scope( AS_GLOBAL )
|
||||
.LegacyHotkeyName( "New Jobset File" )
|
||||
.FriendlyName( _( "New Jobset File..." ) )
|
||||
.Icon( BITMAPS::new_document ) );
|
||||
.Icon( BITMAPS::jobset ) );
|
||||
|
||||
TOOL_ACTION KICAD_MANAGER_ACTIONS::openDemoProject( TOOL_ACTION_ARGS()
|
||||
.Name( "kicad.Control.openDemoProject" )
|
||||
|
||||
|
After Width: | Height: | Size: 259 B |
|
After Width: | Height: | Size: 281 B |
|
After Width: | Height: | Size: 437 B |
|
After Width: | Height: | Size: 473 B |
|
After Width: | Height: | Size: 725 B |
|
After Width: | Height: | Size: 350 B |
|
After Width: | Height: | Size: 365 B |
|
After Width: | Height: | Size: 589 B |
|
After Width: | Height: | Size: 611 B |
|
After Width: | Height: | Size: 980 B |
|
After Width: | Height: | Size: 544 B |
|
After Width: | Height: | Size: 555 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 532 B |
|
After Width: | Height: | Size: 565 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 495 B |
|
After Width: | Height: | Size: 499 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 935 B |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 503 B |
|
After Width: | Height: | Size: 497 B |
|
After Width: | Height: | Size: 1014 B |
|
After Width: | Height: | Size: 941 B |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 228 B |
|
After Width: | Height: | Size: 260 B |
|
After Width: | Height: | Size: 355 B |
|
After Width: | Height: | Size: 454 B |
|
After Width: | Height: | Size: 521 B |
|
After Width: | Height: | Size: 239 B |
|
After Width: | Height: | Size: 259 B |
|
After Width: | Height: | Size: 367 B |
|
After Width: | Height: | Size: 453 B |
|
After Width: | Height: | Size: 533 B |
|
After Width: | Height: | Size: 239 B |
|
After Width: | Height: | Size: 259 B |
|
After Width: | Height: | Size: 322 B |
|
After Width: | Height: | Size: 402 B |
|
After Width: | Height: | Size: 615 B |
|
After Width: | Height: | Size: 238 B |
|
After Width: | Height: | Size: 266 B |
|
After Width: | Height: | Size: 330 B |
|
After Width: | Height: | Size: 405 B |
|
After Width: | Height: | Size: 615 B |
|
After Width: | Height: | Size: 437 B |
|
After Width: | Height: | Size: 375 B |
|
After Width: | Height: | Size: 707 B |
|
After Width: | Height: | Size: 800 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 435 B |
|
After Width: | Height: | Size: 402 B |
|
After Width: | Height: | Size: 735 B |
|
After Width: | Height: | Size: 847 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 440 B |
|
After Width: | Height: | Size: 407 B |
|
After Width: | Height: | Size: 720 B |
|
After Width: | Height: | Size: 839 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 439 B |
|
After Width: | Height: | Size: 438 B |
|
After Width: | Height: | Size: 756 B |
|
After Width: | Height: | Size: 870 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 445 B |
|
After Width: | Height: | Size: 426 B |
|
After Width: | Height: | Size: 719 B |
|
After Width: | Height: | Size: 844 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 438 B |
|
After Width: | Height: | Size: 442 B |
|
After Width: | Height: | Size: 751 B |
|
After Width: | Height: | Size: 902 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 446 B |
|
After Width: | Height: | Size: 372 B |
|
After Width: | Height: | Size: 699 B |
|
After Width: | Height: | Size: 781 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 447 B |
|
After Width: | Height: | Size: 395 B |
|
After Width: | Height: | Size: 729 B |
|
After Width: | Height: | Size: 795 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 398 B |
|
After Width: | Height: | Size: 480 B |
|
After Width: | Height: | Size: 759 B |
|
After Width: | Height: | Size: 924 B |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 410 B |