mirror of
https://github.com/leozide/leocad
synced 2024-12-25 21:58:23 +01:00
Added find next icon.
This commit is contained in:
parent
b74eb3a81e
commit
7f0ed057b6
5 changed files with 8 additions and 1 deletions
|
@ -126,6 +126,8 @@ lcFindReplaceWidget::lcFindReplaceWidget(QWidget* Parent, lcModel* Model, bool R
|
|||
|
||||
lcSearchOptions& SearchOptions = gMainWindow->mSearchOptions;
|
||||
|
||||
SearchOptions.SearchValid = true;
|
||||
|
||||
if (!Replace)
|
||||
{
|
||||
SearchOptions.ReplaceColor = false;
|
||||
|
@ -134,7 +136,6 @@ lcFindReplaceWidget::lcFindReplaceWidget(QWidget* Parent, lcModel* Model, bool R
|
|||
|
||||
if (Focus)
|
||||
{
|
||||
SearchOptions.SearchValid = true;
|
||||
SearchOptions.Info = Focus->mPieceInfo;
|
||||
SearchOptions.ColorIndex = Focus->GetColorIndex();
|
||||
|
||||
|
|
|
@ -285,6 +285,8 @@ void lcMainWindow::CreateActions()
|
|||
mActions[LC_EDIT_ACTION_ROLL]->setIcon(QIcon(":/resources/action_roll.png"));
|
||||
mActions[LC_EDIT_ACTION_ZOOM_REGION]->setIcon(QIcon(":/resources/action_zoom_region.png"));
|
||||
mActions[LC_EDIT_FIND]->setIcon(QIcon(":/resources/edit_find.png"));
|
||||
mActions[LC_EDIT_FIND_NEXT]->setIcon(QIcon(":/resources/edit_find_next.png"));
|
||||
mActions[LC_EDIT_FIND_PREVIOUS]->setIcon(QIcon(":/resources/edit_find_previous.png"));
|
||||
mActions[LC_PIECE_SHOW_EARLIER]->setIcon(QIcon(":/resources/piece_show_earlier.png"));
|
||||
mActions[LC_PIECE_SHOW_LATER]->setIcon(QIcon(":/resources/piece_show_later.png"));
|
||||
mActions[LC_VIEW_SPLIT_HORIZONTAL]->setIcon(QIcon(":/resources/view_split_horizontal.png"));
|
||||
|
@ -2008,6 +2010,8 @@ void lcMainWindow::UpdateSelectedObjects(bool SelectionChanged)
|
|||
mActions[LC_EDIT_FIND]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
mActions[LC_EDIT_FIND_NEXT]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
mActions[LC_EDIT_FIND_PREVIOUS]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
mActions[LC_EDIT_REPLACE]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
mActions[LC_EDIT_REPLACE_NEXT]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
mActions[LC_EDIT_SELECT_INVERT]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
mActions[LC_EDIT_SELECT_BY_NAME]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
mActions[LC_EDIT_SELECT_BY_COLOR]->setEnabled((Flags & LC_SEL_NO_PIECES) == 0);
|
||||
|
|
|
@ -63,6 +63,8 @@
|
|||
<file>resources/edit_copy.png</file>
|
||||
<file>resources/edit_cut.png</file>
|
||||
<file>resources/edit_find.png</file>
|
||||
<file>resources/edit_find_next.png</file>
|
||||
<file>resources/edit_find_previous.png</file>
|
||||
<file>resources/edit_paste.png</file>
|
||||
<file>resources/edit_redo.png</file>
|
||||
<file>resources/edit_snap_angle.png</file>
|
||||
|
|
BIN
resources/edit_find_next.png
Normal file
BIN
resources/edit_find_next.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 114 B |
BIN
resources/edit_find_previous.png
Normal file
BIN
resources/edit_find_previous.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 112 B |
Loading…
Reference in a new issue