aboutsummaryrefslogtreecommitdiffstats
path: root/src/appearance-prefs.h
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-05-10 17:53:38 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-05-10 17:53:38 +0800
commit38f165dfad2c29b25f93efce2a29b1ea771615e8 (patch)
tree8b0160686bc36600db975b038ccc41b0b46c169f /src/appearance-prefs.h
parentd5b2112c4a55235afdd91d15146a1a623eb5bec6 (diff)
downloadgsoc2013-epiphany-38f165dfad2c29b25f93efce2a29b1ea771615e8.tar
gsoc2013-epiphany-38f165dfad2c29b25f93efce2a29b1ea771615e8.tar.gz
gsoc2013-epiphany-38f165dfad2c29b25f93efce2a29b1ea771615e8.tar.bz2
gsoc2013-epiphany-38f165dfad2c29b25f93efce2a29b1ea771615e8.tar.lz
gsoc2013-epiphany-38f165dfad2c29b25f93efce2a29b1ea771615e8.tar.xz
gsoc2013-epiphany-38f165dfad2c29b25f93efce2a29b1ea771615e8.tar.zst
gsoc2013-epiphany-38f165dfad2c29b25f93efce2a29b1ea771615e8.zip
Rework prefs dialog ui a bit. Remove jumpto and tabbed_popups prefs
2003-05-10 Marco Pesenti Gritti <marco@it.gnome.org> * data/epiphany.schemas.in: * data/glade/prefs-dialog.glade: * lib/ephy-prefs.h: * src/Makefile.am: * src/ephy-shell.c: (ephy_shell_new_window_cb): * src/ephy-tab.c: (ephy_tab_new_window_cb): * src/prefs-dialog.c: (prefs_dialog_get_type), (prefs_dialog_new), (prefs_dialog_show_help), (setup_font_menu), (save_font_menu), (font_entry_changed_cb), (attach_font_signal), (attach_fonts_signals), (size_spinbutton_changed_cb), (attach_size_controls_signals), (setup_size_control), (setup_size_controls), (setup_fonts), (default_charset_menu_changed_cb), (find_charset_in_list_cmp), (create_default_charset_menu), (general_prefs_new_language_menu), (language_menu_changed_cb), (create_language_menu), (set_homepage_entry), (prefs_dialog_init), (prefs_dialog_response_cb), (prefs_clear_disk_cache_button_clicked_cb), (fonts_language_optionmenu_changed_cb), (prefs_homepage_current_button_clicked_cb), (prefs_homepage_blank_button_clicked_cb), (fill_language_editor), (language_dialog_changed_cb), (prefs_language_more_button_clicked_cb): * src/prefs-dialog.h: * src/window-commands.c: (window_cmd_edit_prefs): Rework prefs dialog ui a bit. Remove jumpto and tabbed_popups prefs (jumpto is still in the schemas. Remove the crazy page by page separation in the code.
Diffstat (limited to 'src/appearance-prefs.h')
-rw-r--r--src/appearance-prefs.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/appearance-prefs.h b/src/appearance-prefs.h
deleted file mode 100644
index 17067b7e9..000000000
--- a/src/appearance-prefs.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * Copyright (C) 2002 Marco Pesenti Gritti
- *
- * 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 APPEARANCE_PREFS_H
-#define APPEARANCE_PREFS_H
-
-#include "ephy-dialog.h"
-
-#include <glib-object.h>
-#include <glib.h>
-
-G_BEGIN_DECLS
-
-typedef struct AppearancePrefs AppearancePrefs;
-typedef struct AppearancePrefsClass AppearancePrefsClass;
-
-#define appearance_PREFS_TYPE (appearance_prefs_get_type ())
-#define appearance_PREFS(obj) (GTK_CHECK_CAST ((obj), appearance_PREFS_TYPE, AppearancePrefs))
-#define appearance_PREFS_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), appearance_PREFS, AppearancePrefsClass))
-#define IS_appearance_PREFS(obj) (GTK_CHECK_TYPE ((obj), appearance_PREFS_TYPE))
-#define IS_appearance_PREFS_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), appearance_PREFS))
-
-typedef struct AppearancePrefsPrivate AppearancePrefsPrivate;
-
-struct AppearancePrefs
-{
- EphyDialog parent;
- AppearancePrefsPrivate *priv;
-};
-
-struct AppearancePrefsClass
-{
- EphyDialogClass parent_class;
-};
-
-GType appearance_prefs_get_type (void);
-
-EphyDialog *appearance_prefs_new (void);
-
-G_END_DECLS
-
-#endif
-