aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/main.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-02-25 08:26:34 +0800
committernobody <nobody@localhost>1999-02-25 08:26:34 +0800
commit61c2c42f9a6901a6ed4eaf71f428482db6a77a41 (patch)
tree981129c6988a90055c0d9e9891686cdb17101c78 /calendar/main.h
parent6c9ae3c49097e3e589381aeb76d10ae0a0f9d663 (diff)
downloadgsoc2013-evolution-61c2c42f9a6901a6ed4eaf71f428482db6a77a41.tar
gsoc2013-evolution-61c2c42f9a6901a6ed4eaf71f428482db6a77a41.tar.gz
gsoc2013-evolution-61c2c42f9a6901a6ed4eaf71f428482db6a77a41.tar.bz2
gsoc2013-evolution-61c2c42f9a6901a6ed4eaf71f428482db6a77a41.tar.lz
gsoc2013-evolution-61c2c42f9a6901a6ed4eaf71f428482db6a77a41.tar.xz
gsoc2013-evolution-61c2c42f9a6901a6ed4eaf71f428482db6a77a41.tar.zst
gsoc2013-evolution-61c2c42f9a6901a6ed4eaf71f428482db6a77a41.zip
This commit was manufactured by cvs2svn to create tagGNOME_NETWORK_1_0_PRE
'GNOME_NETWORK_1_0_PRE'. svn path=/tags/GNOME_NETWORK_1_0_PRE/; revision=699
Diffstat (limited to 'calendar/main.h')
-rw-r--r--calendar/main.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/calendar/main.h b/calendar/main.h
deleted file mode 100644
index 476349f3aa..0000000000
--- a/calendar/main.h
+++ /dev/null
@@ -1,61 +0,0 @@
-#ifndef MAIN_H
-#define MAIN_H
-
-/* Calendar preferences */
-
-extern int day_begin, day_end;
-extern char *user_name;
-extern int am_pm_flag;
-extern int week_starts_on_monday;
-
-/* This enum and the following array define the color preferences */
-
-typedef enum {
- COLOR_PROP_OUTLINE_COLOR, /* Color of calendar outline */
- COLOR_PROP_HEADING_COLOR, /* Color for headings */
- COLOR_PROP_EMPTY_DAY_BG, /* Background color for empty days */
- COLOR_PROP_MARK_DAY_BG, /* Background color for days with appointments */
- COLOR_PROP_PRELIGHT_DAY_BG, /* Background color for prelighted day */
- COLOR_PROP_DAY_FG, /* Color for day numbers */
- COLOR_PROP_CURRENT_DAY_FG, /* Color for current day's number */
- COLOR_PROP_LAST /* Number of color properties */
-} ColorProp;
-
-struct color_prop {
- int r; /* Values are in [0, 65535] */
- int g;
- int b;
- char *label; /* Label for properties dialog */
- char *key; /* Key for gnome_config */
-};
-
-extern struct color_prop color_props[];
-
-/* Creates and runs the preferences dialog box */
-void properties (GtkWidget *toplevel);
-
-/* Asks for all the time-related displays to be updated when the user changes the time format
- * preferences.
- */
-void time_format_changed (void);
-
-/* Asks for all the month items' colors to be reset */
-void colors_changed (void);
-
-/* Creates and runs the Go-to date dialog */
-void goto_dialog (GnomeCalendar *gcal);
-
-/* Returns a pointer to a statically-allocated string with a representation of the specified color.
- * Values must be in [0, 65535].
- */
-char *build_color_spec (int r, int g, int b);
-
-/* Parses a color specification of the form "#%04x%04x%04x" and returns the color components. */
-void parse_color_spec (char *spec, int *r, int *g, int *b);
-
-/* Calls build_color_spec() for the color in the specified property number */
-char *color_spec_from_prop (ColorProp propnum);
-
-void save_default_calendar (GnomeCalendar *gcal);
-
-#endif