/** * @file gnome-cmd-notebook.cc * @copyright (C) 2001-2006 Marcus Bjurman\n * @copyright (C) 2007-2012 Piotr Eljasiak\n * @copyright (C) 2013-2023 Uwe Scholz\n * * @copyright This program 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 2 of the License, or * (at your option) any later version. * * @copyright This program 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. * * @copyright You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include "gnome-cmd-includes.h" #include "gnome-cmd-notebook.h" #include "utils.h" using namespace std; struct GnomeCmdNotebookClass { GtkNotebookClass parent_class; }; class GnomeCmdNotebook::Private { public: Private(); ~Private(); }; inline GnomeCmdNotebook::Private::Private() { } inline GnomeCmdNotebook::Private::~Private() { } G_DEFINE_TYPE (GnomeCmdNotebook, gnome_cmd_notebook, GTK_TYPE_NOTEBOOK) static void gnome_cmd_notebook_init (GnomeCmdNotebook *self) { self->priv = new GnomeCmdNotebook::Private; } static void gnome_cmd_notebook_finalize (GObject *object) { GnomeCmdNotebook *self = GNOME_CMD_NOTEBOOK (object); delete self->priv; G_OBJECT_CLASS (gnome_cmd_notebook_parent_class)->finalize (object); } static void gnome_cmd_notebook_class_init (GnomeCmdNotebookClass *klass) { gnome_cmd_notebook_parent_class = (GObjectClass *) g_type_class_peek_parent (klass); GObjectClass *object_class = (GObjectClass *) klass; object_class->finalize = gnome_cmd_notebook_finalize; } GnomeCmdNotebook::GnomeCmdNotebook(TabBarVisibility visibility) { tabs_visibility = visibility; if (visibility==SHOW_TABS) g_object_set (this, "show-tabs", TRUE, NULL); } void GnomeCmdNotebook::show_tabs(TabBarVisibility _show_tabs) { if (_show_tabs!=tabs_visibility) { tabs_visibility = _show_tabs; gtk_notebook_set_show_tabs (*this, _show_tabs==SHOW_TABS || (_show_tabs!=HIDE_TABS && size()>1)); } } int GnomeCmdNotebook::find_tab_num_at_pos(gint screen_x, gint screen_y) const { if (!GTK_NOTEBOOK (this)->first_tab) return -1; GtkPositionType tab_pos = gtk_notebook_get_tab_pos (*this); GtkWidget *the_page; for (int page_num=0; (the_page=GnomeCmdNotebook::page(page_num)); ++page_num) { GtkWidget *tab = gtk_notebook_get_tab_label (*this, the_page); g_return_val_if_fail (tab!=NULL, -1); if (!gtk_widget_get_mapped (GTK_WIDGET (tab))) continue; gint x_root, y_root; gdk_window_get_origin (gtk_widget_get_window (tab), &x_root, &y_root); GtkAllocation tab_allocation; gtk_widget_get_allocation (tab, &tab_allocation); switch (tab_pos) { case GTK_POS_TOP: case GTK_POS_BOTTOM: { gint y = screen_y - y_root - tab_allocation.y; if (y < 0 || y > tab_allocation.height) return -1; if (screen_x <= x_root + tab_allocation.x + tab_allocation.width) return page_num; } break; case GTK_POS_LEFT: case GTK_POS_RIGHT: { gint x = screen_x - x_root - tab_allocation.x; if (x < 0 || x > tab_allocation.width) return -1; if (screen_y <= y_root + tab_allocation.y + tab_allocation.height) return page_num; } break; default: break; } } return -1; }