diff options
author | Iain Holmes <iain@src.gnome.org> | 2000-10-26 07:03:33 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2000-10-26 07:03:33 +0800 |
commit | 20394851919f80269d11aa460e60f2bd1e46b7dc (patch) | |
tree | 6b3fc7cd84913f288434f58e5a4a9cb86604b073 /executive-summary/evolution-services/executive-summary-component.h | |
parent | 8ab09706d1ddaa55f1e76dc395fdee2104e4d105 (diff) | |
download | gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar.gz gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar.bz2 gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar.lz gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar.xz gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.tar.zst gsoc2013-evolution-20394851919f80269d11aa460e60f2bd1e46b7dc.zip |
Summary is back in :D
Fixed a silly size issue for composer file selectors.
svn path=/trunk/; revision=6187
Diffstat (limited to 'executive-summary/evolution-services/executive-summary-component.h')
-rw-r--r-- | executive-summary/evolution-services/executive-summary-component.h | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/executive-summary/evolution-services/executive-summary-component.h b/executive-summary/evolution-services/executive-summary-component.h index 3cf5dade19..7d5ab904cc 100644 --- a/executive-summary/evolution-services/executive-summary-component.h +++ b/executive-summary/evolution-services/executive-summary-component.h @@ -37,14 +37,10 @@ typedef struct _ExecutiveSummaryComponentPrivate ExecutiveSummaryComponentPrivat typedef struct _ExecutiveSummaryComponent ExecutiveSummaryComponent; typedef struct _ExecutiveSummaryComponentClass ExecutiveSummaryComponentClass; -typedef BonoboObject *(* EvolutionServicesCreateBonoboViewFn) (ExecutiveSummaryComponent *component, - char **title, - char **icon, - void *closure); -typedef char *(* EvolutionServicesCreateHtmlViewFn) (ExecutiveSummaryComponent *component, - char **title, - char **icon, - void *closure); +/* view is a ExecutiveSummaryComponentView * */ +typedef void (* EvolutionServicesCreateViewFn) (ExecutiveSummaryComponent *component, + gpointer view, + void *closure); typedef void (* EvolutionServicesConfigureFn) (ExecutiveSummaryComponent *component, void *closure); @@ -60,13 +56,18 @@ struct _ExecutiveSummaryComponentClass { GtkType executive_summary_component_get_type (void); -BonoboObject *executive_summary_component_new (EvolutionServicesCreateBonoboViewFn create_bonobo, - EvolutionServicesCreateHtmlViewFn create_html, +BonoboObject *executive_summary_component_new (EvolutionServicesCreateViewFn create_view, EvolutionServicesConfigureFn configure, void *closure); void executive_summary_component_set_title (ExecutiveSummaryComponent *component, - const char *title); -void executive_summary_component_flash (ExecutiveSummaryComponent *component); + gpointer view); +void executive_summary_component_set_icon (ExecutiveSummaryComponent *component, + gpointer view); + +void executive_summary_component_flash (ExecutiveSummaryComponent *component, + gpointer view); void executive_summary_component_update (ExecutiveSummaryComponent *component, - char *html); + gpointer view); +int executive_summary_component_create_unique_id (void); + #endif |