Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef SETTING_GUI_H
00013 #define SETTING_GUI_H
00014
00015 #include "gfx_type.h"
00016
00017 static const int SETTING_BUTTON_WIDTH = 20;
00018 static const int SETTING_BUTTON_HEIGHT = 10;
00019
00020 void DrawArrowButtons(int x, int y, Colours button_colour, byte state, bool clickable_left, bool clickable_right);
00021 void DrawDropDownButton(int x, int y, Colours button_colour, bool state, bool clickable);
00022 void DrawBoolButton(int x, int y, bool state, bool clickable);
00023
00024 #endif
00025