KiCad PCB EDA Suite
Loading...
Searching...
No Matches
painter.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) 2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright (C) 2013 CERN
6 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * @author Tomasz Wlostowski <[email protected]>
9 * @author Maciej Suminski <[email protected]>
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 */
24
25#ifndef __CLASS_PAINTER_H
26#define __CLASS_PAINTER_H
27
28#include <map>
29#include <set>
30
31#include <wx/dc.h>
32
33#include <gal/gal.h>
34#include <gal/color4d.h>
35#include <render_settings.h>
36#include <layer_ids.h>
37#include <memory>
38
39namespace KIGFX
40{
41class GAL;
42class VIEW_ITEM;
43
55{
56public:
64 PAINTER( GAL* aGal );
65 virtual ~PAINTER();
66
72 void SetGAL( GAL* aGal )
73 {
74 m_gal = aGal;
75 }
76
83
93 virtual bool Draw( const VIEW_ITEM* aItem, int aLayer ) = 0;
94
95protected:
99};
100
101} // namespace KIGFX
102
103#endif /* __CLASS_PAINTER_H */
Abstract interface for drawing on a 2D-surface.
GAL * m_gal
Instance of graphic abstraction layer that gives an interface to call commands used to draw (eg.
Definition painter.h:98
void SetGAL(GAL *aGal)
Changes Graphics Abstraction Layer used for drawing items for a new one.
Definition painter.h:72
virtual bool Draw(const VIEW_ITEM *aItem, int aLayer)=0
Takes an instance of VIEW_ITEM and passes it to a function that knows how to draw the item.
virtual RENDER_SETTINGS * GetSettings()=0
Return a pointer to current settings that are going to be used when drawing items.
PAINTER(GAL *aGal)
Initialize this object for painting on any of the polymorphic GRAPHICS_ABSTRACTION_LAYER* derivatives...
Definition painter.cpp:29
Container for all the knowledge about how graphical objects are drawn on any output surface/device.
An abstract base class for deriving all objects that can be added to a VIEW.
Definition view_item.h:82
#define GAL_API
Definition gal.h:27
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:29