111 lines
3.1 KiB
C++
111 lines
3.1 KiB
C++
#ifndef __SCH_DRAW_PANEL_H
|
|
#define __SCH_DRAW_PANEL_H
|
|
|
|
#include <class_draw_panel_gal.h>
|
|
#include <base_struct.h>
|
|
#include <gr_basic.h>
|
|
#include <eda_rect.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
|
|
namespace KIGFX
|
|
{
|
|
class SCH_VIEW;
|
|
namespace PREVIEW
|
|
{
|
|
class SELECTION_AREA;
|
|
};
|
|
};
|
|
|
|
class SCH_SHEET;
|
|
class LIB_PART;
|
|
class BASE_SCREEN;
|
|
class SCH_SCREEN;
|
|
class COLORS_DESIGN_SETTINGS;
|
|
class SCH_EDIT_FRAME;
|
|
|
|
|
|
class SCH_DRAW_PANEL : public EDA_DRAW_PANEL, public EDA_DRAW_PANEL_GAL
|
|
{
|
|
public:
|
|
SCH_DRAW_PANEL( wxWindow* aParentWindow, wxWindowID aWindowId, const wxPoint& aPosition,
|
|
const wxSize& aSize, KIGFX::GAL_DISPLAY_OPTIONS& aOptions,
|
|
GAL_TYPE aGalType = GAL_TYPE_OPENGL );
|
|
|
|
~SCH_DRAW_PANEL();
|
|
|
|
virtual wxWindow* GetWindow() override { return this; }
|
|
|
|
/**
|
|
* Function DisplayBoard FIXME
|
|
* adds all items from the current board to the VIEW, so they can be displayed by GAL.
|
|
* @param aBoard is the PCB to be loaded.
|
|
*/
|
|
void DisplayComponent( const LIB_PART *aComponent );
|
|
void DisplaySheet( const SCH_SHEET *aSheet );
|
|
void DisplaySheet( const SCH_SCREEN *aScreen );
|
|
|
|
/**
|
|
* Function UseColorScheme
|
|
* Applies layer color settings.
|
|
* @param aSettings are the new settings.
|
|
*/
|
|
void UseColorScheme( const COLORS_DESIGN_SETTINGS* aSettings );
|
|
|
|
///> @copydoc EDA_DRAW_PANEL_GAL::OnShow()
|
|
void OnShow() override;
|
|
|
|
bool SwitchBackend( GAL_TYPE aGalType ) override;
|
|
void OnMouseEvent( wxMouseEvent& event );
|
|
bool OnRightClick( wxMouseEvent& event );
|
|
void OnKeyEvent( wxKeyEvent& event );
|
|
void OnCharHook( wxKeyEvent& event );
|
|
void OnTimer( wxTimerEvent& event );
|
|
|
|
void SetEnableMousewheelPan( bool aEnable ) override;
|
|
void SetEnableZoomNoCenter( bool aEnable ) override;
|
|
void SetEnableAutoPan( bool aEnable ) override;
|
|
void SetAutoPanRequest( bool aEnable ) override;
|
|
|
|
BASE_SCREEN* GetScreen() override;
|
|
virtual EDA_DRAW_FRAME* GetParent() const override;
|
|
|
|
virtual void CallMouseCapture( wxDC* aDC, const wxPoint& aPosition, bool aErase ) override;
|
|
virtual void CallEndMouseCapture( wxDC* aDC ) override;
|
|
virtual void EndMouseCapture( int aId = -1, int aCursorId = -1,
|
|
const wxString& aTitle = wxEmptyString,
|
|
bool aCallEndFunc = true ) override;
|
|
|
|
virtual void CrossHairOff( wxDC* DC=nullptr ) override;
|
|
|
|
// Show the cross hair.
|
|
virtual void CrossHairOn( wxDC* DC=nullptr ) override;
|
|
|
|
virtual void MoveCursorToCrossHair() override;
|
|
|
|
KIGFX::SCH_VIEW* GetView() const { return view(); }
|
|
|
|
/// @copydoc wxWindow::Refresh()
|
|
void Refresh( bool aEraseBackground = true, const wxRect* aRect = NULL ) override;
|
|
|
|
|
|
protected:
|
|
|
|
virtual void onPaint( wxPaintEvent& WXUNUSED( aEvent ) ) override;
|
|
|
|
KIGFX::SCH_VIEW* view() const;
|
|
|
|
///> Reassigns layer order to the initial settings.
|
|
void setDefaultLayerOrder();
|
|
|
|
///> Sets rendering targets & dependencies for layers.
|
|
void setDefaultLayerDeps();
|
|
|
|
wxWindow* m_parent;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|