Subversion Repositories DIN Is Noise

Rev

Rev 1858 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef __state_button
#define __state_button
#include "checkbutton.h"
struct state_button : checkbutton {
  static const int SIZE = 8;
  static const int SIZE2 = 2 * SIZE;
  state_button (int sz = SIZE) {set_size (sz);}
  void draw () {draw_bbox ();}
};
#endif