My Project
 
Loading...
Searching...
No Matches
wndchallenges.h
Go to the documentation of this file.
1#pragma once
2
3#include "window.h"
4#include "checkboxred.h"
5class WndChallenges :public Window{
6private:
7 static const int WIDTH = 108;
8 static const int TTL_HEIGHT = 12;
9 static const int BTN_HEIGHT = 18;
10 static const int GAP = 1;
11
12 static const std::string TITLE;
13
14 bool editable;
15 std::vector<CheckBoxRed*> boxes;
16
17public:
18 WndChallenges(int checked, bool editable);
19
20 virtual void onBackPressed();
21};
Window()
Definition window.cpp:47
virtual void onBackPressed()
Definition wndchallenges.cpp:43
WndChallenges(int checked, bool editable)
Definition wndchallenges.cpp:9