lib/ewl_base.h
Go to the documentation of this file.00001 /* vim: set sw=8 ts=8 sts=8 expandtab: */ 00002 /* 00003 * Header that wraps the core widget functionality includes to insure they are 00004 * included in the proper order. 00005 */ 00006 #ifndef EWL_BASE_H 00007 #define EWL_BASE_H 00008 00009 #include <Ecore.h> 00010 #include <Ecore_Data.h> 00011 00012 /* typedef to allow inclusion of ewl_filelist.h */ 00013 /* and ewl_filelist_model.h on Windows */ 00014 #ifdef _WIN32 00015 typedef unsigned long uid_t; 00016 typedef unsigned long gid_t; 00017 #endif /* _WIN32 */ 00018 00019 #include <ewl_enums.h> 00020 #include <ewl_object.h> 00021 #include <ewl_widget.h> 00022 #include <ewl_attach.h> 00023 #include <ewl_container.h> 00024 #include <ewl_callback.h> 00025 #include <ewl_events.h> 00026 #include <ewl_misc.h> 00027 #include <ewl_config.h> 00028 #include <ewl_theme.h> 00029 #include <ewl_cell.h> 00030 #include <ewl_embed.h> 00031 #include <ewl_window.h> 00032 #include <ewl_engines.h> 00033 #include <ewl_cursor.h> 00034 #include <ewl_dnd.h> 00035 00036 #endif /* EWL_BASE_H */