~efargaspro/+junk/codeblocks-16.01-release

« back to all changes in this revision

Viewing changes to src/plugins/contrib/wxSmithContribItems/wxled/wxsLed.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
#ifndef WXSLED_H
 
2
#define WXSLED_H
 
3
 
 
4
#include "wxswidget.h"
 
5
 
 
6
 
 
7
class wxsLed : public wxsWidget
 
8
{
 
9
    public:
 
10
        wxsLed(wxsItemResData* Data);
 
11
        virtual ~wxsLed();
 
12
    protected:
 
13
 
 
14
        void      OnBuildCreatingCode();
 
15
        wxObject* OnBuildPreview(wxWindow* Parent,long Flags);
 
16
        void      OnEnumWidgetProperties(long Flags);
 
17
 
 
18
        wxsColourData   m_Disable;
 
19
        wxsColourData   m_EnableOn;
 
20
        wxsColourData   m_EnableOff;
 
21
        bool m_State;
 
22
 
 
23
    private:
 
24
};
 
25
 
 
26
#endif // WXSLED_H