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/
Segment.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 SEGMENT_H |
adelino | 1:a74e42cf52b2 | 2 | #define SEGMENT_H |
adelino | 1:a74e42cf52b2 | 3 | |
adelino | 1:a74e42cf52b2 | 4 | #include "Screen.h" |
adelino | 1:a74e42cf52b2 | 5 | |
adelino | 1:a74e42cf52b2 | 6 | class Segment: public Widget |
adelino | 1:a74e42cf52b2 | 7 | { |
adelino | 1:a74e42cf52b2 | 8 | public: |
adelino | 1:a74e42cf52b2 | 9 | /** Construct a Segment |
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 _x1 first point |
adelino | 1:a74e42cf52b2 | 14 | * @params _y1 |
adelino | 1:a74e42cf52b2 | 15 | * @params _x2 second point |
adelino | 1:a74e42cf52b2 | 16 | * @params _y2 |
adelino | 1:a74e42cf52b2 | 17 | * @params _color |
adelino | 1:a74e42cf52b2 | 18 | * @params _isVisible |
adelino | 1:a74e42cf52b2 | 19 | */ |
adelino | 1:a74e42cf52b2 | 20 | Segment(Screen* mScreen,UINT16 _x1,UINT16 _y1,UINT16 _x2,UINT16 _y2,Color _color); |
adelino | 1:a74e42cf52b2 | 21 | // |
adelino | 1:a74e42cf52b2 | 22 | virtual void draw(void); |
adelino | 1:a74e42cf52b2 | 23 | // |
adelino | 1:a74e42cf52b2 | 24 | virtual ~Segment(void); |
adelino | 1:a74e42cf52b2 | 25 | // |
adelino | 1:a74e42cf52b2 | 26 | void setInvisible(bool _state); |
adelino | 1:a74e42cf52b2 | 27 | // |
adelino | 1:a74e42cf52b2 | 28 | void setNewCoord(UINT16 _x1,UINT16 _y1,UINT16 _x2,UINT16 _y2); |
adelino | 1:a74e42cf52b2 | 29 | |
adelino | 1:a74e42cf52b2 | 30 | protected: |
adelino | 1:a74e42cf52b2 | 31 | UINT16 myX1; |
adelino | 1:a74e42cf52b2 | 32 | UINT16 myY1; |
adelino | 1:a74e42cf52b2 | 33 | UINT16 myX2; |
adelino | 1:a74e42cf52b2 | 34 | UINT16 myY2; |
adelino | 1:a74e42cf52b2 | 35 | }; |
adelino | 1:a74e42cf52b2 | 36 | |
adelino | 1:a74e42cf52b2 | 37 | #endif |