diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-09-25 00:16:20 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-09-25 00:16:20 +0800 |
commit | bfa2f69ce5eb69f46106e443d793a732215259a4 (patch) | |
tree | 651849342d64276cdf8d283ffd45f43ac9f22ceb /widgets/misc/test-dateedit.c | |
parent | 150fcadcd211229444910f2799212c27a247fa60 (diff) | |
download | gsoc2013-evolution-bfa2f69ce5eb69f46106e443d793a732215259a4.tar gsoc2013-evolution-bfa2f69ce5eb69f46106e443d793a732215259a4.tar.gz gsoc2013-evolution-bfa2f69ce5eb69f46106e443d793a732215259a4.tar.bz2 gsoc2013-evolution-bfa2f69ce5eb69f46106e443d793a732215259a4.tar.lz gsoc2013-evolution-bfa2f69ce5eb69f46106e443d793a732215259a4.tar.xz gsoc2013-evolution-bfa2f69ce5eb69f46106e443d793a732215259a4.tar.zst gsoc2013-evolution-bfa2f69ce5eb69f46106e443d793a732215259a4.zip |
use pixmaps instead of GtkArrows to look better. Also set the canvas
2000-09-23 Damon Chaplin <damon@helixcode.com>
* e-calendar.c: use pixmaps instead of GtkArrows to look better.
Also set the canvas window's background when realized so that we can
set the button reliefs to none.
2000-09-22 Damon Chaplin <damon@helixcode.com>
* test-dateedit.c: updated a bit, adding a few EDateEdits with
different options.
* e-calendar-item.c (e_calendar_item_set_selection): aborted any
current selection operation and initialize all of the selection fields.
(e_calendar_item_unmap): new function to abort any current selection
operation. Otherwise GnomeCanvas gets in a muddle about grabs.
* e-dateedit.c: marked some strftime()/strptime() format strings for
translation and used "%m/%d/%Y" instead of "%x" so we get the complete
year number. Also changed e_date_edit_get_time() so it returns -2 if
it can't parse the date or time, and -1 if it is explicitly set to
None.
(e_date_edit_parse_date): new function to parse the date string and
add on the current century if a year of 0-99 is entered.
2000-09-21 Damon Chaplin <damon@helixcode.com>
* e-dateedit.c (on_date_button_clicked): only check return of strptime
for NULL. It should now select the correct day set in the popup.
* e-calendar.c:
* e-calendar-item.c:
* test-calendar.c: removed support for buttons within the ECalendar.
It is cleaner to add them outside it, as EDateEdit does.
svn path=/trunk/; revision=5561
Diffstat (limited to 'widgets/misc/test-dateedit.c')
-rw-r--r-- | widgets/misc/test-dateedit.c | 55 |
1 files changed, 44 insertions, 11 deletions
diff --git a/widgets/misc/test-dateedit.c b/widgets/misc/test-dateedit.c index 12fb93ac88..e40b152039 100644 --- a/widgets/misc/test-dateedit.c +++ b/widgets/misc/test-dateedit.c @@ -45,42 +45,75 @@ main (int argc, char **argv) { GtkWidget *app; EDateEdit *dedit; - GtkWidget *vbox, *button; + GtkWidget *table, *button; gnome_init ("test-dateedit", "0.0", argc, argv); app = gnome_app_new ("Test", "Test"); - gtk_window_set_default_size (GTK_WINDOW (app), 400, 200); + gtk_window_set_default_size (GTK_WINDOW (app), 300, 200); gtk_window_set_policy (GTK_WINDOW (app), FALSE, TRUE, TRUE); gtk_container_set_border_width (GTK_CONTAINER (app), 8); gtk_signal_connect (GTK_OBJECT (app), "delete_event", GTK_SIGNAL_FUNC (delete_event_cb), NULL); + table = gtk_table_new (3, 2, FALSE); + gtk_table_set_row_spacings (GTK_TABLE (table), 4); + gtk_table_set_col_spacings (GTK_TABLE (table), 4); + gtk_widget_show (table); + gnome_app_set_contents (GNOME_APP (app), table); + + /* EDateEdit 1. */ dedit = E_DATE_EDIT (e_date_edit_new ()); + gtk_table_attach (GTK_TABLE (table), (GtkWidget*) dedit, + 0, 1, 0, 1, GTK_FILL, GTK_EXPAND, 0, 0); gtk_widget_show ((GtkWidget*) (dedit)); + button = gtk_button_new_with_label ("Print Date"); + gtk_table_attach (GTK_TABLE (table), button, + 1, 2, 0, 1, 0, 0, 0, 0); + gtk_widget_show (button); + gtk_signal_connect (GTK_OBJECT (button), "clicked", + GTK_SIGNAL_FUNC (on_get_date_clicked), dedit); + + /* EDateEdit 2. */ + dedit = E_DATE_EDIT (e_date_edit_new ()); + gtk_table_attach (GTK_TABLE (table), (GtkWidget*) dedit, + 0, 1, 1, 2, GTK_FILL, GTK_EXPAND, 0, 0); + gtk_widget_show ((GtkWidget*) (dedit)); e_date_edit_set_week_start_day (dedit, 1); e_date_edit_set_show_week_numbers (dedit, TRUE); e_date_edit_set_use_24_hour_format (dedit, FALSE); e_date_edit_set_time_popup_range (dedit, 8, 18); -#if 0 e_date_edit_set_show_time (dedit, FALSE); -#endif - vbox = gtk_vbox_new (FALSE, 0); - gtk_box_pack_start (GTK_BOX (vbox), (GtkWidget*) dedit, - FALSE, TRUE, 0); - gtk_widget_show (vbox); + button = gtk_button_new_with_label ("Print Date"); + gtk_table_attach (GTK_TABLE (table), button, + 1, 2, 1, 2, 0, 0, 0, 0); + gtk_widget_show (button); + gtk_signal_connect (GTK_OBJECT (button), "clicked", + GTK_SIGNAL_FUNC (on_get_date_clicked), dedit); - button = gtk_button_new_with_label ("Get Date"); - gtk_box_pack_end (GTK_BOX (vbox), button, FALSE, TRUE, 0); + /* EDateEdit 3. */ + dedit = E_DATE_EDIT (e_date_edit_new ()); + gtk_table_attach (GTK_TABLE (table), (GtkWidget*) dedit, + 0, 1, 2, 3, GTK_FILL, GTK_EXPAND, 0, 0); + gtk_widget_show ((GtkWidget*) (dedit)); + e_date_edit_set_week_start_day (dedit, 1); + e_date_edit_set_show_week_numbers (dedit, TRUE); + e_date_edit_set_use_24_hour_format (dedit, FALSE); + e_date_edit_set_time_popup_range (dedit, 8, 18); + e_date_edit_set_allow_no_date_set (dedit, TRUE); + + button = gtk_button_new_with_label ("Print Date"); + gtk_table_attach (GTK_TABLE (table), button, + 1, 2, 2, 3, 0, 0, 0, 0); gtk_widget_show (button); gtk_signal_connect (GTK_OBJECT (button), "clicked", GTK_SIGNAL_FUNC (on_get_date_clicked), dedit); - gnome_app_set_contents (GNOME_APP (app), vbox); + gtk_widget_show (app); gtk_main (); |