summaryrefslogtreecommitdiff
path: root/components/services/nautilus-dependent-shared/eazel-services-extensions.h
blob: 2316896812d0b2a695f6536b49610f4b96724ad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

/* eazel-services-extensions.h - Extensions to Nautilus and gtk widget.

   Copyright (C) 2000 Eazel, Inc.

   The Gnome Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public License as
   published by the Free Software Foundation; either version 2 of the
   License, or (at your option) any later version.

   The Gnome Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.

   Authors: Ramiro Estrugo <ramiro@eazel.com>
*/

#ifndef EAZEL_SERVICES_EXTENSIONS_H
#define EAZEL_SERVICES_EXTENSIONS_H

#include <libgnome/gnome-defs.h>
#include <libnautilus-extensions/nautilus-gdk-extensions.h>
#include <libnautilus-extensions/nautilus-gdk-pixbuf-extensions.h>
#include <libnautilus-extensions/nautilus-glib-extensions.h>
#include <libnautilus-extensions/nautilus-gtk-extensions.h>

#define EAZEL_SERVICES_BACKGROUND_COLOR_STRING		"white"
#define EAZEL_SERVICES_BACKGROUND_COLOR_RGBA		NAUTILUS_RGB_COLOR_WHITE
#define EAZEL_SERVICES_DROP_SHADOW_COLOR_RGBA		NAUTILUS_RGB_COLOR_BLACK
#define EAZEL_SERVICES_TEXT_COLOR_RGBA			NAUTILUS_RGB_COLOR_WHITE

#define EAZEL_SERVICES_LOGO_LEFT_SIDE_REPEAT_ICON	"eazel-logo-left-side-repeat.png"
#define EAZEL_SERVICES_LOGO_RIGHT_SIDE_ICON		"eazel-logo-right-side-logo.png"

#define EAZEL_SERVICES_NORMAL_FILL			"summary-service-normal-fill.png"
#define EAZEL_SERVICES_NORMAL_LEFT_BUMPER		"summary-service-normal-left-bumper.png"
#define EAZEL_SERVICES_NORMAL_RIGHT_BUMPER		"summary-service-normal-right-bumper.png"

#define EAZEL_SERVICES_PRELIGHT_FILL			"summary-service-prelight-fill.png"
#define EAZEL_SERVICES_PRELIGHT_LEFT_BUMPER		"summary-service-prelight-left-bumper.png"
#define EAZEL_SERVICES_PRELIGHT_RIGHT_BUMPER		"summary-service-prelight-right-bumper.png"

#define EAZEL_SERVICES_REMAINDER_LEFT_BUMPER		"summary-service-remainder-left-bumper.png"
#define EAZEL_SERVICES_REMAINDER_FILL			"summary-service-remainder-fill.png"
#define EAZEL_SERVICES_REMAINDER_RIGHT_BUMPER		"summary-service-remainder-right-bumper.png"

#define EAZEL_SERVICES_FONT_FAMILY			"helvetica"

/*
 * X_PADDING: Amount of extra horizontal pad to give each item.  The x padding
 * is divided evenly on the left/right margins of the item.
 *
 * Y_PADDING: Amount of extra vertical pad to give each item.  The y padding
 * is divided evenly on the top/bottom margins of the item.
 *
 * VERTICAL_OFFSET: Positive or negative amount to offset the item vertically.
 *
 * HORIZONTAL_OFFSET: Positive or negative amount to offset the item horizontally.
 */
#define EAZEL_SERVICES_FOOTER_FONT_SIZE			11
#define EAZEL_SERVICES_FOOTER_FONT_WEIGHT		"medium"

#define EAZEL_SERVICES_FOOTER_X_PADDING			2
#define EAZEL_SERVICES_FOOTER_Y_PADDING			0
#define EAZEL_SERVICES_FOOTER_VERTICAL_OFFSET		2
#define EAZEL_SERVICES_FOOTER_HORIZONTAL_OFFSET		0

#define EAZEL_SERVICES_FOOTER_DATE_X_PADDING		5
#define EAZEL_SERVICES_FOOTER_DATE_Y_PADDING		0
#define EAZEL_SERVICES_FOOTER_DATE_VERTICAL_OFFSET	2
#define EAZEL_SERVICES_FOOTER_DATE_HORIZONTAL_OFFSET	-5

#define EAZEL_SERVICES_HEADER_FONT_SIZE			18
#define EAZEL_SERVICES_HEADER_FONT_WEIGHT		"bold"
#define EAZEL_SERVICES_HEADER_X_PADDING			10
#define EAZEL_SERVICES_HEADER_Y_PADDING			0
#define EAZEL_SERVICES_HEADER_VERTICAL_OFFSET		4
#define EAZEL_SERVICES_HEADER_HORIZONTAL_OFFSET		0

BEGIN_GNOME_DECLS

GdkPixbuf *eazel_services_pixbuf_new              (const char *name);
GtkWidget *eazel_services_image_new               (const char *icon_name,
						   const char *tile_name,
						   guint32     background_color);
GtkWidget *eazel_services_label_new               (const char *text,
						   const char *weight,
						   guint       font_size,
						   gint        xpadding,
						   gint        ypadding,
						   guint       vertical_offset,
						   guint       horizontal_offset,
						   guint32     background_color,
						   const char *tile_name);
char *     eazel_services_get_current_date_string (void);

END_GNOME_DECLS

#endif /* EAZEL_SERVICES_EXTENSIONS_H */