aboutsummaryrefslogtreecommitdiffstats
path: root/lib/widgets
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2003-11-20 03:19:59 +0800
committerChristian Persch <chpe@src.gnome.org>2003-11-20 03:19:59 +0800
commitf52461471f1ef86adda1f9a311483f57e4d51dbd (patch)
treec3422e0526c7b173497cf0c3d1bc452b66d78612 /lib/widgets
parentb59fc10752cd7d6e7c0affb262d441081dd9b587 (diff)
downloadgsoc2013-epiphany-f52461471f1ef86adda1f9a311483f57e4d51dbd.tar
gsoc2013-epiphany-f52461471f1ef86adda1f9a311483f57e4d51dbd.tar.gz
gsoc2013-epiphany-f52461471f1ef86adda1f9a311483f57e4d51dbd.tar.bz2
gsoc2013-epiphany-f52461471f1ef86adda1f9a311483f57e4d51dbd.tar.lz
gsoc2013-epiphany-f52461471f1ef86adda1f9a311483f57e4d51dbd.tar.xz
gsoc2013-epiphany-f52461471f1ef86adda1f9a311483f57e4d51dbd.tar.zst
gsoc2013-epiphany-f52461471f1ef86adda1f9a311483f57e4d51dbd.zip
Complete docs base implementation. Should work more or less.
2003-11-19 Marco Pesenti Gritti <marco@gnome.org> * doc/reference/.cvsignore: * doc/reference/Makefile.am: * doc/reference/epiphany-docs.sgml: * doc/reference/epiphany.types: * doc/reference/tmpl/config.sgml: * doc/reference/tmpl/ephy-session.sgml: * doc/reference/tmpl/ephy-shell.sgml: Complete docs base implementation. Should work more or less. * embed/Makefile.am: * lib/Makefile.am: * src/Makefile.am: Cleanup a bit libs build and use a static lib also for the src/ code so that we can use it for documents. * src/ephy-nautilus-view.c: Bad chpe forgot to modify func signature. 2003-11-19 Christian Persch <chpe@cvs.gnome.org> * embed/downloader-view.h: * embed/ephy-download.h: * embed/ephy-embed-dialog.h: * embed/ephy-embed-event.h: * embed/ephy-embed-persist.h: * embed/ephy-embed-popup-control.h: * embed/ephy-embed-shell.h: * embed/ephy-embed-single.h: * embed/ephy-encodings.h: * embed/ephy-favicon-cache.h: * embed/ephy-history.h: * embed/find-dialog.h: * embed/mozilla/EphyBrowser.h: * embed/mozilla/GtkNSSKeyPairDialogs.cpp: * embed/mozilla/mozilla-download.h: * embed/mozilla/mozilla-embed-persist.h: * embed/mozilla/mozilla-embed-single.h: * embed/print-dialog.h: * lib/egg/egg-editable-toolbar.h: * lib/egg/egg-toolbar-editor.h: * lib/egg/egg-toolbars-model.h: * lib/ephy-debug.h: * lib/ephy-dialog.h: * lib/ephy-dnd.h: * lib/ephy-file-chooser.h: * lib/ephy-node-db.h: * lib/ephy-node-filter.h: * lib/ephy-node.h: * lib/ephy-prefs.h: * lib/ephy-state.h: * lib/ephy-string.h: * lib/ephy-zoom.h: * lib/widgets/ephy-arrow-toolbutton.h: * lib/widgets/ephy-cell-renderer-progress.h: * lib/widgets/ephy-ellipsizing-label.h: * lib/widgets/ephy-location-entry.h: * lib/widgets/ephy-node-view.h: * lib/widgets/ephy-search-entry.h: * lib/widgets/ephy-spinner.h: * lib/widgets/ephy-tree-model-node.h: * lib/widgets/ephy-tree-model-sort.h: * lib/widgets/ephy-zoom-action.h: * lib/widgets/ephy-zoom-control.h: * src/bookmarks/ephy-bookmark-action.h: * src/bookmarks/ephy-bookmark-properties.h: * src/bookmarks/ephy-bookmarks-editor.h: * src/bookmarks/ephy-bookmarks-menu.h: * src/bookmarks/ephy-bookmarks.h: * src/bookmarks/ephy-new-bookmark.h: * src/bookmarks/ephy-topic-action.h: * src/bookmarks/ephy-topics-selector.h: * src/ephy-automation.h: * src/ephy-completion-model.h: * src/ephy-encoding-dialog.h:
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;
};