diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/egg/egg-editable-toolbar.h | 2 | ||||
-rwxr-xr-x | lib/egg/egg-toolbar-editor.h | 2 | ||||
-rwxr-xr-x | lib/egg/egg-toolbars-model.h | 2 | ||||
-rw-r--r-- | lib/ephy-debug.h | 2 | ||||
-rw-r--r-- | lib/ephy-dialog.h | 10 | ||||
-rw-r--r-- | lib/ephy-dnd.h | 4 | ||||
-rw-r--r-- | lib/ephy-file-chooser.h | 2 | ||||
-rw-r--r-- | lib/ephy-node-db.h | 1 | ||||
-rw-r--r-- | lib/ephy-node-filter.h | 3 | ||||
-rw-r--r-- | lib/ephy-node.h | 1 | ||||
-rw-r--r-- | lib/ephy-prefs.h | 4 | ||||
-rw-r--r-- | lib/ephy-state.h | 5 | ||||
-rw-r--r-- | lib/ephy-string.h | 2 | ||||
-rw-r--r-- | lib/ephy-zoom.h | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-arrow-toolbutton.h | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-cell-renderer-progress.h | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-ellipsizing-label.h | 1 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.h | 1 | ||||
-rw-r--r-- | lib/widgets/ephy-node-view.h | 1 | ||||
-rw-r--r-- | lib/widgets/ephy-search-entry.h | 1 | ||||
-rw-r--r-- | lib/widgets/ephy-spinner.h | 9 | ||||
-rw-r--r-- | lib/widgets/ephy-tree-model-node.h | 1 | ||||
-rw-r--r-- | lib/widgets/ephy-tree-model-sort.h | 1 | ||||
-rw-r--r-- | lib/widgets/ephy-zoom-action.h | 1 | ||||
-rw-r--r-- | lib/widgets/ephy-zoom-control.h | 1 |
25 files changed, 52 insertions, 11 deletions
diff --git a/lib/egg/egg-editable-toolbar.h b/lib/egg/egg-editable-toolbar.h index d332f482c..96c7935cd 100755 --- a/lib/egg/egg-editable-toolbar.h +++ b/lib/egg/egg-editable-toolbar.h @@ -44,6 +44,8 @@ typedef struct EggEditableToolbarPrivate EggEditableToolbarPrivate; struct EggEditableToolbar { GtkVBox parent_object; + + /*< private >*/ EggEditableToolbarPrivate *priv; }; diff --git a/lib/egg/egg-toolbar-editor.h b/lib/egg/egg-toolbar-editor.h index 72f58f449..5999f45c8 100755 --- a/lib/egg/egg-toolbar-editor.h +++ b/lib/egg/egg-toolbar-editor.h @@ -42,6 +42,8 @@ typedef struct EggToolbarEditorPrivate EggToolbarEditorPrivate; struct EggToolbarEditor { GtkVBox parent_object; + + /*< private >*/ EggToolbarEditorPrivate *priv; }; diff --git a/lib/egg/egg-toolbars-model.h b/lib/egg/egg-toolbars-model.h index 0f3b2d31a..6ad28b9d7 100755 --- a/lib/egg/egg-toolbars-model.h +++ b/lib/egg/egg-toolbars-model.h @@ -48,6 +48,8 @@ typedef enum struct EggToolbarsModel { GObject parent_object; + + /*< private >*/ EggToolbarsModelPrivate *priv; }; diff --git a/lib/ephy-debug.h b/lib/ephy-debug.h index 815741093..0be7f73bc 100644 --- a/lib/ephy-debug.h +++ b/lib/ephy-debug.h @@ -14,6 +14,8 @@ * 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. + * + * $Id$ */ #ifndef EPHY_DEBUG_H diff --git a/lib/ephy-dialog.h b/lib/ephy-dialog.h index 572280dc7..a440dd625 100644 --- a/lib/ephy-dialog.h +++ b/lib/ephy-dialog.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000, 2001, 2002 Marco Pesenti Gritti + * Copyright (C) 2000-2003 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 @@ -14,6 +14,8 @@ * 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. + * + * $Id$ */ #ifndef EPHY_DIALOG_H @@ -43,8 +45,10 @@ typedef struct EphyDialogPrivate EphyDialogPrivate; struct EphyDialog { - GObject parent; - EphyDialogPrivate *priv; + GObject parent; + + /*< private >*/ + EphyDialogPrivate *priv; }; typedef enum diff --git a/lib/ephy-dnd.h b/lib/ephy-dnd.h index d65d2fd3c..2bb872464 100644 --- a/lib/ephy-dnd.h +++ b/lib/ephy-dnd.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000, 2001, 2002 Marco Pesenti Gritti + * Copyright (C) 2000-2003 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 @@ -14,6 +14,8 @@ * 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. + * + * $Id$ */ #ifndef EPHY_DND_H diff --git a/lib/ephy-file-chooser.h b/lib/ephy-file-chooser.h index 7702c41d2..1ca3426f4 100644 --- a/lib/ephy-file-chooser.h +++ b/lib/ephy-file-chooser.h @@ -46,6 +46,8 @@ enum typedef struct { GtkFileChooserDialog parent; + + /*< private >*/ EphyFileChooserPrivate *priv; } EphyFileChooser; diff --git a/lib/ephy-node-db.h b/lib/ephy-node-db.h index f9df6d894..ba597f528 100644 --- a/lib/ephy-node-db.h +++ b/lib/ephy-node-db.h @@ -41,6 +41,7 @@ struct EphyNodeDb { GObject parent; + /*< private >*/ EphyNodeDbPrivate *priv; }; diff --git a/lib/ephy-node-filter.h b/lib/ephy-node-filter.h index 1aedc16c6..ee1d61097 100644 --- a/lib/ephy-node-filter.h +++ b/lib/ephy-node-filter.h @@ -1,6 +1,6 @@ /* * Copyright (C) 2002 Olivier Martin <omartin@ifrance.com> - * (C) 2002 Jorn Baayen <jorn@nl.linux.org> + * Copyright (C) 2002 Jorn Baayen <jorn@nl.linux.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 @@ -41,6 +41,7 @@ typedef struct { GObject parent; + /*< private >*/ EphyNodeFilterPrivate *priv; } EphyNodeFilter; diff --git a/lib/ephy-node.h b/lib/ephy-node.h index 754c3f53e..50c5ab1bc 100644 --- a/lib/ephy-node.h +++ b/lib/ephy-node.h @@ -20,7 +20,6 @@ * $Id$ */ - #ifndef EPHY_NODE_H #define EPHY_NODE_H diff --git a/lib/ephy-prefs.h b/lib/ephy-prefs.h index 53c07e5d8..1814d63b2 100644 --- a/lib/ephy-prefs.h +++ b/lib/ephy-prefs.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000-2002 Marco Pesenti Gritti + * Copyright (C) 2000-2003 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 @@ -14,6 +14,8 @@ * 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. + * + * $Id$ */ #ifndef EPHY_PREFS_H diff --git a/lib/ephy-state.h b/lib/ephy-state.h index bc01e2eea..260c03ba1 100644 --- a/lib/ephy-state.h +++ b/lib/ephy-state.h @@ -1,7 +1,7 @@ /* * Copyright (C) 2001 Matthew Mueller - * (C) 2002 Jorn Baayen <jorn@nl.linux.org> - * (C) 2003 Marco Pesenti Gritti <mpeseng@tin.it> + * Copyright (C) 2002 Jorn Baayen <jorn@nl.linux.org> + * Copyright (C) 2003 Marco Pesenti Gritti <mpeseng@tin.it> * * 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 @@ -17,6 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * $Id$ */ #ifndef EPHY_STATE_H diff --git a/lib/ephy-string.h b/lib/ephy-string.h index 89aa4564c..6cfbd892f 100644 --- a/lib/ephy-string.h +++ b/lib/ephy-string.h @@ -14,6 +14,8 @@ * 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. + * + * $Id$ */ #ifndef EPHY_STRING_H diff --git a/lib/ephy-zoom.h b/lib/ephy-zoom.h index ff047cea9..a6853eeae 100644 --- a/lib/ephy-zoom.h +++ b/lib/ephy-zoom.h @@ -14,6 +14,8 @@ * 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. + * + * $Id$ */ #ifndef EPHY_ZOOM_H diff --git a/lib/widgets/ephy-arrow-toolbutton.h b/lib/widgets/ephy-arrow-toolbutton.h index 2e2164592..59351b918 100644 --- a/lib/widgets/ephy-arrow-toolbutton.h +++ b/lib/widgets/ephy-arrow-toolbutton.h @@ -39,6 +39,8 @@ typedef struct EphyArrowToolButtonPrivate EphyArrowToolButtonPrivate; struct EphyArrowToolButton { GtkToolButton parent; + + /*< private >*/ EphyArrowToolButtonPrivate *priv; }; diff --git a/lib/widgets/ephy-cell-renderer-progress.h b/lib/widgets/ephy-cell-renderer-progress.h index 85b632b2e..1bf3915a7 100644 --- a/lib/widgets/ephy-cell-renderer-progress.h +++ b/lib/widgets/ephy-cell-renderer-progress.h @@ -41,6 +41,8 @@ enum struct _EphyCellRendererProgress { GtkCellRenderer parent_instance; + + /*< private >*/ EphyCellRendererProgressPrivate *priv; }; diff --git a/lib/widgets/ephy-ellipsizing-label.h b/lib/widgets/ephy-ellipsizing-label.h index 7e64a12f2..a1d790d1e 100644 --- a/lib/widgets/ephy-ellipsizing-label.h +++ b/lib/widgets/ephy-ellipsizing-label.h @@ -45,6 +45,7 @@ typedef struct { GtkLabel parent; + /*< private >*/ EphyEllipsizingLabelPrivate *priv; } EphyEllipsizingLabel; diff --git a/lib/widgets/ephy-location-entry.h b/lib/widgets/ephy-location-entry.h index 6445fad15..a4fec27b1 100644 --- a/lib/widgets/ephy-location-entry.h +++ b/lib/widgets/ephy-location-entry.h @@ -53,6 +53,7 @@ struct _EphyLocationEntry { GtkToolItem parent_object; + /*< private >*/ EphyLocationEntryPrivate *priv; }; diff --git a/lib/widgets/ephy-node-view.h b/lib/widgets/ephy-node-view.h index 55fab714a..5d82dfbaf 100644 --- a/lib/widgets/ephy-node-view.h +++ b/lib/widgets/ephy-node-view.h @@ -42,6 +42,7 @@ typedef struct { GtkTreeView parent; + /*< private >*/ EphyNodeViewPrivate *priv; } EphyNodeView; diff --git a/lib/widgets/ephy-search-entry.h b/lib/widgets/ephy-search-entry.h index 95f8339ad..5145b8b6c 100644 --- a/lib/widgets/ephy-search-entry.h +++ b/lib/widgets/ephy-search-entry.h @@ -38,6 +38,7 @@ typedef struct { GtkEntry parent; + /*< private >*/ EphySearchEntryPrivate *priv; } EphySearchEntry; diff --git a/lib/widgets/ephy-spinner.h b/lib/widgets/ephy-spinner.h index c573488e6..a2d0ad3a5 100644 --- a/lib/widgets/ephy-spinner.h +++ b/lib/widgets/ephy-spinner.h @@ -23,6 +23,7 @@ * * This is the header file for the throbber on the location bar * + * $Id$ */ #ifndef EPHY_SPINNER_H @@ -45,6 +46,8 @@ typedef struct EphySpinnerDetails EphySpinnerDetails; struct EphySpinner { GtkEventBox parent; + + /*< private >*/ EphySpinnerDetails *details; }; @@ -53,14 +56,16 @@ struct EphySpinnerClass { }; GType ephy_spinner_get_type (void); + GtkWidget *ephy_spinner_new (void); + void ephy_spinner_start (EphySpinner *throbber); + void ephy_spinner_stop (EphySpinner *throbber); + void ephy_spinner_set_small_mode (EphySpinner *spinner, gboolean new_mode); G_END_DECLS #endif /* EPHY_SPINNER_H */ - - diff --git a/lib/widgets/ephy-tree-model-node.h b/lib/widgets/ephy-tree-model-node.h index ee7c515dd..fe1c08446 100644 --- a/lib/widgets/ephy-tree-model-node.h +++ b/lib/widgets/ephy-tree-model-node.h @@ -49,6 +49,7 @@ typedef struct { GObject parent; + /*< private >*/ EphyTreeModelNodePrivate *priv; } EphyTreeModelNode; diff --git a/lib/widgets/ephy-tree-model-sort.h b/lib/widgets/ephy-tree-model-sort.h index abe21ddbb..f8c27cd16 100644 --- a/lib/widgets/ephy-tree-model-sort.h +++ b/lib/widgets/ephy-tree-model-sort.h @@ -39,6 +39,7 @@ typedef struct { GtkTreeModelSort parent; + /*< private >*/ EphyTreeModelSortPrivate *priv; } EphyTreeModelSort; diff --git a/lib/widgets/ephy-zoom-action.h b/lib/widgets/ephy-zoom-action.h index 3bced02f2..d01716179 100644 --- a/lib/widgets/ephy-zoom-action.h +++ b/lib/widgets/ephy-zoom-action.h @@ -39,6 +39,7 @@ struct _EphyZoomAction { GtkAction parent; + /*< private >*/ EphyZoomActionPrivate *priv; }; diff --git a/lib/widgets/ephy-zoom-control.h b/lib/widgets/ephy-zoom-control.h index a451bbd0d..8aa571c26 100644 --- a/lib/widgets/ephy-zoom-control.h +++ b/lib/widgets/ephy-zoom-control.h @@ -52,6 +52,7 @@ struct _EphyZoomControl { GtkToolItem parent_object; + /*< private >*/ EphyZoomControlPrivate *priv; }; |