KiCad PCB EDA Suite
Loading...
Searching...
No Matches
wx_panel.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) 2018, 2021 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef WX_PANEL_H
25#define WX_PANEL_H
26
27#include <wx/panel.h>
28#include <gal/color4d.h>
29
30class WX_PANEL : public wxPanel
31{
32public:
33 WX_PANEL( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxSize( -1,-1 ), long style = wxTAB_TRAVERSAL,
35 const wxString& name = wxEmptyString );
36
37 ~WX_PANEL();
38
39 void SetBorders( bool aLeft, bool aRight, bool aTop, bool aBottom )
40 {
41 m_leftBorder = aLeft;
42 m_rightBorder = aRight;
43 m_topBorder = aTop;
44 m_bottomBorder = aBottom;
45 }
46
47 void SetBorderColor( const KIGFX::COLOR4D& aColor )
48 {
49 m_borderColor = aColor;
50 }
51
52private:
53 void OnPaint( wxPaintEvent& event );
54
55private:
60
62};
63
64
65#endif //WX_PANEL_H
const char * name
Definition: DXF_plotter.cpp:57
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
void SetBorders(bool aLeft, bool aRight, bool aTop, bool aBottom)
Definition: wx_panel.h:39
bool m_topBorder
Definition: wx_panel.h:58
bool m_rightBorder
Definition: wx_panel.h:57
~WX_PANEL()
Definition: wx_panel.cpp:41
bool m_leftBorder
Definition: wx_panel.h:56
bool m_bottomBorder
Definition: wx_panel.h:59
void SetBorderColor(const KIGFX::COLOR4D &aColor)
Definition: wx_panel.h:47
void OnPaint(wxPaintEvent &event)
Definition: wx_panel.cpp:47
KIGFX::COLOR4D m_borderColor
Definition: wx_panel.h:61