KiCad PCB EDA Suite
Loading...
Searching...
No Matches
wx_bitmap_combobox.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 The 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, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef WX_BITMAP_COMBOBOX_H
21#define WX_BITMAP_COMBOBOX_H
22
23#include <wx/bmpcbox.h>
24
25class WX_BITMAP_COMBOBOX : public wxBitmapComboBox
26{
27public:
28 WX_BITMAP_COMBOBOX( wxWindow *parent, wxWindowID id = wxID_ANY, const wxString& value = wxEmptyString,
29 const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
30 int n = 0, const wxString choices[] = NULL, long style = 0,
31 const wxValidator& validator = wxDefaultValidator,
32 const wxString& name = wxASCII_STR( wxBitmapComboBoxNameStr ) );
33
34 wxSize DoGetBestSize() const override;
35};
36
37
38#endif //WX_BITMAP_COMBOBOX_H
const char * name
wxSize DoGetBestSize() const override
WX_BITMAP_COMBOBOX(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &value=wxEmptyString, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, int n=0, const wxString choices[]=NULL, long style=0, const wxValidator &validator=wxDefaultValidator, const wxString &name=wxASCII_STR(wxBitmapComboBoxNameStr))
#define wxASCII_STR(s)
Definition util.cpp:37