mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-27 20:16:30 +00:00
953bc2d4bd
Also adds support for default fields when placing design blocks as a sheet.
75 lines
2.4 KiB
C++
75 lines
2.4 KiB
C++
///////////////////////////////////////////////////////////////////////////
|
|
// C++ code generated with wxFormBuilder (version 4.0.0-0-g0efcecf-dirty)
|
|
// http://www.wxformbuilder.org/
|
|
//
|
|
// PLEASE DO *NOT* EDIT THIS FILE!
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include <wx/artprov.h>
|
|
#include <wx/xrc/xmlres.h>
|
|
class WX_GRID;
|
|
|
|
#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/textctrl.h>
|
|
#include <wx/sizer.h>
|
|
#include <wx/statbox.h>
|
|
#include <wx/grid.h>
|
|
#include <wx/bmpbuttn.h>
|
|
#include <wx/bitmap.h>
|
|
#include <wx/image.h>
|
|
#include <wx/icon.h>
|
|
#include <wx/button.h>
|
|
#include <wx/dialog.h>
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
/// Class DIALOG_DESIGN_BLOCK_PROPERTIES_BASE
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
class DIALOG_DESIGN_BLOCK_PROPERTIES_BASE : public DIALOG_SHIM
|
|
{
|
|
private:
|
|
|
|
protected:
|
|
wxStaticText* m_staticTextName;
|
|
wxTextCtrl* m_textName;
|
|
wxStaticText* m_staticTextKeywords;
|
|
wxTextCtrl* m_textKeywords;
|
|
wxStaticText* m_staticTextDescription;
|
|
wxTextCtrl* m_textDescription;
|
|
WX_GRID* m_fieldsGrid;
|
|
wxBitmapButton* m_bpAdd;
|
|
wxBitmapButton* m_bpMoveUp;
|
|
wxBitmapButton* m_bpMoveDown;
|
|
wxBitmapButton* m_bpDelete;
|
|
wxStdDialogButtonSizer* m_stdButtons;
|
|
wxButton* m_stdButtonsOK;
|
|
wxButton* m_stdButtonsCancel;
|
|
|
|
// Virtual event handlers, override them in your derived class
|
|
virtual void OnSizeGrid( wxSizeEvent& event ) { event.Skip(); }
|
|
virtual void OnAddField( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void OnMoveFieldUp( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void OnMoveFieldDown( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void OnDeleteField( wxCommandEvent& event ) { event.Skip(); }
|
|
virtual void OnCancelButtonClick( wxCommandEvent& event ) { event.Skip(); }
|
|
|
|
|
|
public:
|
|
|
|
DIALOG_DESIGN_BLOCK_PROPERTIES_BASE( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Design Block Properties"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 551,637 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER );
|
|
|
|
~DIALOG_DESIGN_BLOCK_PROPERTIES_BASE();
|
|
|
|
};
|
|
|