aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell.h
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-05-23 04:49:13 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-05-23 04:49:13 +0800
commit2b9f864daf03aa8e130385f082a9b9072fdd4349 (patch)
tree7fb8a345a0382f00e5158dde55fb816baf8bd5f6 /shell/e-shell.h
parent3e2771669de2d3bd746704c62038771f734fed6b (diff)
downloadgsoc2013-evolution-2b9f864daf03aa8e130385f082a9b9072fdd4349.tar
gsoc2013-evolution-2b9f864daf03aa8e130385f082a9b9072fdd4349.tar.gz
gsoc2013-evolution-2b9f864daf03aa8e130385f082a9b9072fdd4349.tar.bz2
gsoc2013-evolution-2b9f864daf03aa8e130385f082a9b9072fdd4349.tar.lz
gsoc2013-evolution-2b9f864daf03aa8e130385f082a9b9072fdd4349.tar.xz
gsoc2013-evolution-2b9f864daf03aa8e130385f082a9b9072fdd4349.tar.zst
gsoc2013-evolution-2b9f864daf03aa8e130385f082a9b9072fdd4349.zip
New callback for when the first created view in the shell gets mapped.
* main.c (view_map_callback): New callback for when the first created view in the shell gets mapped. (new_view_created_callback): New callback for when the first view of the shell gets created. (show_development_warning): New function to display a warning about the fact that Evolution is unstable. (idle_cb): Call show_development_warning() here unless the EVOLVE_ME_HARDER environment variable is set. * e-shell.c (class_init): Add the "new_view_created" signal here. (create_view): Emit the signal here. * e-shell.h: New signal "new_view_created". svn path=/trunk/; revision=16977
Diffstat (limited to 'shell/e-shell.h')
-rw-r--r--shell/e-shell.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/e-shell.h b/shell/e-shell.h
index 119cb87b14..84ce5da551 100644
--- a/shell/e-shell.h
+++ b/shell/e-shell.h
@@ -80,6 +80,8 @@ struct _EShellClass {
void (* no_views_left) (EShell *shell);
void (* line_status_changed) (EShell *shell, EShellLineStatus status);
+ void (* new_view_created) (EShell *shell, EShellView *view);
+
};