KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
design_block_preview_widget.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef DESIGN_BLOCK_PREVIEW_WIDGET_H
21#define DESIGN_BLOCK_PREVIEW_WIDGET_H
22
23#include <wx/panel.h>
24#include <kiway.h>
27
28
29class LIB_ID;
30class DESIGN_BLOCK;
31class SCHEMATIC;
32class SCH_SHEET;
33class wxStaticText;
34class wxSizer;
35
36
37class DESIGN_BLOCK_PREVIEW_WIDGET : public wxPanel
38{
39public:
45 DESIGN_BLOCK_PREVIEW_WIDGET( wxWindow* aParent ) : wxPanel( aParent ) {}
47
48
52 virtual void SetStatusText( const wxString& aText ) = 0;
53
57 virtual void DisplayDesignBlock( DESIGN_BLOCK* aDesignBlock ) = 0;
58
59protected:
60 void onSize( wxSizeEvent& aEvent );
61
62 void fitOnDrawArea(); // set the view scale to fit the item on screen and center
63};
64
65
66#endif // DESIGN_BLOCK_PREVIEW_WIDGET_H
virtual void DisplayDesignBlock(DESIGN_BLOCK *aDesignBlock)=0
Set the currently displayed design block.
void onSize(wxSizeEvent &aEvent)
~DESIGN_BLOCK_PREVIEW_WIDGET()=default
DESIGN_BLOCK_PREVIEW_WIDGET(wxWindow *aParent)
Construct a design block preview widget.
virtual void SetStatusText(const wxString &aText)=0
Set the contents of the status label and display it.
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
Holds all the data relating to one schematic.
Definition: schematic.h:69
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:47