KiCad PCB EDA Suite
Loading...
Searching...
No Matches
render_3d_base.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 (C) 2015-2016 Mario Luzeiro <[email protected]>
5 * Copyright (C) 1992-2024 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
29#ifndef RENDER_3D_BASE_H
30#define RENDER_3D_BASE_H
31
32
33#include <pcb_base_frame.h>
35#include <reporter.h>
36
38
43{
44public:
45 explicit RENDER_3D_BASE( BOARD_ADAPTER& aBoardAdapter, CAMERA& aCamera );
46
47 virtual ~RENDER_3D_BASE() = 0;
48
55 virtual void SetCurWindowSize( const wxSize& aSize ) = 0;
56
64 virtual bool Redraw( bool aIsMoving, REPORTER* aStatusReporter = nullptr,
65 REPORTER* aWarningReporter = nullptr ) = 0;
66
71
78
85 virtual int GetWaitForEditingTimeOut() = 0;
86
94
95protected:
99 std::unique_ptr<BUSY_INDICATOR> CreateBusyIndicator() const;
100
103
105
108
111
114
121 static const wxChar* m_logTrace;
122
123private:
126};
127
128#endif // RENDER_3D_BASE_H
Helper class to handle information needed to display 3D board.
Definition: board_adapter.h:73
std::function< std::unique_ptr< BUSY_INDICATOR >()> FACTORY
A factory function that returns a new busy indicator.
A class used to derive camera objects from.
Definition: camera.h:103
This is a base class to hold data and functions for render targets.
CAMERA & m_camera
Flag if the canvas specific for this render was already initialized.
virtual bool Redraw(bool aIsMoving, REPORTER *aStatusReporter=nullptr, REPORTER *aWarningReporter=nullptr)=0
Redraw the view.
BUSY_INDICATOR::FACTORY m_busyIndicatorFactory
< Factory that returns a suitable busy indicator for the context.
std::unique_ptr< BUSY_INDICATOR > CreateBusyIndicator() const
Return a created busy indicator, if a factory has been set, else a null pointer.
virtual int GetWaitForEditingTimeOut()=0
Give the interface the time (in ms) that it should wait for editing or movements before (this works f...
void ReloadRequest()
bool m_reloadRequested
The window size that this camera is working.
virtual void SetCurWindowSize(const wxSize &aSize)=0
Before each render, the canvas will tell the render what is the size of its windows,...
virtual ~RENDER_3D_BASE()=0
BOARD_ADAPTER & m_boardAdapter
void SetBusyIndicatorFactory(BUSY_INDICATOR::FACTORY aNewFactory)
Set a new busy indicator factory.
bool IsReloadRequestPending() const
Query if there is a pending reload request.
A pure virtual class used to derive REPORTER objects from.
Definition: reporter.h:71
static const wxChar * m_logTrace
Trace mask used to enable or disable the trace output of this class.