lib/ewl_spacer.h
Go to the documentation of this file.00001 /* vim: set sw=8 ts=8 sts=8 expandtab: */ 00002 #ifndef EWL_SPACER_H 00003 #define EWL_SPACER_H 00004 00027 #define EWL_SPACER_TYPE "spacer" 00028 00033 #define EWL_SPACER_IS(w) (ewl_widget_type_is(EWL_WIDGET(w), EWL_SPACER_TYPE)) 00034 00038 typedef struct Ewl_Spacer Ewl_Spacer; 00039 00043 struct Ewl_Spacer 00044 { 00045 Ewl_Widget widget; 00046 }; 00047 00052 #define EWL_SPACER(spacer) ((Ewl_Spacer *) spacer) 00053 00054 Ewl_Widget *ewl_spacer_new(void); 00055 int ewl_spacer_init(Ewl_Spacer *s); 00056 00061 #endif