diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-07-05 05:25:30 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-07-05 05:25:30 +0800 |
commit | dcb5ea4101ffdd79ff7849867f8c32426e88da7f (patch) | |
tree | 23683de8db80a5cfba3a779d45d2f0c4ccc10e68 /calendar/gui/dialogs/comp-editor-page.h | |
parent | 1e5fac65aa65ed25c18ead0a13552e5ec98ed53f (diff) | |
download | gsoc2013-evolution-dcb5ea4101ffdd79ff7849867f8c32426e88da7f.tar.gz gsoc2013-evolution-dcb5ea4101ffdd79ff7849867f8c32426e88da7f.tar.zst gsoc2013-evolution-dcb5ea4101ffdd79ff7849867f8c32426e88da7f.zip |
Fixes bug #4018 and what would be the analogous bugs for the other
2001-07-04 Federico Mena Quintero <federico@ximian.com>
Fixes bug #4018 and what would be the analogous bugs for the other
component editors.
* gui/dialogs/comp-editor-page.h (CompEditorPageClass): New
virtual method "::focus_main_widget()".
* gui/dialogs/comp-editor-page.c
(comp_editor_page_focus_main_widget): New function.
* gui/dialogs/comp-editor.c (comp_editor_append_page): If we are
inserting the main page, ask it to focus its main widget.
* gui/dialogs/alarm-page.c (alarm_page_focus_main_widget):
Implemented.
* gui/dialogs/event-page.c (event_page_focus_main_widget):
Implemented.
#include "e-util/e-categories-config.h".
* gui/dialogs/meeting-page.c (meeting_page_focus_main_widget):
Implemented.
* gui/dialogs/recurrence-page.c
(recurrence_page_focus_main_widget): Implemented.
* gui/dialogs/task-details-page.c
(task_details_page_focus_main_widget): Implemented.
* gui/dialogs/task-page.c (task_page_focus_main_widget):
Implemented.
svn path=/trunk/; revision=10784
Diffstat (limited to 'calendar/gui/dialogs/comp-editor-page.h')
-rw-r--r-- | calendar/gui/dialogs/comp-editor-page.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/comp-editor-page.h b/calendar/gui/dialogs/comp-editor-page.h index 08fe1d8508..6565d9888e 100644 --- a/calendar/gui/dialogs/comp-editor-page.h +++ b/calendar/gui/dialogs/comp-editor-page.h @@ -66,6 +66,7 @@ typedef struct { /* Virtual methods */ GtkWidget *(* get_widget) (CompEditorPage *page); + void (* focus_main_widget) (CompEditorPage *page); void (* fill_widgets) (CompEditorPage *page, CalComponent *comp); void (* fill_component) (CompEditorPage *page, CalComponent *comp); @@ -77,6 +78,7 @@ typedef struct { GtkType comp_editor_page_get_type (void); GtkWidget *comp_editor_page_get_widget (CompEditorPage *page); +void comp_editor_page_focus_main_widget (CompEditorPage *page); void comp_editor_page_fill_widgets (CompEditorPage *page, CalComponent *comp); void comp_editor_page_fill_component (CompEditorPage *page, |