summaryrefslogtreecommitdiff
path: root/frontends/gtk/page_info.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-12-01 16:20:42 +0000
committerVincent Sanders <vince@kyllikki.org>2019-12-01 16:21:16 +0000
commit08e2cc32bab262979126837b82de6db2922b9afb (patch)
tree95f9bf5c6a76a2a3c00fee38fbcf757f5cf9da5d /frontends/gtk/page_info.h
parenta0af810966d37ca176fc78225b3156e5a69c77ee (diff)
downloadnetsurf-08e2cc32bab262979126837b82de6db2922b9afb.tar.gz
netsurf-08e2cc32bab262979126837b82de6db2922b9afb.tar.bz2
repurpose ssl certificate core window for nitial page infor window on gtk
Diffstat (limited to 'frontends/gtk/page_info.h')
-rw-r--r--frontends/gtk/page_info.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/frontends/gtk/page_info.h b/frontends/gtk/page_info.h
new file mode 100644
index 000000000..ad443fcfd
--- /dev/null
+++ b/frontends/gtk/page_info.h
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2019 Vincent Sanders <vince@netsurf-browser.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/>.
+ */
+
+#ifndef NETSURF_GTK_PAGE_INFO_H
+#define NETSURF_GTK_PAGE_INFO_H 1
+
+/**
+ * Page information window
+ *
+ * \param bw the browser window to get page information for
+ * \return NSERROR_OK or error code if prompt creation failed.
+ */
+nserror nsgtk_page_info(struct browser_window *bw);
+
+#endif