00001 /* THIS IS A GENERATED FILE, DO NOT EDIT!!! */ 00023 #include <assert.h> 00024 #include "gui_factory_friend_gen.h" 00025 00030 typedef struct gui_factory_private_st_ { 00032 const gui_factory_vtable_st *vtable; 00033 } gui_factory_private_st; 00034 00046 static void 00047 gui_factory_delete_internal (gui_factory_handle gui_factory_h, 00048 bool free_gui_factory_h) 00049 { 00050 if (NULL == gui_factory_h) { 00051 return; 00052 } 00053 00054 if (NULL != gui_factory_h->private_h) { 00055 free(gui_factory_h->private_h); 00056 gui_factory_h->private_h = NULL; 00057 } 00058 00059 if (free_gui_factory_h) { 00060 free(gui_factory_h); 00061 } 00062 } 00063 00074 void 00075 gui_factory_friend_delete (gui_factory_handle gui_factory_h) 00076 { 00077 gui_factory_delete_internal(gui_factory_h, false); 00078 } 00079 00086 button_handle 00087 gui_factory_create_button (gui_factory_handle gui_factory_h) 00088 { 00089 assert((NULL != gui_factory_h) && 00090 (NULL != gui_factory_h->private_h) && 00091 (NULL != gui_factory_h->private_h->vtable) && 00092 (NULL != gui_factory_h->private_h->vtable->create_button_fn)); 00093 00094 return (gui_factory_h->private_h->vtable->create_button_fn(gui_factory_h)); 00095 } 00096 00103 void 00104 gui_factory_delete (gui_factory_handle gui_factory_h) 00105 { 00106 assert((NULL != gui_factory_h) && 00107 (NULL != gui_factory_h->private_h) && 00108 (NULL != gui_factory_h->private_h->vtable) && 00109 (NULL != gui_factory_h->private_h->vtable->delete_fn)); 00110 00111 return (gui_factory_h->private_h->vtable->delete_fn(gui_factory_h)); 00112 } 00113 00118 static const gui_factory_vtable_st gui_factory_vtable = { 00119 NULL, 00120 NULL 00121 }; 00122 00133 static bool 00134 gui_factory_inherit_vtable (const gui_factory_vtable_st *parent_vtable, 00135 gui_factory_vtable_st *child_vtable, 00136 bool do_null_check) 00137 { 00138 if ((NULL == parent_vtable) || (NULL == child_vtable)) { 00139 return (false); 00140 } 00141 00142 if (NULL == child_vtable->create_button_fn) { 00143 child_vtable->create_button_fn = parent_vtable->create_button_fn; 00144 if (do_null_check && (NULL == child_vtable->create_button_fn)) { 00145 return (false); 00146 } 00147 } 00148 00149 if (NULL == child_vtable->delete_fn) { 00150 child_vtable->delete_fn = parent_vtable->delete_fn; 00151 if (do_null_check && (NULL == child_vtable->delete_fn)) { 00152 return (false); 00153 } 00154 } 00155 00156 return (true); 00157 } 00158 00168 bool 00169 gui_factory_set_vtable (gui_factory_handle gui_factory_h, 00170 gui_factory_vtable_st *vtable) 00171 { 00172 bool rc; 00173 00174 if (((NULL == gui_factory_h) || (NULL == vtable) || 00175 (NULL == gui_factory_h->private_h))) { 00176 return (false); 00177 } 00178 00179 rc = gui_factory_inherit_vtable(&gui_factory_vtable, vtable, true); 00180 00181 if (rc) { 00182 gui_factory_h->private_h->vtable = vtable; 00183 } 00184 00185 return (rc); 00186 } 00187 00199 bool 00200 gui_factory_init (gui_factory_handle gui_factory_h) 00201 { 00202 if (NULL == gui_factory_h) { 00203 return (false); 00204 } 00205 00206 gui_factory_h->private_h = calloc(1, sizeof(*gui_factory_h->private_h)); 00207 if (NULL == gui_factory_h->private_h) { 00208 goto err_exit; 00209 } 00210 00211 gui_factory_h->private_h->vtable = NULL; 00212 00213 return (true); 00214 00215 err_exit: 00216 00217 if (NULL != gui_factory_h->private_h) { 00218 free(gui_factory_h->private_h); 00219 gui_factory_h->private_h = NULL; 00220 } 00221 00222 return (false); 00223 }