diff options
author | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-19 10:55:45 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-08-19 10:55:45 +0800 |
commit | 035744f29bdea64cfb38f2e507020d5914cd666e (patch) | |
tree | 98f062db0de5a09700524fe219d0a377f30a706a /shell/test/e-test-shell-view.c | |
parent | 4187293731274274e4283d9039f6e30c95578118 (diff) | |
download | gsoc2013-evolution-035744f29bdea64cfb38f2e507020d5914cd666e.tar.gz gsoc2013-evolution-035744f29bdea64cfb38f2e507020d5914cd666e.tar.zst gsoc2013-evolution-035744f29bdea64cfb38f2e507020d5914cd666e.zip |
Committing the day's progress.
Realized the "New" menu construction algorithm needs to live independently of
shell view instances since we lazy load the shell views but have to display
all possible "New" items immediately.
Prototype the mechanisms for managing the various shell views and keeping
track of which one is current.
Various other tightening up and rethinking of APIs.
svn path=/branches/kill-bonobo/; revision=36022
Diffstat (limited to 'shell/test/e-test-shell-view.c')
-rw-r--r-- | shell/test/e-test-shell-view.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/shell/test/e-test-shell-view.c b/shell/test/e-test-shell-view.c index 7b2ff9a251..c76d459160 100644 --- a/shell/test/e-test-shell-view.c +++ b/shell/test/e-test-shell-view.c @@ -34,7 +34,8 @@ GType e_test_shell_view_type = 0; static gpointer parent_class; static void -test_shell_view_class_init (ETestShellViewClass *class) +test_shell_view_class_init (ETestShellViewClass *class, + GTypeModule *module) { EShellViewClass *shell_view_class; @@ -44,6 +45,7 @@ test_shell_view_class_init (ETestShellViewClass *class) shell_view_class = E_SHELL_VIEW_CLASS (class); shell_view_class->label = N_("Test"); shell_view_class->icon_name = "face-monkey"; + shell_view_class->module = module; } static void @@ -62,11 +64,11 @@ e_test_shell_view_get_type (GTypeModule *module) (GBaseFinalizeFunc) NULL, (GClassInitFunc) test_shell_view_class_init, (GClassFinalizeFunc) NULL, - NULL, /* class_data */ + module, /* class_data */ sizeof (ETestShellView), - 0, /* n_preallocs */ + 0, /* n_preallocs */ (GInstanceInitFunc) test_shell_view_init, - NULL /* value_table */ + NULL /* value_table */ }; e_test_shell_view_type = |