summaryrefslogtreecommitdiff
path: root/frontends/gtk/local_history.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-02-16 22:15:49 +0000
committerVincent Sanders <vince@kyllikki.org>2017-02-17 09:06:32 +0000
commit8ddb9df3778abadc095505d5711b08e9cd9f270a (patch)
tree422652ed6324ed1ff9ed2600596448d383cbabcc /frontends/gtk/local_history.h
parentc60cb335f21b602eeee84c7865db4b2bbfe87cfe (diff)
downloadnetsurf-8ddb9df3778abadc095505d5711b08e9cd9f270a.tar.gz
netsurf-8ddb9df3778abadc095505d5711b08e9cd9f270a.tar.bz2
update gtk frontend to use corewindow local history
Diffstat (limited to 'frontends/gtk/local_history.h')
-rw-r--r--frontends/gtk/local_history.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/frontends/gtk/local_history.h b/frontends/gtk/local_history.h
new file mode 100644
index 000000000..605405ddf
--- /dev/null
+++ b/frontends/gtk/local_history.h
@@ -0,0 +1,49 @@
+/*
+ * Copyright 2017 Vincent Sanders <vince@kyllikki.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf 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; version 2 of the License.
+ *
+ * NetSurf 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, see <http://www.gnu.org/licenses/>.
+ */
+
+/**
+ * \file
+ * Interface to GTK local history manager
+ */
+
+#ifndef NSGTK_LOCAL_HISTORY_H
+#define NSGTK_LOCAL_HISTORY_H
+
+struct browser_window;
+
+/**
+ * make the local history window visible.
+ *
+ * \return NSERROR_OK on success else appropriate error code on faliure.
+ */
+nserror nsgtk_local_history_present(GtkWindow *parent, struct browser_window *bw);
+
+/**
+ * hide the local history window from being visible.
+ *
+ * \return NSERROR_OK on success else appropriate error code on faliure.
+ */
+nserror nsgtk_local_history_hide(void);
+
+/**
+ * Destroys the local history window and performs any other necessary cleanup
+ * actions.
+ */
+nserror nsgtk_local_history_destroy(void);
+
+#endif