diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-11-19 09:39:19 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-11-19 09:39:19 +0800 |
commit | b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab (patch) | |
tree | 854d94e177216f4f6f2b2e9f2c150b7ec5d32e3d /calendar/modules | |
parent | c3471bfaaad0a94b6f05b678c1eacbc55e72e2dc (diff) | |
download | gsoc2013-evolution-b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab.tar gsoc2013-evolution-b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab.tar.gz gsoc2013-evolution-b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab.tar.bz2 gsoc2013-evolution-b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab.tar.lz gsoc2013-evolution-b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab.tar.xz gsoc2013-evolution-b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab.tar.zst gsoc2013-evolution-b06cdfab92313ca7b1ce9a88ccb0ffba33cb17ab.zip |
Progress update:
- Tighter integration of GalViewInstance and EShellView.
- EBinding. Stolen from ExoBinding. Lets you bind GObject properties
together to automatically keep their values in sync. This is a godsend.
Added to e-util, but might even deserve a place in libedataserver.
- EShellSettings. This is the concept I blogged about. Already
started ripping apart em-mailer-prefs.c. Others to follow. Any
place where we're monitoring GConf keys is a target.
- Incremental progress on the calender and mailer. Got EMFolderView
somewhat working, but I think I'll be killing off EMFolderBrowser.
svn path=/branches/kill-bonobo/; revision=36795
Diffstat (limited to 'calendar/modules')
-rw-r--r-- | calendar/modules/e-cal-shell-content.c | 26 | ||||
-rw-r--r-- | calendar/modules/e-memo-shell-content.c | 25 | ||||
-rw-r--r-- | calendar/modules/e-task-shell-content.c | 25 |
3 files changed, 4 insertions, 72 deletions
diff --git a/calendar/modules/e-cal-shell-content.c b/calendar/modules/e-cal-shell-content.c index 8356b2e679..80b989f64d 100644 --- a/calendar/modules/e-cal-shell-content.c +++ b/calendar/modules/e-cal-shell-content.c @@ -81,24 +81,10 @@ typedef enum { static gpointer parent_class; static void -cal_shell_content_changed_cb (ECalShellContent *cal_shell_content, - GalViewInstance *view_instance) -{ - EShellView *shell_view; - EShellContent *shell_content; - gchar *view_id; - - shell_content = E_SHELL_CONTENT (cal_shell_content); - shell_view = e_shell_content_get_shell_view (shell_content); - view_id = gal_view_instance_get_current_view_id (view_instance); - e_shell_view_set_view_id (shell_view, view_id); - g_free (view_id); -} - -static void cal_shell_content_display_view_cb (ECalShellContent *cal_shell_content, GalView *gal_view) { + /* FIXME */ } static void @@ -343,10 +329,8 @@ cal_shell_content_constructed (GObject *object) EShellModule *shell_module; EShellView *shell_view; EShellWindow *shell_window; - EShellViewClass *shell_view_class; EShellContent *foreign_content; EShellView *foreign_view; - GalViewCollection *view_collection; GalViewInstance *view_instance; GConfBridge *bridge; GtkWidget *container; @@ -365,8 +349,6 @@ cal_shell_content_constructed (GObject *object) shell_content = E_SHELL_CONTENT (object); shell_view = e_shell_content_get_shell_view (shell_content); shell_window = e_shell_view_get_shell_window (shell_view); - shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view); - view_collection = shell_view_class->view_collection; shell_module = e_shell_view_get_shell_module (shell_view); config_dir = e_shell_module_get_config_dir (shell_module); @@ -557,11 +539,7 @@ cal_shell_content_constructed (GObject *object) /* Load the view instance. */ - view_instance = gal_view_instance_new (view_collection, NULL); - g_signal_connect_swapped ( - view_instance, "changed", - G_CALLBACK (cal_shell_content_changed_cb), - object); + view_instance = e_shell_view_new_view_instance (shell_view, NULL); g_signal_connect_swapped ( view_instance, "display-view", G_CALLBACK (cal_shell_content_display_view_cb), diff --git a/calendar/modules/e-memo-shell-content.c b/calendar/modules/e-memo-shell-content.c index f3d0d5bcbd..82495f836b 100644 --- a/calendar/modules/e-memo-shell-content.c +++ b/calendar/modules/e-memo-shell-content.c @@ -75,21 +75,6 @@ static GtkTargetEntry drag_types[] = { static gpointer parent_class; static void -memo_shell_content_changed_cb (EMemoShellContent *memo_shell_content, - GalViewInstance *view_instance) -{ - EShellView *shell_view; - EShellContent *shell_content; - gchar *view_id; - - shell_content = E_SHELL_CONTENT (memo_shell_content); - shell_view = e_shell_content_get_shell_view (shell_content); - view_id = gal_view_instance_get_current_view_id (view_instance); - e_shell_view_set_view_id (shell_view, view_id); - g_free (view_id); -} - -static void memo_shell_content_display_view_cb (EMemoShellContent *memo_shell_content, GalView *gal_view) { @@ -309,8 +294,6 @@ memo_shell_content_constructed (GObject *object) EMemoShellContentPrivate *priv; EShellContent *shell_content; EShellView *shell_view; - EShellViewClass *shell_view_class; - GalViewCollection *view_collection; GalViewInstance *view_instance; ETable *table; GConfBridge *bridge; @@ -325,8 +308,6 @@ memo_shell_content_constructed (GObject *object) shell_content = E_SHELL_CONTENT (object); shell_view = e_shell_content_get_shell_view (shell_content); - shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view); - view_collection = shell_view_class->view_collection; /* Build content widgets. */ @@ -405,11 +386,7 @@ memo_shell_content_constructed (GObject *object) /* Load the view instance. */ - view_instance = gal_view_instance_new (view_collection, NULL); - g_signal_connect_swapped ( - view_instance, "changed", - G_CALLBACK (memo_shell_content_changed_cb), - object); + view_instance = e_shell_view_new_view_instance (shell_view, NULL); g_signal_connect_swapped ( view_instance, "display-view", G_CALLBACK (memo_shell_content_display_view_cb), diff --git a/calendar/modules/e-task-shell-content.c b/calendar/modules/e-task-shell-content.c index dec1760151..febd0c9ef2 100644 --- a/calendar/modules/e-task-shell-content.c +++ b/calendar/modules/e-task-shell-content.c @@ -76,21 +76,6 @@ static GtkTargetEntry drag_types[] = { static gpointer parent_class; static void -task_shell_content_changed_cb (ETaskShellContent *task_shell_content, - GalViewInstance *view_instance) -{ - EShellView *shell_view; - EShellContent *shell_content; - gchar *view_id; - - shell_content = E_SHELL_CONTENT (task_shell_content); - shell_view = e_shell_content_get_shell_view (shell_content); - view_id = gal_view_instance_get_current_view_id (view_instance); - e_shell_view_set_view_id (shell_view, view_id); - g_free (view_id); -} - -static void task_shell_content_display_view_cb (ETaskShellContent *task_shell_content, GalView *gal_view) { @@ -308,8 +293,6 @@ task_shell_content_constructed (GObject *object) ETaskShellContentPrivate *priv; EShellContent *shell_content; EShellView *shell_view; - EShellViewClass *shell_view_class; - GalViewCollection *view_collection; GalViewInstance *view_instance; ETable *table; GConfBridge *bridge; @@ -324,8 +307,6 @@ task_shell_content_constructed (GObject *object) shell_content = E_SHELL_CONTENT (object); shell_view = e_shell_content_get_shell_view (shell_content); - shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view); - view_collection = shell_view_class->view_collection; /* Build content widgets. */ @@ -404,11 +385,7 @@ task_shell_content_constructed (GObject *object) /* Load the view instance. */ - view_instance = gal_view_instance_new (view_collection, NULL); - g_signal_connect_swapped ( - view_instance, "changed", - G_CALLBACK (task_shell_content_changed_cb), - object); + view_instance = e_shell_view_new_view_instance (shell_view, NULL); g_signal_connect_swapped ( view_instance, "display-view", G_CALLBACK (task_shell_content_display_view_cb), |