mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-03 00:26:43 +00:00
67 lines
1.8 KiB
C++
67 lines
1.8 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef DESIGN_BLOCK_PREVIEW_WIDGET_H
|
|
#define DESIGN_BLOCK_PREVIEW_WIDGET_H
|
|
|
|
#include <wx/panel.h>
|
|
#include <kiway.h>
|
|
#include <gal_display_options_common.h>
|
|
#include <class_draw_panel_gal.h>
|
|
|
|
|
|
class LIB_ID;
|
|
class DESIGN_BLOCK;
|
|
class SCHEMATIC;
|
|
class SCH_SHEET;
|
|
class wxStaticText;
|
|
class wxSizer;
|
|
|
|
|
|
class DESIGN_BLOCK_PREVIEW_WIDGET : public wxPanel
|
|
{
|
|
public:
|
|
/**
|
|
* Construct a design block preview widget.
|
|
*
|
|
* @param aParent - parent window
|
|
*/
|
|
DESIGN_BLOCK_PREVIEW_WIDGET( wxWindow* aParent ) : wxPanel( aParent ) {}
|
|
~DESIGN_BLOCK_PREVIEW_WIDGET() = default;
|
|
|
|
|
|
/**
|
|
* Set the contents of the status label and display it.
|
|
*/
|
|
virtual void SetStatusText( const wxString& aText ) = 0;
|
|
|
|
/**
|
|
* Set the currently displayed design block.
|
|
*/
|
|
virtual void DisplayDesignBlock( DESIGN_BLOCK* aDesignBlock ) = 0;
|
|
|
|
protected:
|
|
void onSize( wxSizeEvent& aEvent );
|
|
|
|
void fitOnDrawArea(); // set the view scale to fit the item on screen and center
|
|
};
|
|
|
|
|
|
#endif // DESIGN_BLOCK_PREVIEW_WIDGET_H
|