gen/button_gen.c
Go to the documentation of this file.
00001 /* THIS IS A GENERATED FILE, DO NOT EDIT!!! */
00023 #include <assert.h>
00024 #include "button_friend_gen.h"
00025 
00030 typedef struct button_private_st_ {
00032     const button_vtable_st *vtable;
00033 } button_private_st;
00034 
00046 static void
00047 button_delete_internal (button_handle button_h, 
00048     bool free_button_h)
00049 {
00050     if (NULL == button_h) {
00051         return;
00052     }
00053 
00054     if (NULL != button_h->private_h) {
00055         free(button_h->private_h);
00056         button_h->private_h = NULL;
00057     }
00058 
00059     if (free_button_h) {
00060         free(button_h);
00061     }
00062 }
00063 
00074 void
00075 button_friend_delete (button_handle button_h)
00076 {
00077     button_delete_internal(button_h, false);
00078 }
00079 
00086 void
00087 button_paint (button_handle button_h)
00088 {
00089     assert((NULL != button_h) &&
00090            (NULL != button_h->private_h) &&
00091            (NULL != button_h->private_h->vtable) &&
00092            (NULL != button_h->private_h->vtable->paint_fn));
00093 
00094     return (button_h->private_h->vtable->paint_fn(button_h));
00095 }
00096 
00103 void
00104 button_delete (button_handle button_h)
00105 {
00106     assert((NULL != button_h) &&
00107            (NULL != button_h->private_h) &&
00108            (NULL != button_h->private_h->vtable) &&
00109            (NULL != button_h->private_h->vtable->delete_fn));
00110 
00111     return (button_h->private_h->vtable->delete_fn(button_h));
00112 }
00113 
00118 static const button_vtable_st button_vtable = {
00119     NULL,
00120     NULL
00121 };
00122 
00133 static bool
00134 button_inherit_vtable (const button_vtable_st *parent_vtable,
00135     button_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->paint_fn) {
00143         child_vtable->paint_fn = parent_vtable->paint_fn;
00144         if (do_null_check && (NULL == child_vtable->paint_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 button_set_vtable (button_handle button_h, 
00170     button_vtable_st *vtable)
00171 {
00172     bool rc;
00173 
00174     if (((NULL == button_h) || (NULL == vtable) ||
00175          (NULL == button_h->private_h))) {
00176         return (false);
00177     }
00178     
00179     rc = button_inherit_vtable(&button_vtable, vtable, true);
00180 
00181     if (rc) {
00182         button_h->private_h->vtable = vtable;
00183     }
00184 
00185     return (rc);
00186 }
00187 
00199 bool
00200 button_init (button_handle button_h)
00201 {
00202     if (NULL == button_h) {
00203         return (false);
00204     }
00205 
00206     button_h->private_h = calloc(1, sizeof(*button_h->private_h));
00207     if (NULL == button_h->private_h) {
00208         goto err_exit;
00209     }
00210 
00211     button_h->private_h->vtable = NULL;
00212 
00213     return (true);
00214 
00215 err_exit:
00216 
00217     if (NULL != button_h->private_h) {
00218         free(button_h->private_h);
00219         button_h->private_h = NULL;
00220     }
00221 
00222     return (false);
00223 }
 All Classes Files Functions Variables Typedefs