1 /*
2 * state_button.h
3 * DIN Is Noise is copyright (c) 2006-2021 Jagannathan Sampath
4 * For more information, please visit http://dinisnoise.org/
5 */
6 #ifndef __state_button
7 #define __state_button
8 #include "checkbutton.h"
9 struct state_button : checkbutton {
10 	static const int SIZE = 8;
11 	static const int SIZE2 = 2 * SIZE;
12 	state_button (int sz = SIZE) {set_size (sz);}
drawstate_button13 	void draw () {draw_bbox ();}
14 };
15 #endif
16