aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-folder-selector-button.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-05-21 05:59:27 +0800
committerChris Toshok <toshok@src.gnome.org>2002-05-21 05:59:27 +0800
commit09061834119ed7118b3ddb345c9257285376e02f (patch)
tree6ccf969e56a708e067e616aadd3fe99d11ef0964 /shell/evolution-folder-selector-button.h
parent9b2e9f2b20d848c3bb884f3d7203d1eef72ca8c9 (diff)
downloadgsoc2013-evolution-09061834119ed7118b3ddb345c9257285376e02f.tar
gsoc2013-evolution-09061834119ed7118b3ddb345c9257285376e02f.tar.gz
gsoc2013-evolution-09061834119ed7118b3ddb345c9257285376e02f.tar.bz2
gsoc2013-evolution-09061834119ed7118b3ddb345c9257285376e02f.tar.lz
gsoc2013-evolution-09061834119ed7118b3ddb345c9257285376e02f.tar.xz
gsoc2013-evolution-09061834119ed7118b3ddb345c9257285376e02f.tar.zst
gsoc2013-evolution-09061834119ed7118b3ddb345c9257285376e02f.zip
set the parent window insensitive before popping up the dialog and
2002-05-20 Chris Toshok <toshok@ximian.com> * evolution-folder-selector-button.c (clicked): set the parent window insensitive before popping up the dialog and sensitive after it's popped down, to give us semi-modal behavior. Also, emit a "popped_up" signal when popping up the dialog, and emit "canceled" when the return folder is NULL (when the user canceled the dialog). (class_init): fix typo (?) - parent type isn't bonobo_object_get_type(), it's PARENT_TYPE. Also, initialize the POPPED_UP and CANCELED signals. * evolution-folder-selector-button.h (struct _EvolutionFolderSelectorButtonClass): add popped_up and canceled signals. svn path=/trunk/; revision=16959
Diffstat (limited to 'shell/evolution-folder-selector-button.h')
-rw-r--r--shell/evolution-folder-selector-button.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/evolution-folder-selector-button.h b/shell/evolution-folder-selector-button.h
index d2918bd143..5f5e1115d1 100644
--- a/shell/evolution-folder-selector-button.h
+++ b/shell/evolution-folder-selector-button.h
@@ -52,7 +52,9 @@ struct _EvolutionFolderSelectorButtonClass {
GtkButtonClass parent_class;
/* signals */
+ void (*popped_up) (EvolutionFolderSelectorButton *button);
void (*selected) (EvolutionFolderSelectorButton *button, GNOME_Evolution_Folder *folder);
+ void (*canceled) (EvolutionFolderSelectorButton *button);
};