KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pcb_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 PCB_DESIGN_BLOCK_PREVIEW_WIDGET_H
21#define PCB_DESIGN_BLOCK_PREVIEW_WIDGET_H
22
23#include <wx/panel.h>
25#include <kiway.h>
28
29
30class LIB_ID;
31class DESIGN_BLOCK;
32class SCHEMATIC;
33class PCB_SHEET;
34class wxStaticText;
35class wxSizer;
36
37
39{
40public:
46 PCB_DESIGN_BLOCK_PREVIEW_WIDGET( wxWindow* aParent, PCB_EDIT_FRAME* aFrame );
47
49
53 void SetStatusText( const wxString& aText ) override;
54
58 void DisplayDesignBlock( DESIGN_BLOCK* aDesignBlock ) override;
59
60protected:
61 void onSize( wxSizeEvent& aEvent );
62
63 void fitOnDrawArea(); // set the view scale to fit the item on screen and center
64
67
68 wxStaticText* m_status;
69 wxPanel* m_statusPanel;
70 wxSizer* m_statusSizer;
71 wxSizer* m_outerSizer;
72
74
77};
78
79
80#endif
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
BOX2I m_itemBBox
The bounding box of the current item.
void SetStatusText(const wxString &aText) override
Set the contents of the status label and display it.
void DisplayDesignBlock(DESIGN_BLOCK *aDesignBlock) override
Set the currently displayed symbol.
The main frame for Pcbnew.
Holds all the data relating to one schematic.
Definition: schematic.h:69