X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=dt%2Feditbool.h;fp=dt%2Feditbool.h;h=0000000000000000000000000000000000000000;hb=791e167e053bdd9250d34a9a5ccae6ccde4d6679;hp=360484a5b9c643e61d3d81e353af197cfd59054f;hpb=faf2f6bfd5933ff75e6cc01e3d48f9277f731d8f;p=bertos.git diff --git a/dt/editbool.h b/dt/editbool.h deleted file mode 100644 index 360484a5..00000000 --- a/dt/editbool.h +++ /dev/null @@ -1,76 +0,0 @@ -/** - * \file - * - * - * \version $Id$ - * - * \brief Edit bool widget (interface). - * - * \version $Id$ - * \author Francesco Sacchi - */ - -/*#* - *#* $Log$ - *#* Revision 1.2 2006/07/19 12:56:26 bernie - *#* Convert to new Doxygen style. - *#* - *#* Revision 1.1 2005/11/04 18:26:38 bernie - *#* Import into DevLib. - *#* - *#* Revision 1.2 2005/06/06 11:04:12 batt - *#* Add some comments. - *#* - *#* Revision 1.1 2005/05/31 11:11:37 batt - *#* Edit bool: first release. - *#* - *#*/ - -#ifndef DT_EDITBOOL_H -#define DT_EDITBOOL_H - -#include
-#include
- -typedef struct DEditBool -{ - DWidget widget; - bool *value; - const char *true_string; - const char *false_string; - void (*draw)(struct DEditBool *); -} DEditBool; - -void editbool_init(DEditBool *e, dpos_t pos, dpos_t size, dcontext_t *context, bool *val, const char *true_str, const char *false_str); -void editbool_update(DEditBool *e, dtag_t tag, dval_t val); -void editbool_draw(DEditBool *e); - - -#endif