From 52ed6fa8af3a50191367d5e2c38008c0c73e620c Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 22 Oct 2017 22:01:48 -0400 Subject: MqNotebook: New class --- (limited to 'src') diff --git a/src/local.mk b/src/local.mk index 89867eb..0748c45 100644 --- a/src/local.mk +++ b/src/local.mk @@ -5,6 +5,7 @@ marquee_SOURCES += \ %reldir%/gpl-3-0.c \ %reldir%/html.c \ %reldir%/main.c \ + %reldir%/notebook.c \ %reldir%/tab-label.c \ %reldir%/tab-page.c \ %reldir%/web-settings.c \ diff --git a/src/notebook.c b/src/notebook.c new file mode 100644 index 0000000..61502e7 --- /dev/null +++ b/src/notebook.c @@ -0,0 +1,119 @@ +/* + * Tabbed notebook + * + * 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 . + */ + +#include "notebook.h" + +#include +#include + +#include "window.h" + +struct _MqNotebook { + GtkNotebook parent_instance; + MqWindow *window; +}; + +enum { + PROP_WINDOW = 1, + N_PROPERTIES +}; + +static GParamSpec *obj_properties[N_PROPERTIES] = {NULL,}; + +struct _MqNotebookClass { + GtkNotebookClass parent_class; +}; + +G_DEFINE_TYPE(MqNotebook, mq_notebook, GTK_TYPE_NOTEBOOK) + +static void +get_property(GObject *object, guint property_id, GValue *value, + GParamSpec *param_spec) +{ + MqNotebook *notebook; + + notebook = MQ_NOTEBOOK(object); + + switch (property_id) { + case PROP_WINDOW: + g_value_set_object(value, notebook->window); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, + param_spec); + break; + } +} + +static void +set_property(GObject *object, guint property_id, const GValue *value, + GParamSpec *param_spec) +{ + MqNotebook *notebook; + + notebook = MQ_NOTEBOOK(object); + + switch (property_id) { + case PROP_WINDOW: + notebook->window = g_value_get_object(value); + break; + default: + G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, + param_spec); + break; + } +} + +static void +mq_notebook_class_init(MqNotebookClass *klass) +{ + GObjectClass *object_class = G_OBJECT_CLASS(klass); + + object_class->get_property = get_property; + object_class->set_property = set_property; + + obj_properties[PROP_WINDOW] = g_param_spec_object( + "window", + "MqWindow", + "The parent MqWindow instance", + MQ_TYPE_WINDOW, + G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | + G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB); + g_object_class_install_properties(object_class, N_PROPERTIES, + obj_properties); +} + +static void +mq_notebook_init(MqNotebook *notebook) +{ + gtk_notebook_set_show_border(GTK_NOTEBOOK(notebook), FALSE); + gtk_notebook_set_scrollable(GTK_NOTEBOOK(notebook), TRUE); + gtk_notebook_set_group_name(GTK_NOTEBOOK(notebook), "mq-tabs"); + gtk_widget_set_can_focus(GTK_WIDGET(notebook), FALSE); +} + +GtkWidget * +mq_notebook_new(MqWindow *window) +{ + return g_object_new(MQ_TYPE_NOTEBOOK, + "window", window, + NULL); +} diff --git a/src/notebook.h b/src/notebook.h new file mode 100644 index 0000000..a1071ec --- /dev/null +++ b/src/notebook.h @@ -0,0 +1,58 @@ +/* + * Tabbed notebook + * + * 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 . + */ + +#ifndef MQ_NOTEBOOK_H +#define MQ_NOTEBOOK_H + +typedef struct _MqNotebook MqNotebook; +typedef struct _MqNotebookClass MqNotebookClass; + +#include + +#include +#include + +#include "application.h" +#include "window.h" + +G_BEGIN_DECLS + +#define MQ_TYPE_NOTEBOOK (mq_notebook_get_type()) +#define MQ_NOTEBOOK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \ + MQ_TYPE_NOTEBOOK, MqNotebook)) +#define MQ_IS_NOTEBOOK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \ + MQ_TYPE_NOTEBOOK)) +#define MQ_NOTEBOOK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \ + MQ_TYPE_NOTEBOOK, MqNotebookClass)) +#define MQ_IS_NOTEBOOK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), \ + MQ_TYPE_NOTEBOOK)) +#define MQ_NOTEBOOK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \ + MQ_TYPE_NOTEBOOK, MqNotebookClass)) + +GType +mq_notebook_get_type(void); + +GtkWidget * +mq_notebook_new(MqWindow *window); + +G_END_DECLS + +#endif /* MQ_NOTEBOOK_H */ -- cgit v0.9.1