GlistEngine
Loading...
Searching...
No Matches
gGUISwitchButton.h
Go to the documentation of this file.
1/****************************************************************************
2 * Copyright (c) 2014 Nitra Games Ltd., Istanbul, Turkey *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice should not be *
13 * deleted from the source form of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
28
29/****************************************************************************
30 * Author: Noyan Culum, 2022-07-18 *
31 ****************************************************************************/
32/*
33 * gGUISwitchButton.h
34 *
35 * Created on: 18 Tem 2022
36 * Author: noyan
37 */
38
39#ifndef UI_GGUISWITCHBUTTON_H_
40#define UI_GGUISWITCHBUTTON_H_
41
42#include "gGUIControl.h"
43
50public:
53
54 void draw();
55 void mousePressed(int x, int y, int button);
56
62 bool isOn();
63
64 friend class gGUIToolbar;
65
66private:
67 int togglew, toggleh;
68 bool ison;
69 bool isdisabled;
70};
71
72#endif /* UI_GGUISWITCHBUTTON_H_ */
Definition gGUIControl.h:29
Definition gGUISwitchButton.h:49
void mousePressed(int x, int y, int button)
virtual ~gGUISwitchButton()
Definition gGUIToolbar.h:27