blob: 6f22f946f9e32a74154d3afe3541519387147b66 (
plain) (
tree)
|
|
#ifndef MAIN_H
#define MAIN_H
/* Global preferences */
extern int day_begin, day_end;
extern char *user_name;
extern int am_pm_flag;
extern int week_starts_on_monday;
/* Creates and runs the preferences dialog box */
void properties (void);
/* Asks for all the time-related displays to be updated when the user changes the time format
* preferences.
*/
void time_format_changed (void);
/* Creates and runs the Go-to date dialog */
void goto_dialog (GnomeCalendar *gcal);
#endif
|