summaryrefslogtreecommitdiffstats
path: root/src/tab-page.h
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-17 22:03:25 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-17 22:03:25 (EDT)
commitadaaff3dcc7c49a4e2c0d983a7dd5ee436a403a8 (patch)
treeb6489ecb45b9c754bb561d8d7217077c4dfa0a74 /src/tab-page.h
parent8cfd7bff52ffab2b97899756db08200c2b5c4fe4 (diff)
downloadmarquee-adaaff3dcc7c49a4e2c0d983a7dd5ee436a403a8.zip
marquee-adaaff3dcc7c49a4e2c0d983a7dd5ee436a403a8.tar.gz
marquee-adaaff3dcc7c49a4e2c0d983a7dd5ee436a403a8.tar.bz2
[WIP] MqTabPage: New class
Diffstat (limited to 'src/tab-page.h')
-rw-r--r--src/tab-page.h117
1 files changed, 117 insertions, 0 deletions
diff --git a/src/tab-page.h b/src/tab-page.h
new file mode 100644
index 0000000..0078fc9
--- /dev/null
+++ b/src/tab-page.h
@@ -0,0 +1,117 @@
+/*
+ * Tab page
+ *
+ * Copyright (C) 2017 Patrick McDermott
+ *
+ * This file is part of Marquee.
+ *
+ * Marquee 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, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Marquee 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 Marquee. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+typedef struct _MqTabPage MqTabPage;
+typedef struct _MqTabPageClass MqTabPageClass;
+
+#ifndef MQ_TAB_PAGE_H
+#define MQ_TAB_PAGE_H
+
+#include <stdarg.h>
+
+#include <glib.h>
+#include <gtk/gtk.h>
+#include <webkit2/webkit2.h>
+
+#include "application.h"
+#include "window.h"
+
+G_BEGIN_DECLS
+
+#define MQ_TYPE_TAB_PAGE (mq_tab_page_get_type())
+#define MQ_TAB_PAGE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ MQ_TYPE_TAB_PAGE, MqTabPage))
+#define MQ_IS_TAB_PAGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
+ MQ_TYPE_TAB_PAGE))
+#define MQ_TAB_PAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
+ MQ_TYPE_TAB_PAGE, MqTabPageClass))
+#define MQ_IS_TAB_PAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), \
+ MQ_TYPE_TAB_PAGE))
+#define MQ_TAB_PAGE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
+ MQ_TYPE_TAB_PAGE, MqTabPageClass))
+
+GType
+mq_tab_page_get_type(void);
+
+MqTabPage *
+mq_tab_page_new(const gchar *uri, MqTabPage *source);
+
+MqTabPage *
+mq_tab_page_new_relative(const gchar *uri, MqTabPage *source);
+
+MqTabPage *
+mq_tab_page_new_root(MqWindow *window);
+
+void
+mq_tab_page_quit(MqTabPage *tab_page);
+
+MqApplication *
+mq_tab_page_get_application(MqTabPage *tab_page);
+
+MqWindow *
+mq_tab_page_get_window(MqTabPage *tab_page);
+
+void
+mq_tab_page_update_positions(MqTabPage *node, gint step);
+
+void
+mq_tab_page_update_position(MqTabPage *tab_page, guint position);
+
+guint
+mq_tab_page_get_position(MqTabPage *tab_page);
+
+guint
+mq_tab_page_get_tree_size(MqTabPage *tab_page);
+
+const gchar *
+mq_tab_page_get_title(MqTabPage *tab_page);
+
+MqTabPage *
+mq_tab_page_seek(MqTabPage *node, guint position);
+
+void
+mq_tab_page_foreach(MqTabPage *node, void (*cb)(MqTabPage *node, va_list ap),
+ ...);
+
+MqTabPage *
+mq_tab_page_root(MqTabPage *node);
+
+MqTabPage *
+mq_tab_page_previous(MqTabPage *node);
+
+MqTabPage *
+mq_tab_page_next(MqTabPage *node);
+
+MqTabPage *
+mq_tab_page_first_child(MqTabPage *node);
+
+void
+mq_tab_page_scroll_tab_labels(MqTabPage *node);
+
+void
+mq_tab_page_begin_scrolling_tab_labels(MqTabPage *node);
+
+void
+mq_tab_page_end_scrolling_tab_labels(MqTabPage *node);
+
+G_END_DECLS
+
+#endif /* MQ_TAB_PAGE_H */