~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/plugins/contrib/wxSmith/wxwidgets/defitems/wxscombobox.h

  • Committer: damienlmoore at gmail
  • Date: 2016-02-02 02:43:22 UTC
  • Revision ID: damienlmoore@gmail.com-20160202024322-yql5qmtbwdyamdwd
Code::BlocksĀ 16.01

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/** \file wxscombobox.h
 
2
*
 
3
* This file is part of wxSmith plugin for Code::Blocks Studio
 
4
* Copyright (C) 2006-2007  Bartlomiej Swiecki
 
5
*
 
6
* wxSmith is free software; you can redistribute it and/or modify
 
7
* it under the terms of the GNU General Public License as published by
 
8
* the Free Software Foundation; either version 3 of the License, or
 
9
* (at your option) any later version.
 
10
*
 
11
* wxSmith 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 wxSmith. If not, see <http://www.gnu.org/licenses/>.
 
18
*
 
19
* $Revision: 7109 $
 
20
* $Id: wxscombobox.h 7109 2011-04-15 11:53:16Z mortenmacfly $
 
21
* $HeadURL: http://svn.code.sf.net/p/codeblocks/code/branches/release-16.xx/src/plugins/contrib/wxSmith/wxwidgets/defitems/wxscombobox.h $
 
22
*/
 
23
 
 
24
#ifndef WXSCOMBOBOX_H
 
25
#define WXSCOMBOBOX_H
 
26
 
 
27
#include "../wxswidget.h"
 
28
 
 
29
/** \brief Class for wxsComboBox widget */
 
30
class wxsComboBox: public wxsWidget
 
31
{
 
32
    public:
 
33
 
 
34
        wxsComboBox(wxsItemResData* Data);
 
35
 
 
36
    private:
 
37
 
 
38
        virtual void OnBuildCreatingCode();
 
39
        virtual wxObject* OnBuildPreview(wxWindow* Parent,long Flags);
 
40
        virtual void OnEnumWidgetProperties(long Flags);
 
41
 
 
42
 
 
43
        wxArrayString ArrayChoices;
 
44
        long DefaultSelection;
 
45
};
 
46
 
 
47
#endif