mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 11:25:00 +00:00
00f7ae2a20
This is the wording used, for example, in LibreOffice. And add some Alt-hotkeys for the options, in particular: * Alt-W: word only mode * Alt-C: case sensitivity Which (in English at least) is consistent with VS Code and Firefox, which also allow Alt-hotkey toggling (Kate and Writer don't).
74 lines
2.3 KiB
C++
74 lines
2.3 KiB
C++
///////////////////////////////////////////////////////////////////////////
|
|
// C++ code generated with wxFormBuilder (version 4.2.1-0-g80c4cb6)
|
|
// http://www.wxformbuilder.org/
|
|
//
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include <wx/artprov.h>
|
|
#include <wx/xrc/xmlres.h>
|
|
#include <wx/intl.h>
|
|
#include "dialog_shim.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/combobox.h>
|
|
#include <wx/sizer.h>
|
|
#include <wx/checkbox.h>
|
|
#include <wx/button.h>
|
|
#include <wx/bitmap.h>
|
|
#include <wx/image.h>
|
|
#include <wx/icon.h>
|
|
#include <wx/statline.h>
|
|
#include <wx/dialog.h>
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
/// Class DIALOG_FIND_BASE
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
class DIALOG_FIND_BASE : public DIALOG_SHIM
|
|
{
|
|
private:
|
|
|
|
protected:
|
|
wxStaticText* searchStringLabel;
|
|
wxComboBox* m_searchCombo;
|
|
wxCheckBox* m_matchCase;
|
|
wxCheckBox* m_matchWords;
|
|
wxCheckBox* m_wildcards;
|
|
wxCheckBox* m_wrap;
|
|
wxCheckBox* m_includeReferences;
|
|
wxCheckBox* m_includeValues;
|
|
wxCheckBox* m_includeTexts;
|
|
wxCheckBox* m_includeMarkers;
|
|
wxCheckBox* m_includeNets;
|
|
wxButton* m_findNext;
|
|
wxButton* m_findPrevious;
|
|
wxButton* m_searchAgain;
|
|
wxButton* m_closeButton;
|
|
wxStaticText* m_status;
|
|
|
|
// Virtual event handlers, override them in your derived class
|
|
virtual void OnClose( wxCloseEvent& event ) { event.Skip(); }
|
|
virtual void onTextEnter( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void onFindNextClick( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void onFindPreviousClick( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void onSearchAgainClick( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void OnCloseButtonClick( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
|
|
public:
|
|
|
|
DIALOG_FIND_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE );
|
|
|
|
~DIALOG_FIND_BASE();
|
|
|
|
};
|
|
|