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
|
/* -*- 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_SPEC "white"
#define EAZEL_SERVICES_BACKGROUND_COLOR_RGB NAUTILUS_RGB_COLOR_WHITE
#define EAZEL_SERVICES_DROP_SHADOW_COLOR_RGB NAUTILUS_RGB_COLOR_BLACK
#define EAZEL_SERVICES_TITLE_TEXT_COLOR_RGB NAUTILUS_RGB_COLOR_WHITE
#define EAZEL_SERVICES_BODY_TEXT_COLOR_RGB NAUTILUS_RGB_COLOR_BLACK
#define EAZEL_SERVICES_HEADER_TITLE_FILL_ICON "eazel-logo-left-side-repeat.png"
#define EAZEL_SERVICES_HEADER_TITLE_LOGO_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_HEADER_MIDDLE_FILL_ICON "eazel-services-header-middle-fill.png"
#define EAZEL_SERVICES_HEADER_TEXT_SIZE_REL 4
/*
* The xalign, yalign, xpadding, and ypadding attribures work
* exactly as they do with GtkMisc.
*/
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_image_new_clickable (const char *icon_name,
const char *tile_name,
guint32 background_color);
GtkWidget *eazel_services_image_new_from_uri (const char *uri,
const char *tile_name,
guint32 background_color,
int max_width,
int max_height);
GtkWidget *eazel_services_label_new (const char *text,
guint drop_shadow_offset,
float xalign,
float yalign,
gint xpadding,
gint ypadding,
guint32 text_color,
guint32 background_color,
const char *tile_name,
gint num_larger_sizes,
gboolean bold);
GtkWidget *eazel_services_label_new_clickable (const char *text,
guint drop_shadow_offset,
float xalign,
float yalign,
gint xpadding,
gint ypadding,
guint32 text_color,
guint32 background_color,
const char *tile_name,
gint num_larger_sizes,
gboolean bold);
char * eazel_services_get_current_date_string (void);
END_GNOME_DECLS
#endif /* EAZEL_SERVICES_EXTENSIONS_H */
|