comment
This commit is contained in:
parent
7875a103b7
commit
34b7f7ddfc
1 changed files with 7 additions and 1 deletions
|
@ -29,7 +29,13 @@
|
||||||
/// Displays a arrow on a button
|
/// Displays a arrow on a button
|
||||||
class ArrowButton: public FbTk::Button {
|
class ArrowButton: public FbTk::Button {
|
||||||
public:
|
public:
|
||||||
enum Type { LEFT, RIGHT, UP, DOWN};
|
/// type of arrow that should be drawn
|
||||||
|
enum Type {
|
||||||
|
LEFT,
|
||||||
|
RIGHT,
|
||||||
|
UP,
|
||||||
|
DOWN
|
||||||
|
};
|
||||||
|
|
||||||
ArrowButton(ArrowButton::Type arrow_type, const FbTk::FbWindow &parent,
|
ArrowButton(ArrowButton::Type arrow_type, const FbTk::FbWindow &parent,
|
||||||
int x, int y,
|
int x, int y,
|
||||||
|
|
Loading…
Reference in a new issue