2006-11-13 Thomas Wood <thos@gnome.org> (gnome_theme_installer_run): Open transfer dialog with transient parent set * gnome-theme-details.c: (remove_theme), (color_select), (toggle_color_scheme_key), (gnome_theme_details_init), (update_color_buttons_from_string), (gnome_theme_details_update_from_gconf): * gnome-theme-installer.c: (gnome_theme_install_from_uri), * gnome-theme-installer.h: * gnome-theme-manager.c: (free_all), (gnome_theme_manager_drag_data_received_cb), (main): * gnome-theme-manager.h: * gnome-theme-save.c: (save_dialog_response): * theme-properties.glade: - Add a colours tab to change gtk-color-scheme setting
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
/* gnome-theme-installer.h
|
|
* Copyright (C) 2002 Jonathan Blandford
|
|
*
|
|
* Written by: Jonathan Blandford <jrb@gnome.org>
|
|
*
|
|
* 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 GNOME_THEME_INSTALLER_H
|
|
#define GNOME_THEME_INSTALLER_H
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
void gnome_theme_install_from_uri (gchar * filename, GtkWindow *parent);
|
|
|
|
void gnome_theme_installer_run (GtkWindow *parent, gchar *filename);
|
|
void gnome_theme_installer_run_cb (GtkWidget *button, GtkWindow *parent_window);
|
|
|
|
#endif /* GNOME_THEME_INSTALLER_H */
|