dwidget.h

Go to the documentation of this file.
00001 
00041 #ifndef DT_DWIDGET_H
00042 #define DT_DWIDGET_H
00043 
00044 #include <dt/dnotifier.h>
00045 #include <cfg/compiler.h>
00046 
00048 typedef uint8_t dpos_t;
00049 
00051 typedef iptr_t dcontext_t;
00052 
00054 typedef struct DWidget
00055 {
00056     DNotifier notifier;
00057 
00058     dpos_t pos;
00059     dpos_t size;
00060     dcontext_t *context;
00061 } DWidget;
00062 
00063 
00064 void widget_init(DWidget *w, dpos_t pos, dpos_t size, dcontext_t *context);
00065 
00066 #endif