Library for 3.2'' uLcd Picaso Display4D system Picaso Serial Environment Command Set web: http://www.4dsystems.com.au/product/20/67/Processors_Graphics/PICASO/
Switcher.h@1:a74e42cf52b2, 2015-04-05 (annotated)
- Committer:
- adelino
- Date:
- Sun Apr 05 13:54:48 2015 +0000
- Revision:
- 1:a74e42cf52b2
PicasoLib version 2
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
adelino | 1:a74e42cf52b2 | 1 | #ifndef SWITCHER_H |
adelino | 1:a74e42cf52b2 | 2 | #define SWITCHER_H |
adelino | 1:a74e42cf52b2 | 3 | |
adelino | 1:a74e42cf52b2 | 4 | #include "Screen.h" |
adelino | 1:a74e42cf52b2 | 5 | |
adelino | 1:a74e42cf52b2 | 6 | class Switcher:public Widget |
adelino | 1:a74e42cf52b2 | 7 | { |
adelino | 1:a74e42cf52b2 | 8 | public: |
adelino | 1:a74e42cf52b2 | 9 | /** Construct a Switch |
adelino | 1:a74e42cf52b2 | 10 | * |
adelino | 1:a74e42cf52b2 | 11 | * @param mScreen the pointer screen |
adelino | 1:a74e42cf52b2 | 12 | * @param _id the identifier Id |
adelino | 1:a74e42cf52b2 | 13 | * @params _x up left |
adelino | 1:a74e42cf52b2 | 14 | * @params _y up left |
adelino | 1:a74e42cf52b2 | 15 | * @params _width |
adelino | 1:a74e42cf52b2 | 16 | * @params _height |
adelino | 1:a74e42cf52b2 | 17 | */ |
adelino | 1:a74e42cf52b2 | 18 | Switcher(Screen* mScreen,UINT16 _id,UINT16 _x,UINT16 _y,UINT16 _width,UINT16 _height); |
adelino | 1:a74e42cf52b2 | 19 | // |
adelino | 1:a74e42cf52b2 | 20 | virtual void draw(void); |
adelino | 1:a74e42cf52b2 | 21 | // |
adelino | 1:a74e42cf52b2 | 22 | virtual ~Switcher(void); |
adelino | 1:a74e42cf52b2 | 23 | // |
adelino | 1:a74e42cf52b2 | 24 | void setInvisible(bool _state); |
adelino | 1:a74e42cf52b2 | 25 | // |
adelino | 1:a74e42cf52b2 | 26 | void setState(State _state); |
adelino | 1:a74e42cf52b2 | 27 | // |
adelino | 1:a74e42cf52b2 | 28 | void changeState(GraphicMessage* msg); |
adelino | 1:a74e42cf52b2 | 29 | |
adelino | 1:a74e42cf52b2 | 30 | protected: |
adelino | 1:a74e42cf52b2 | 31 | Color myColorOn; |
adelino | 1:a74e42cf52b2 | 32 | Color myColorOff; |
adelino | 1:a74e42cf52b2 | 33 | Color myColorCursor; |
adelino | 1:a74e42cf52b2 | 34 | }; |
adelino | 1:a74e42cf52b2 | 35 | |
adelino | 1:a74e42cf52b2 | 36 | #endif |