summaryrefslogtreecommitdiff
path: root/libnautilus-extensions/nautilus-theme.h
blob: b885ac5740c446ccad042fe605d20c71756ecda9 (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-

   nautilus-theme.h: theme framework with xml-based theme definition files
 
   Copyright (C) 2000 Eazel, Inc.

   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 of the
   License, 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.
  
   Authors: Andy Hertzfeld <andy@eazel.com>
*/

#ifndef NAUTILUS_THEME_H
#define NAUTILUS_THEME_H


#include <glib.h>
#include <gdk-pixbuf/gdk-pixbuf.h>

/* get and set the current theme */
char		*nautilus_theme_get_theme(void);
void		 nautilus_theme_set_theme(const char *new_theme);

/* fetch data from the current theme */
char		*nautilus_theme_get_theme_data (const char *resource_name, const char *property_name);
/* given the current theme, get the path name of an image with the passed-in name */
char		*nautilus_theme_get_image_path (const char *image_name);
/* create a pixbuf to represent the theme */
GdkPixbuf	*nautilus_theme_make_selector (const char *theme_name);

#endif /* NAUTILUS_THEME_H */