2004-11-10 Mark McLoughlin <mark@skynet.ie> * control-center-categories.[ch]: re-write to use libgnome-menu to load the contents of the preferences menu. * control-center.c: (relayout_canvas), (get_x), (get_y), (get_entry), (get_line_length): update for control-center-categories.[ch] changes. (activate_entry): load the .desktop file and launch. (create_window), (main): remove all nautilus and bonobo stuff. * gnome-control-center.png: rename from control-center2.png. * gnomecc.desktop.in: update for new icon name. * GNOME_ControlCenter.server.in: remove, we're not a Nautilus view anymore. * active.png, bcg_top.png, bg.png, bgtop.png, blank.png, ccsplash.png, empty.png, foot.png, gnome-lockscreen.png, gnome-unlockscreen.png, gnomecc-ui.xml, html-view.xpm, kill-gnomecc.sh, left.png, left_top.png, title.png, tree-view.xpm: Remove what seems to be a big bunch of cruft. * Makefile.am: remove cruft, install new icon, don't link aganst libnautilus.
73 lines
2 KiB
C
73 lines
2 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
/*
|
|
* Copyright (C) 2004 Red Hat, Inc.
|
|
* Copyright (C) 2000, 2001 Ximian, Inc.
|
|
* Copyright (C) 1998 Red Hat Software, Inc.
|
|
*
|
|
* Written by Mark McLoughlin <mark@skynet.ie>
|
|
* Bradford Hovinen <hovinen@ximian.com>,
|
|
* Jonathan Blandford <jrb@redhat.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 __CONTROL_CENTER_CATEGORIES_H__
|
|
#define __CONTROL_CENTER_CATEGORIES_H__
|
|
|
|
#include <glib.h>
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct ControlCenterEntry ControlCenterEntry;
|
|
typedef struct ControlCenterCategory ControlCenterCategory;
|
|
typedef struct ControlCenterInformation ControlCenterInformation;
|
|
|
|
struct ControlCenterEntry {
|
|
ControlCenterCategory *category;
|
|
|
|
char *title;
|
|
char *comment;
|
|
char *desktop_entry;
|
|
|
|
GdkPixbuf *icon_pixbuf;
|
|
|
|
gpointer user_data;
|
|
};
|
|
|
|
struct ControlCenterCategory {
|
|
ControlCenterEntry **entries;
|
|
int n_entries;
|
|
|
|
char *title;
|
|
|
|
gpointer user_data;
|
|
|
|
guint real_category : 1;
|
|
};
|
|
|
|
struct ControlCenterInformation {
|
|
ControlCenterCategory **categories;
|
|
int n_categories;
|
|
};
|
|
|
|
ControlCenterInformation *control_center_get_information (void);
|
|
void control_center_information_free (ControlCenterInformation *information);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CONTROL_CENTER_CATEGORIES_H__ */
|