2000-09-09 23:21:28 +00:00
|
|
|
/* -*- mode: c; style: linux -*- */
|
|
|
|
|
|
|
|
/* preferences.h
|
|
|
|
* Copyright (C) 2000 Helix Code, Inc.
|
|
|
|
*
|
|
|
|
* Written by Bradford Hovinen <hovinen@helixcode.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PREFERENCES_H
|
|
|
|
#define __PREFERENCES_H
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
2001-09-08 00:42:11 +00:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2000-09-09 23:21:28 +00:00
|
|
|
|
2001-07-27 01:43:48 +00:00
|
|
|
#ifdef BONOBO_CONF_ENABLE
|
|
|
|
#include <bonobo-conf/bonobo-config-database.h>
|
|
|
|
#else
|
2000-09-09 23:21:28 +00:00
|
|
|
#include <tree.h>
|
2001-07-27 01:43:48 +00:00
|
|
|
#endif
|
2000-09-09 23:21:28 +00:00
|
|
|
|
|
|
|
#define PREFERENCES(obj) GTK_CHECK_CAST (obj, preferences_get_type (), Preferences)
|
|
|
|
#define PREFERENCES_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, preferences_get_type (), PreferencesClass)
|
|
|
|
#define IS_PREFERENCES(obj) GTK_CHECK_TYPE (obj, preferences_get_type ())
|
|
|
|
|
|
|
|
typedef struct _Preferences Preferences;
|
|
|
|
typedef struct _PreferencesClass PreferencesClass;
|
|
|
|
|
2001-07-27 01:43:48 +00:00
|
|
|
typedef enum _orientation_t {
|
2001-07-27 02:49:48 +00:00
|
|
|
ORIENTATION_SOLID, ORIENTATION_HORIZ, ORIENTATION_VERT
|
2001-07-27 01:43:48 +00:00
|
|
|
} orientation_t;
|
|
|
|
|
|
|
|
typedef enum _wallpaper_type_t {
|
|
|
|
WPTYPE_TILED, WPTYPE_CENTERED, WPTYPE_SCALED_ASPECT,
|
|
|
|
WPTYPE_SCALED, WPTYPE_EMBOSSED
|
|
|
|
} wallpaper_type_t;
|
|
|
|
|
2000-09-09 23:21:28 +00:00
|
|
|
struct _Preferences
|
|
|
|
{
|
|
|
|
GtkObject object;
|
|
|
|
|
2001-04-25 01:00:46 +00:00
|
|
|
gint frozen;
|
2000-12-17 21:44:20 +00:00
|
|
|
gboolean auto_apply;
|
2000-09-09 23:21:28 +00:00
|
|
|
guint timeout_id;
|
|
|
|
|
|
|
|
gboolean enabled;
|
|
|
|
gboolean gradient_enabled;
|
|
|
|
gboolean wallpaper_enabled;
|
|
|
|
orientation_t orientation;
|
|
|
|
wallpaper_type_t wallpaper_type;
|
|
|
|
|
|
|
|
GdkColor *color1;
|
|
|
|
GdkColor *color2;
|
|
|
|
|
|
|
|
gchar *wallpaper_filename;
|
|
|
|
gchar *wallpaper_sel_path;
|
2000-12-18 00:34:29 +00:00
|
|
|
|
2001-03-13 03:16:08 +00:00
|
|
|
GSList *wallpapers;
|
2000-12-26 19:41:33 +00:00
|
|
|
|
2000-12-18 15:09:36 +00:00
|
|
|
gboolean adjust_opacity;
|
|
|
|
gint opacity;
|
2000-09-09 23:21:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _PreferencesClass
|
|
|
|
{
|
|
|
|
GtkObjectClass klass;
|
|
|
|
};
|
|
|
|
|
2001-09-14 13:36:50 +00:00
|
|
|
guint preferences_get_type (void);
|
2000-09-09 23:21:28 +00:00
|
|
|
|
2001-09-14 13:36:50 +00:00
|
|
|
GtkObject *preferences_new (void);
|
|
|
|
GtkObject *preferences_clone (const Preferences *prefs);
|
2001-07-27 01:43:48 +00:00
|
|
|
|
2001-09-14 13:36:50 +00:00
|
|
|
gboolean preferences_need_color_opts (Preferences *prefs,
|
2001-09-08 00:42:11 +00:00
|
|
|
GdkPixbuf *wallpaper_pixbuf);
|
|
|
|
|
2001-09-14 13:36:50 +00:00
|
|
|
GtkObject *preferences_new_from_bonobo_pbag (Bonobo_PropertyBag pb,
|
|
|
|
CORBA_Environment *ev);
|
|
|
|
GtkObject *preferences_new_from_bonobo_db (Bonobo_ConfigDatabase db,
|
|
|
|
CORBA_Environment *ev);
|
2001-08-28 13:01:54 +00:00
|
|
|
void preferences_load_from_bonobo_pbag (Preferences *prefs,
|
|
|
|
Bonobo_ConfigDatabase db,
|
|
|
|
CORBA_Environment *ev);
|
2001-09-14 13:36:50 +00:00
|
|
|
void preferences_load_from_bonobo_db (Preferences *prefs,
|
|
|
|
Bonobo_ConfigDatabase db,
|
|
|
|
CORBA_Environment *ev);
|
2000-09-09 23:21:28 +00:00
|
|
|
|
2001-09-14 13:36:50 +00:00
|
|
|
void preferences_apply_event (Preferences *prefs,
|
|
|
|
const gchar *event_name,
|
|
|
|
const CORBA_any *value);
|
2000-09-09 23:21:28 +00:00
|
|
|
|
|
|
|
#endif /* __PREFERENCES_H */
|