6a2a2adb655fec2807983b42ac67dbacb7b2f1b5
Stefan Schuermans classes for format, size an...

Stefan Schuermans authored 12 years ago

1) /* Blinker
2)    Copyright 2011 Stefan Schuermans <stefan@blinkenarea.org>
3)    Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
4)    a blinkenarea.org project */
5) 
6) #ifndef POSITION_H
7) #define POSITION_H
8) 
9) #include <string>
10) 
11) namespace Blinker {
12) 
13) /// a Blinken frame position
14) class Position
15) {
16) public:
17)   /// constructor
18)   Position();
19) 
20) public:
21)   /**
22)    * @brief parse from string format
23)    * @param[in] str string format
24)    * @return if parsing was successful
25)    */
26)   bool fromStr(const std::string &str);
27) 
28)   /**
29)    * @brief convert to string format
30)    * @return string format
31)    */
32)   std::string toStr() const;
33) 
34) public:
Stefan Schuermans changed canvas to be able t...

Stefan Schuermans authored 12 years ago

35)   unsigned int m_x; ///< X coordinate within a frame (in pixels)
36)   unsigned int m_y; ///< Y ccordinate within a frame (in pixels)