KiCad PCB EDA Suite
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
29class WX_PANEL : public wxPanel
30{
31public:
32 WX_PANEL( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxSize( -1,-1 ), long style = wxTAB_TRAVERSAL,
34 const wxString& name = wxEmptyString );
35
36 ~WX_PANEL();
37
38 void SetBorders( bool aLeft, bool aRight, bool aTop, bool aBottom )
39 {
40 m_leftBorder = aLeft;
41 m_rightBorder = aRight;
42 m_topBorder = aTop;
43 m_bottomBorder = aBottom;
44 }
45
46private:
47 void OnPaint( wxPaintEvent& event );
48
49private:
54};
55
56
57#endif //WX_PANEL_H
const char * name
Definition: DXF_plotter.cpp:56
void SetBorders(bool aLeft, bool aRight, bool aTop, bool aBottom)
Definition: wx_panel.h:38
bool m_topBorder
Definition: wx_panel.h:52
bool m_rightBorder
Definition: wx_panel.h:51
~WX_PANEL()
Definition: wx_panel.cpp:41
bool m_leftBorder
Definition: wx_panel.h:50
bool m_bottomBorder
Definition: wx_panel.h:53
WX_PANEL(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
Definition: wx_panel.cpp:29
void OnPaint(wxPaintEvent &event)
Definition: wx_panel.cpp:47