aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'lib/widgets')
-rw-r--r--lib/widgets/ephy-arrow-toolbutton.h2
-rw-r--r--lib/widgets/ephy-cell-renderer-progress.h2
-rw-r--r--lib/widgets/ephy-ellipsizing-label.h1
-rw-r--r--lib/widgets/ephy-location-entry.h1
-rw-r--r--lib/widgets/ephy-node-view.h1
-rw-r--r--lib/widgets/ephy-search-entry.h1
-rw-r--r--lib/widgets/ephy-spinner.h9
-rw-r--r--lib/widgets/ephy-tree-model-node.h1
-rw-r--r--lib/widgets/ephy-tree-model-sort.h1
-rw-r--r--lib/widgets/ephy-zoom-action.h1
-rw-r--r--lib/widgets/ephy-zoom-control.h1
11 files changed, 19 insertions, 2 deletions
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;
};