gpanthera.cc
C++ source, ASCII text
1#include "gpanthera.hh" 2 3#include <cassert> 4#include <iostream> 5#include <utility> 6#include <libintl.h> 7#include <locale.h> 8#include <filesystem> 9#define _(STRING) gettext(STRING) 10 11namespace gPanthera { 12sigc::signal<void(double, double)> add_context_menu(Gtk::Widget &widget) { 13sigc::signal<void(double, double)> signal; 14// Add a context menu to a widget 15auto gesture_click = Gtk::GestureClick::create(); 16gesture_click->set_button(3); 17auto gesture_keyboard = Gtk::EventControllerKey::create(); 18gesture_click->signal_pressed().connect([&widget, signal](int n_press, double x, double y) { 19if(n_press == 1) { 20signal.emit(x, y); 21} 22}, false); 23gesture_keyboard->signal_key_pressed().connect([&widget, signal](int keyval, int keycode, Gdk::ModifierType state) { 24if((keyval == GDK_KEY_F10) && (state == Gdk::ModifierType::SHIFT_MASK) || keyval == GDK_KEY_Menu) { 25// auto popover = Gtk::make_managed<Gtk::PopoverMenu>(); 26// popover->set_menu_model(menu); 27// popover->set_has_arrow(false); 28// popover->set_halign(Gtk::Align::START); 29// popover->set_pointing_to(Gdk::Rectangle(0, 0, 1, 1)); 30// popover->set_parent(widget); 31// popover->popup(); 32signal.emit(0, 0); 33} 34return true; 35}, false); 36widget.add_controller(gesture_click); 37widget.add_controller(gesture_keyboard); 38return signal; 39} 40 41std::vector<Gtk::Widget*> collect_children(Gtk::Widget &widget) { 42// Get a vector of the children of a GTK widget, since the container API was removed in GTK 4 43std::vector<Gtk::Widget*> children; 44for(auto *child = widget.get_first_child(); child; child = child->get_next_sibling()) { 45children.push_back(child); 46} 47return children; 48} 49 50Gtk::Image *copy_image(Gtk::Image *image) { 51// Generate a new Gtk::Image with the same contents as an existing one 52if(image->get_storage_type() == Gtk::Image::Type::PAINTABLE) { 53return Gtk::make_managed<Gtk::Image>(image->get_paintable()); 54} else if(image->get_storage_type() == Gtk::Image::Type::ICON_NAME) { 55auto new_image = Gtk::make_managed<Gtk::Image>(); 56new_image->set_from_icon_name(image->get_icon_name()); 57return new_image; 58} else { 59return nullptr; 60} 61} 62 63void init() { 64g_log_set_always_fatal(G_LOG_LEVEL_CRITICAL); 65// Set up gettext configurationIsn't 66bindtextdomain("gpanthera", "./locales"); 67textdomain("gpanthera"); 68} 69 70DockablePane::DockablePane(std::shared_ptr<LayoutManager> layout, Gtk::Widget &child, const Glib::ustring &name, const Glib::ustring &label, Gtk::Image *icon, DockStack *stack, Gtk::Widget *custom_header) 71: Gtk::Box(Gtk::Orientation::VERTICAL, 0), name(name) { 72if(icon) { 73this->icon = icon; 74} 75if(stack) { 76this->stack = stack; 77} 78this->layout = std::move(layout); 79this->label.set_text(label); 80// This should be replaced with a custom class in the future 81header = std::make_unique<Gtk::HeaderBar>(); 82header->set_show_title_buttons(false); 83if(custom_header) { 84header->set_title_widget(*custom_header); 85} else { 86header->set_title_widget(this->label); 87} 88header->add_css_class("gpanthera-dock-titlebar"); 89auto header_menu_button = Gtk::make_managed<Gtk::MenuButton>(); 90header_menu_button->set_direction(Gtk::ArrowType::NONE); 91 92// Pane menu 93this->action_group = Gio::SimpleActionGroup::create(); 94header_menu_button->insert_action_group("win", action_group); 95 96// Close action 97auto close_action = Gio::SimpleAction::create("close"); 98close_action->signal_activate().connect([this](const Glib::VariantBase&) { 99if(this->stack) { 100this->stack->set_visible_child(""); 101} 102}); 103action_group->add_action(close_action); 104header_menu->append(_("Close"), "win.close"); 105 106// Pop out action 107auto pop_out_action = Gio::SimpleAction::create("pop_out"); 108pop_out_action->signal_activate().connect([this](const Glib::VariantBase&) { 109if(this->stack) { 110this->pop_out(); 111} 112}); 113action_group->add_action(pop_out_action); 114header_menu->append(_("Pop out"), "win.pop_out"); 115 116// Move menu 117auto move_menu = Gio::Menu::create(); 118for(auto &this_stack : this->layout->stacks) { 119auto action_name = "move_" + this_stack->name; 120auto move_action = Gio::SimpleAction::create(action_name); 121move_action->signal_activate().connect([this, this_stack](const Glib::VariantBase&) { 122this_stack->add_pane(*this); 123}); 124action_group->add_action(move_action); 125move_menu->append(this_stack->name, "win." + action_name); 126} 127 128// Add move submenu 129header_menu->append_submenu(_("Move"), move_menu); 130 131// Switch to traditional (nested) submenus, not sliding 132auto popover_menu = Gtk::make_managed<Gtk::PopoverMenu>(header_menu, Gtk::PopoverMenu::Flags::NESTED); 133popover_menu->set_has_arrow(false); 134header_menu_button->set_popover(*popover_menu); 135 136// TODO: Add a context menu as well 137 138header->pack_end(*header_menu_button); 139 140this->prepend(*header); 141this->child = &child; 142this->append(child); 143} 144 145Gtk::Stack *DockablePane::get_stack() const { 146return stack; 147} 148 149void DockablePane::redock(DockStack *stack) { 150if(this->window != nullptr) { 151this->window->hide(); 152// Put the titlebar back 153this->window->unset_titlebar(); 154this->window->set_decorated(false); 155this->header->get_style_context()->remove_class("titlebar"); 156this->prepend(*this->header); 157this->window->unset_child(); 158this->window->close(); 159} else if(this->get_parent() && this->stack == this->get_parent()) { 160this->stack->remove(*this); 161} 162this->stack = stack; 163this->last_stack = stack; 164this->stack->add(*this, this->get_identifier()); 165if(this->window != nullptr) { 166this->window->destroy(); 167delete this->window; 168this->window = nullptr; 169// Re-enable the pop out option 170auto action = std::dynamic_pointer_cast<Gio::SimpleAction>(this->action_group->lookup_action("pop_out")); 171action->set_enabled(true); 172this->header->get_style_context()->remove_class("gpanthera-dock-titlebar-popout"); 173} 174} 175 176void DockablePane::pop_out() { 177if(this->stack != nullptr) { 178this->stack->remove(*this); 179this->stack = nullptr; 180} 181 182if(this->window == nullptr) { 183// Remove the header bar from the pane, so it can be used as the titlebar of the window 184this->remove(*this->header); 185this->window = new DockWindow(this); 186this->window->set_titlebar(*this->header); 187this->window->set_child(*this); 188this->window->set_decorated(true); 189// Grey out the pop-out option 190auto action = std::dynamic_pointer_cast<Gio::SimpleAction>(this->action_group->lookup_action("pop_out")); 191action->set_enabled(false); 192this->header->get_style_context()->add_class("gpanthera-dock-titlebar-popout"); 193} 194this->window->present(); 195} 196 197Glib::ustring DockablePane::get_identifier() const { 198return name; 199} 200 201Gtk::Image *DockablePane::get_icon() const { 202return icon; 203} 204 205Gtk::Widget *DockablePane::get_child() const { 206return child; 207} 208 209Gtk::Label *DockablePane::get_label() { 210return &label; 211} 212 213LayoutManager::LayoutManager() : Glib::ObjectBase("LayoutManager") { 214} 215 216void LayoutManager::add_pane(DockablePane *pane) { 217panes.push_back(pane); 218} 219 220void LayoutManager::add_stack(DockStack *stack) { 221stacks.push_back(stack); 222} 223 224void LayoutManager::remove_pane(DockablePane *pane) { 225panes.erase(std::ranges::remove(panes, pane).begin(), panes.end()); 226} 227 228void LayoutManager::remove_stack(DockStack *stack) { 229stacks.erase(std::ranges::remove(stacks, stack).begin(), stacks.end()); 230} 231 232BaseStack::BaseStack() : Gtk::Stack() { 233} 234 235DockStack::DockStack(std::shared_ptr<LayoutManager> layout, const Glib::ustring &name) : BaseStack(), layout(layout), name(name) { 236auto empty_child = Gtk::make_managed<Gtk::Box>(Gtk::Orientation::VERTICAL, 0); 237this->add(*empty_child, ""); 238// Add the stack to a layout manager 239this->layout->add_stack(this); 240 241// Hide the stack when no child is visible 242this->property_visible_child_name().signal_changed().connect([this]() { 243if(this->get_visible_child_name() == "") { 244this->hide(); 245} else { 246this->show(); 247} 248}); 249 250// Also hide when the visible child is removed 251this->signal_child_removed.connect([this](Gtk::Widget* const &child) { 252if(this->get_visible_child_name() == "") { 253this->hide(); 254} 255}); 256 257this->set_visible_child(""); 258this->hide(); 259} 260 261DockWindow::DockWindow(DockablePane *pane) { 262this->pane = pane; 263this->set_child(*pane); 264// Attempting to close the window should redock the pane so it doesn't vanish 265this->signal_close_request().connect([this]() { 266this->pane->redock(this->pane->last_stack); 267return true; 268}, false); 269} 270 271DockStackSwitcher::DockStackSwitcher(DockStack *stack, Gtk::Orientation orientation) : Gtk::Box(orientation), stack(stack) { 272auto update_callback = [this](Gtk::Widget*) { 273this->update_buttons(); 274}; 275this->property_accessible_role().set_value(Gtk::Accessible::Role::TAB_LIST); 276stack->signal_child_added.connect(update_callback); 277stack->signal_child_removed.connect(update_callback); 278this->get_style_context()->add_class("gpanthera-dock-switcher"); 279drop_target = Gtk::DropTarget::create(DockablePane::get_type(), Gdk::DragAction::MOVE); 280this->add_controller(drop_target); 281// Process dropped buttons 282drop_target->signal_drop().connect([this](const Glib::ValueBase& value, double x, double y) { 283const auto &widget = static_cast<const Glib::Value<DockablePane*>&>(value).get(); 284 285if(widget) { 286if(auto pane = dynamic_cast<DockablePane*>(widget)) { 287this->stack->add_pane(*pane); 288} 289} 290 291return true; // Drop OK 292}, false); 293} 294 295DockStack *DockStackSwitcher::get_stack() const { 296return stack; 297} 298 299DockStackSwitcher::~DockStackSwitcher() { 300add_handler.disconnect(); 301remove_handler.disconnect(); 302} 303 304DockButton::DockButton(DockablePane *pane) : Gtk::ToggleButton(), pane(pane) { 305if(pane->get_icon()) { 306this->set_child(*copy_image(pane->get_icon())); 307} 308this->property_accessible_role().set_value(Gtk::Accessible::Role::TAB); 309this->set_tooltip_text(pane->get_label()->get_text()); 310this->set_halign(Gtk::Align::CENTER); 311this->set_valign(Gtk::Align::CENTER); 312this->get_style_context()->add_class("toggle"); 313this->get_style_context()->add_class("gpanthera-dock-button"); 314// Add/remove CSS classes when the pane is shown/hidden 315active_style_handler = this->pane->get_stack()->property_visible_child_name().signal_changed().connect([this]() { 316this->update_active_style(); 317}); 318drag_source = Gtk::DragSource::create(); 319drag_source->set_exclusive(false); 320// This is to prevent the click handler from taking over grabbing the button 321drag_source->set_propagation_phase(Gtk::PropagationPhase::CAPTURE); 322value.init(DockablePane::get_type()); 323value.set(pane); 324// Add the drag source to the button 325this->add_controller(drag_source); 326this->signal_clicked().connect([this, pane]() { 327if(pane->get_stack()->get_visible_child_name() == pane->get_identifier()) { 328pane->get_stack()->set_visible_child(""); 329} else { 330pane->get_stack()->set_visible_child(pane->get_identifier()); 331} 332}); 333// Provide the drag data 334drag_source->signal_prepare().connect([this](double, double) { 335drag_source->set_actions(Gdk::DragAction::MOVE); 336auto const paintable = Gtk::WidgetPaintable::create(); 337paintable->set_widget(*this); 338drag_source->set_icon(paintable->get_current_image(), 0, 0); 339return Gdk::ContentProvider::create(value); 340}, false); 341drag_source->signal_drag_begin().connect([this](const Glib::RefPtr<Gdk::Drag>&) { 342this->set_opacity(0); 343}, false); 344// Pop out if dragged to an external location 345drag_source->signal_drag_cancel().connect([this](const Glib::RefPtr<Gdk::Drag>&, Gdk::DragCancelReason reason) { 346if(reason == Gdk::DragCancelReason::NO_TARGET) { 347this->pane->pop_out(); 348return true; 349} 350this->set_opacity(1); 351return false; 352}, false); 353// Add a drop target to the button 354auto drop_target = Gtk::DropTarget::create(DockablePane::get_type(), Gdk::DragAction::MOVE); 355drop_target->set_actions(Gdk::DragAction::MOVE); 356drop_target->set_propagation_phase(Gtk::PropagationPhase::CAPTURE); 357this->add_controller(drop_target); 358// Process dropped buttons by inserting them after the current button 359drop_target->signal_drop().connect([this](const Glib::ValueBase& value, double x, double y) { 360const auto &widget = static_cast<const Glib::Value<DockablePane*>&>(value).get(); 361 362if(widget) { 363if(auto pane = dynamic_cast<DockablePane*>(widget)) { 364if(pane->layout != this->pane->layout) { 365// If the pane is not in the same layout manager, reject 366return false; 367} 368auto switcher = dynamic_cast<DockStackSwitcher*>(this->get_parent()); 369if(switcher) { 370auto *stack = switcher->get_stack(); 371// Move the button to the new position 372pane->redock(stack); 373if(switcher->get_orientation() == Gtk::Orientation::HORIZONTAL) { 374if(x < static_cast<double>(this->get_allocated_width()) / 2) { 375pane->insert_before(*stack, *this->pane); 376} else { 377pane->insert_after(*stack, *this->pane); 378} 379} else if(switcher->get_orientation() == Gtk::Orientation::VERTICAL) { 380if(y < static_cast<double>(this->get_allocated_height()) / 2) { 381pane->insert_before(*stack, *this->pane); 382} else { 383pane->insert_after(*stack, *this->pane); 384} 385} 386 387switcher->update_buttons(); 388} 389} 390} 391 392return true; // Drop OK 393}, false); 394this->update_active_style(); 395} 396 397void DockButton::update_active_style() { 398if(this->pane->get_stack()->get_visible_child_name() == this->pane->get_identifier()) { 399this->add_css_class("checked"); 400this->add_css_class("gpanthera-dock-button-active"); 401this->set_active(true); 402} else { 403this->remove_css_class("checked"); 404this->remove_css_class("gpanthera-dock-button-active"); 405this->set_active(false); 406} 407} 408 409DockButton::~DockButton() { 410active_style_handler.disconnect(); 411} 412 413void DockStackSwitcher::update_buttons() { 414// Clear the old buttons 415auto old_buttons = collect_children(*this); 416for(auto *button : old_buttons) { 417remove(*button); 418} 419DockButton* first_child = nullptr; 420for(auto *widget = stack->get_first_child(); widget; widget = widget->get_next_sibling()) { 421if(auto pane = dynamic_cast<DockablePane*>(widget)) { 422auto *button = Gtk::make_managed<DockButton>(pane); 423if(!first_child) { 424first_child = button; 425} else { 426button->set_group(*first_child); 427} 428if(pane->get_identifier() != Glib::ustring("")) { 429append(*button); 430} 431} 432} 433} 434 435void DockStack::add_pane(DockablePane &child) { 436child.redock(this); 437} 438 439void ContentManager::add_stack(ContentStack *stack) { 440this->stacks.push_back(stack); 441} 442 443void ContentManager::remove_stack(ContentStack *stack) { 444this->stacks.erase(std::ranges::remove(this->stacks, stack).begin(), this->stacks.end()); 445} 446 447void BaseStack::add(Gtk::Widget &child, const Glib::ustring &name) { 448Gtk::Stack::add(child, name); 449signal_child_added.emit(&child); 450} 451 452void BaseStack::add(Gtk::Widget &child) { 453Gtk::Stack::add(child); 454signal_child_added.emit(&child); 455} 456 457void BaseStack::remove(Gtk::Widget &child) { 458Gtk::Stack::remove(child); 459signal_child_removed.emit(&child); 460} 461 462ContentStack::ContentStack(std::shared_ptr<ContentManager> content_manager, std::function<bool(ContentPage*)> detach_handler) 463: BaseStack(), content_manager(std::move(content_manager)) { 464this->set_name("gpanthera_content_stack"); 465this->content_manager->add_stack(this); 466if(detach_handler) { 467this->detach_handler = detach_handler; 468this->signal_detach.connect([this](ContentPage *widget) { 469return this->detach_handler(widget); 470}); 471} 472 473drop_target = Gtk::DropTarget::create(ContentPage::get_type(), Gdk::DragAction::MOVE); 474this->add_controller(drop_target); 475// Process dropped buttons 476drop_target->signal_drop().connect([this](const Glib::ValueBase& value, double x, double y) { 477const auto &widget = static_cast<const Glib::Value<ContentPage*>&>(value).get(); 478 479if(auto page = dynamic_cast<ContentPage*>(widget)) { 480page->lose_visibility(); 481if(page->get_stack() == this && !this->get_first_child()->get_next_sibling()) { 482// Don't allow splitting if there are no more pages 483return false; 484} 485if(!(page->content_manager == this->content_manager)) { 486// If the page is not in the same content manager, reject 487return false; 488} 489double width = this->get_allocated_width(), height = this->get_allocated_height(); 490// Split based on the drop position 491if(!(x < width / 4 || x > width * 3 / 4 || y < height / 4 || y > height * 3 / 4)) { 492// If the drop position is not at a quarter to the edges, move to the same stack 493this->add_page(*page); 494return true; 495} 496auto new_stack = Gtk::make_managed<ContentStack>(this->content_manager, this->detach_handler); 497auto this_notebook = dynamic_cast<ContentNotebook*>(this->get_parent()); 498auto new_switcher = Gtk::make_managed<ContentTabBar>(new_stack, this_notebook ? this_notebook->get_switcher()->get_orientation() : Gtk::Orientation::HORIZONTAL, this_notebook->get_switcher()->get_extra_child_function()); 499auto new_notebook = Gtk::make_managed<ContentNotebook>(new_stack, new_switcher, this_notebook ? this_notebook->get_tab_position() : Gtk::PositionType::TOP); 500new_stack->add_page(*page); 501new_stack->set_visible_child(*page); 502if(x < width / 4) { 503this->make_paned(Gtk::Orientation::HORIZONTAL, Gtk::PackType::START); 504if(auto paned = dynamic_cast<Gtk::Paned*>(this->get_parent()->get_parent())) { 505paned->set_start_child(*new_notebook); 506} 507} else if(x > width * 3 / 4) { 508this->make_paned(Gtk::Orientation::HORIZONTAL, Gtk::PackType::END); 509if(auto paned = dynamic_cast<Gtk::Paned*>(this->get_parent()->get_parent())) { 510paned->set_end_child(*new_notebook); 511} 512} else if(y < height / 4) { 513this->make_paned(Gtk::Orientation::VERTICAL, Gtk::PackType::START); 514if(auto paned = dynamic_cast<Gtk::Paned*>(this->get_parent()->get_parent())) { 515paned->set_start_child(*new_notebook); 516} 517} else if(y > height * 3 / 4) { 518this->make_paned(Gtk::Orientation::VERTICAL, Gtk::PackType::END); 519if(auto paned = dynamic_cast<Gtk::Paned*>(this->get_parent()->get_parent())) { 520paned->set_end_child(*new_notebook); 521} 522} 523} 524 525return true; // Drop OK 526}, false); 527} 528 529std::function<bool(ContentPage*)> ContentStack::get_detach_handler() const { 530return this->detach_handler; 531} 532 533ContentNotebook::ContentNotebook(ContentStack *stack, ContentTabBar *switcher, Gtk::PositionType tab_position) : Gtk::Box(), stack(stack), switcher(switcher), tab_position(tab_position) { 534this->append(*stack); 535if(tab_position == Gtk::PositionType::TOP || tab_position == Gtk::PositionType::BOTTOM) { 536this->set_orientation(Gtk::Orientation::VERTICAL); 537if(tab_position == Gtk::PositionType::TOP) { 538this->prepend(*switcher); 539} else if(tab_position == Gtk::PositionType::BOTTOM) { 540this->append(*switcher); 541} 542} else if(tab_position == Gtk::PositionType::LEFT || tab_position == Gtk::PositionType::RIGHT) { 543this->set_orientation(Gtk::Orientation::HORIZONTAL); 544if(tab_position == Gtk::PositionType::LEFT) { 545this->prepend(*switcher); 546} else if(tab_position == Gtk::PositionType::RIGHT) { 547this->append(*switcher); 548} 549} 550} 551 552void ContentStack::make_paned(Gtk::Orientation orientation, Gtk::PackType pack_type) { 553auto *parent = this->get_parent(); 554if(auto notebook = dynamic_cast<ContentNotebook*>(parent)) { 555auto *paned = Gtk::make_managed<Gtk::Paned>(orientation); 556if(auto parent_paned = dynamic_cast<Gtk::Paned*>(notebook->get_parent())) { 557if(parent_paned->get_start_child() == notebook) { 558notebook->unparent(); 559parent_paned->set_start_child(*paned); 560} else if(parent_paned->get_end_child() == notebook) { 561notebook->unparent(); 562parent_paned->set_end_child(*paned); 563} 564} else if(auto box = dynamic_cast<Gtk::Box*>(notebook->get_parent())) { 565auto previous_child = notebook->get_prev_sibling(); 566box->remove(*notebook); 567if(previous_child) { 568paned->insert_after(*box, *previous_child); 569} else { 570box->prepend(*paned); 571} 572} 573if(pack_type == Gtk::PackType::START) { 574paned->set_end_child(*notebook); 575} else if(pack_type == Gtk::PackType::END) { 576paned->set_start_child(*notebook); 577} 578} 579} 580 581ContentTabBar::ContentTabBar(ContentStack *stack, Gtk::Orientation orientation, std::function<Gtk::Widget*(Gtk::Widget*)> extra_child_function) : Gtk::Box(orientation), stack(stack), extra_child_function(extra_child_function) { 582this->get_style_context()->add_class("gpanthera-content-tab-bar"); 583this->set_margin_top(0); 584this->set_margin_bottom(0); 585this->set_margin_start(0); 586this->set_margin_end(0); 587 588auto update_callback = [this](Gtk::Widget*) { 589this->update_buttons(); 590}; 591this->property_accessible_role().set_value(Gtk::Accessible::Role::TAB_LIST); 592stack->signal_child_added.connect(update_callback); 593stack->signal_child_removed.connect(update_callback); 594drop_target = Gtk::DropTarget::create(ContentPage::get_type(), Gdk::DragAction::MOVE); 595this->add_controller(drop_target); 596// Process dropped buttons 597drop_target->signal_drop().connect([this](const Glib::ValueBase& value, double x, double y) { 598if(const auto &widget = static_cast<const Glib::Value<ContentPage*>&>(value).get()) { 599if(auto page = dynamic_cast<ContentPage*>(widget)) { 600this->stack->add_page(*page); 601} 602} 603 604return true; // Drop OK 605}, false); 606 607scrolled_window = Gtk::make_managed<Gtk::ScrolledWindow>(); 608auto viewport = Gtk::make_managed<Gtk::Viewport>(nullptr, nullptr); 609tab_box = Gtk::make_managed<Gtk::Box>(orientation); 610this->prepend(*scrolled_window); 611scrolled_window->set_child(*viewport); 612viewport->set_child(*tab_box); 613 614this->set_orientation(orientation); 615 616if(this->extra_child_function) { 617this->append(*this->extra_child_function(this)); 618} 619} 620 621std::function<Gtk::Widget*(Gtk::Widget*)> ContentTabBar::get_extra_child_function() const { 622return this->extra_child_function; 623} 624 625void ContentTabBar::set_orientation(Gtk::Orientation orientation) { 626this->Gtk::Box::set_orientation(orientation); 627if(orientation == Gtk::Orientation::HORIZONTAL) { 628scrolled_window->set_policy(Gtk::PolicyType::AUTOMATIC, Gtk::PolicyType::NEVER); 629tab_box->set_orientation(Gtk::Orientation::HORIZONTAL); 630scrolled_window->set_hexpand(true); 631scrolled_window->set_vexpand(false); 632} else if(orientation == Gtk::Orientation::VERTICAL) { 633scrolled_window->set_policy(Gtk::PolicyType::NEVER, Gtk::PolicyType::AUTOMATIC); 634tab_box->set_orientation(Gtk::Orientation::VERTICAL); 635scrolled_window->set_vexpand(true); 636scrolled_window->set_hexpand(false); 637} 638} 639 640ContentTabBar::~ContentTabBar() { 641add_handler.disconnect(); 642remove_handler.disconnect(); 643} 644 645ContentStack *ContentTabBar::get_stack() const { 646return stack; 647} 648 649void ContentTabBar::update_buttons() { 650// Clear the old buttons 651auto old_buttons = collect_children(*this->tab_box); 652for(auto *button : old_buttons) { 653if(auto *button_button = dynamic_cast<Gtk::Button*>(button)) { 654button_button->unset_child(); 655tab_box->remove(*button); 656} 657} 658ContentTab* first_child = nullptr; 659for(auto *widget = stack->get_first_child(); widget; widget = widget->get_next_sibling()) { 660if(auto page = dynamic_cast<ContentPage*>(widget)) { 661auto *button = Gtk::make_managed<ContentTab>(page); 662if(!first_child) { 663first_child = button; 664} else { 665button->set_group(*first_child); 666} 667this->tab_box->append(*button); 668} 669} 670} 671 672void ContentStack::add_page(ContentPage &child) { 673child.redock(this); 674} 675 676void ContentStack::remove_with_paned() { 677if(auto paned = dynamic_cast<Gtk::Paned*>(this->get_parent()->get_parent())) { 678Gtk::Widget *child = nullptr; 679if(this->get_parent() == paned->get_start_child()) { 680child = paned->get_end_child(); 681} else if(this->get_parent() == paned->get_end_child()) { 682child = paned->get_start_child(); 683} else { 684return; 685} 686 687g_object_ref(child->gobj()); // Prevent the child from being automatically deleted 688paned->property_start_child().reset_value(); // Some hacks because the Gtkmm API isn't complete; it doesn't have an unset_start_child() or unset_end_child() 689paned->property_end_child().reset_value(); 690 691if(child) { 692if(auto parent_paned = dynamic_cast<Gtk::Paned*>(paned->get_parent())) { 693if(parent_paned->get_start_child() == paned) { 694parent_paned->set_start_child(*child); 695} else if(parent_paned->get_end_child() == paned) { 696parent_paned->set_end_child(*child); 697} 698} else if(auto box = dynamic_cast<Gtk::Box*>(paned->get_parent())) { 699child->insert_after(*box, *paned); 700paned->unparent(); 701g_object_unref(child->gobj()); 702} 703} 704} 705} 706 707ContentTab::ContentTab(ContentPage *page) : Gtk::ToggleButton(), page(page) { 708this->set_child(*page->get_tab_widget()); 709this->property_accessible_role().set_value(Gtk::Accessible::Role::TAB); 710this->set_halign(Gtk::Align::CENTER); 711this->set_valign(Gtk::Align::CENTER); 712this->get_style_context()->add_class("toggle"); 713this->get_style_context()->add_class("gpanthera-content-tab"); 714// Add/remove CSS classes when the pane is shown/hidden 715active_style_handler = this->page->get_stack()->property_visible_child().signal_changed().connect([this]() { 716this->update_active_style(); 717}); 718drag_source = Gtk::DragSource::create(); 719drag_source->set_exclusive(false); 720// This is to prevent the click handler from taking over grabbing the button 721drag_source->set_propagation_phase(Gtk::PropagationPhase::CAPTURE); 722value.init(ContentPage::get_type()); 723value.set(page); 724// Add the drag source to the button 725this->add_controller(drag_source); 726this->signal_clicked().connect([this, page]() { 727page->get_stack()->set_visible_child(*page); 728update_active_style(); 729}); 730// Switch tabs on depress 731auto gesture_click = Gtk::GestureClick::create(); 732gesture_click->set_button(1); 733this->add_controller(gesture_click); 734gesture_click->signal_pressed().connect([this, page](int num_presses, double x, double y) { 735page->get_stack()->set_visible_child(*page); 736update_active_style(); 737}); 738// Provide the drag data 739drag_source->signal_prepare().connect([this](double, double) { 740drag_source->set_actions(Gdk::DragAction::MOVE); 741auto const paintable = Gtk::WidgetPaintable::create(); 742paintable->set_widget(*this); 743drag_source->set_icon(paintable->get_current_image(), 0, 0); 744return Gdk::ContentProvider::create(value); 745}, false); 746update_active_style(); 747drag_source->signal_drag_begin().connect([this](const Glib::RefPtr<Gdk::Drag>&) { 748this->set_opacity(0); 749}, false); 750drop_target = Gtk::DropTarget::create(ContentPage::get_type(), Gdk::DragAction::MOVE); 751// Process dropped buttons by inserting them after the current button 752drop_target->signal_drop().connect([this](const Glib::ValueBase& value, double x, double y) { 753const auto &widget = static_cast<const Glib::Value<ContentPage*>&>(value).get(); 754 755if(widget) { 756if(auto page = dynamic_cast<ContentPage*>(widget)) { 757if(page->content_manager != this->page->content_manager) { 758// If the pane is not in the same layout manager, reject 759return false; 760} 761auto switcher = dynamic_cast<ContentTabBar*>(this->get_parent()->get_parent()->get_parent()->get_parent()); 762if(switcher) { 763auto *stack = switcher->get_stack(); 764// Move the button to the new position 765page->redock(stack); 766if(switcher->get_orientation() == Gtk::Orientation::HORIZONTAL) { 767if(x < static_cast<double>(this->get_allocated_width()) / 2) { 768page->insert_before(*stack, *this->page); 769} else { 770page->insert_after(*stack, *this->page); 771} 772} else if(switcher->get_orientation() == Gtk::Orientation::VERTICAL) { 773if(y < static_cast<double>(this->get_allocated_height()) / 2) { 774page->insert_before(*stack, *this->page); 775} else { 776page->insert_after(*stack, *this->page); 777} 778} 779 780switcher->update_buttons(); 781} 782} 783} 784 785return true; // Drop OK 786}, false); 787this->add_controller(drop_target); 788// Pop out if dragged to an external location 789drag_source->signal_drag_cancel().connect([this](const Glib::RefPtr<Gdk::Drag>&, Gdk::DragCancelReason reason) { 790if(reason == Gdk::DragCancelReason::NO_TARGET) { 791auto stack = dynamic_cast<ContentStack*>(this->page->get_stack()); 792bool result = stack->signal_detach.emit(this->page); 793if(!result) { 794this->set_opacity(1); 795} 796return result; 797} 798this->set_opacity(1); 799return false; 800}, false); 801 802// Provide a context menu 803context_menu = Gio::Menu::create(); 804auto action_group = Gio::SimpleActionGroup::create(); 805this->insert_action_group("win", action_group); 806 807auto close_action = Gio::SimpleAction::create("close"); 808close_action->signal_activate().connect([this](const Glib::VariantBase&) { 809if(!this->page->signal_close.emit()) { 810if(this->page->get_next_sibling()) { 811this->page->get_stack()->set_visible_child(*this->page->get_next_sibling()); 812} else if(this->page->get_prev_sibling()) { 813this->page->get_stack()->set_visible_child(*this->page->get_prev_sibling()); 814} 815this->page->redock(nullptr); 816} 817}); 818action_group->add_action(close_action); 819context_menu->append(_("Close"), "win.close"); 820 821auto close_all_action = Gio::SimpleAction::create("close-all"); 822close_all_action->signal_activate().connect([this](const Glib::VariantBase&) { 823for(auto page : collect_children(*this->page->get_stack())) { 824if(auto content_page = dynamic_cast<ContentPage*>(page)) { 825if(!content_page->signal_close.emit()) { 826content_page->redock(nullptr); 827} 828} 829} 830}); 831action_group->add_action(close_all_action); 832context_menu->append(_("Close all"), "win.close-all"); 833 834auto close_others_action = Gio::SimpleAction::create("close-others"); 835close_others_action->signal_activate().connect([this](const Glib::VariantBase&) { 836for(auto page : collect_children(*this->page->get_stack())) { 837if(auto content_page = dynamic_cast<ContentPage*>(page)) { 838if(content_page != this->page && !content_page->signal_close.emit()) { 839content_page->redock(nullptr); 840} 841} 842} 843}); 844action_group->add_action(close_others_action); 845context_menu->append(_("Close others"), "win.close-others"); 846 847auto detach_action = Gio::SimpleAction::create("detach"); 848detach_action->signal_activate().connect([this](const Glib::VariantBase&) { 849auto stack = dynamic_cast<ContentStack*>(this->page->get_stack()); 850bool result = stack->signal_detach.emit(this->page); 851}); 852action_group->add_action(detach_action); 853context_menu->append(_("New window"), "win.detach"); 854 855// TODO: Add more actions: "New window", "Split left", "Split right", "Split top", "Split bottom", "Close all", "Close others", "Close to the right", "Close to the left" 856this->insert_action_group("win", action_group); 857// Attach the context menu to the button 858auto context_menu_signal = add_context_menu(*this); 859context_menu_signal.connect([this, action_group](double x, double y) { 860if(this->context_menu) { 861auto popover = Gtk::make_managed<Gtk::PopoverMenu>(); 862popover->set_menu_model(context_menu); 863popover->set_parent(*this); 864popover->set_has_arrow(false); 865popover->set_halign(Gtk::Align::START); 866popover->set_pointing_to(Gdk::Rectangle(x, y, 1, 1)); 867popover->popup(); 868} 869}); 870} 871 872void ContentTab::update_active_style() { 873if(this->page->get_stack()->get_visible_child() == this->page) { 874this->add_css_class("checked"); 875this->add_css_class("gpanthera-dock-button-active"); 876this->set_active(true); 877} else { 878this->remove_css_class("checked"); 879this->remove_css_class("gpanthera-dock-button-active"); 880this->set_active(false); 881} 882} 883 884ContentTab::~ContentTab() { 885active_style_handler.disconnect(); 886} 887 888Gtk::Widget *ContentPage::get_tab_widget() const { 889return this->tab_widget; 890} 891 892ContentStack *ContentPage::get_stack() const { 893return this->stack; 894} 895 896void ContentPage::lose_visibility() { 897if(this->get_next_sibling()) { 898this->get_stack()->set_visible_child(*this->get_next_sibling()); 899} else if(this->get_prev_sibling()) { 900this->get_stack()->set_visible_child(*this->get_prev_sibling()); 901} 902} 903 904void ContentPage::redock(ContentStack *stack) { 905if(stack == nullptr) { 906if(this->stack) { 907this->stack->remove(*this); 908if(dynamic_cast<ContentNotebook*>(this->stack->get_parent()) && !this->stack->get_first_child()) { 909this->stack->remove_with_paned(); 910} 911} 912auto old_stack = this->stack; 913if(old_stack) { 914if(!old_stack->get_first_child()) { 915old_stack->signal_leave_empty.emit(); 916} 917} 918this->stack = nullptr; 919this->last_stack = nullptr; 920return; 921} 922// Check if the stack is now empty, in which case we should remove it 923if(this->stack == stack) { 924return; 925} 926if(this->stack != nullptr) { 927if(dynamic_cast<ContentNotebook*>(this->stack->get_parent()) && (!this->stack->get_first_child() || (this->stack->get_first_child() == this && !this->stack->get_first_child()->get_next_sibling()))) { 928this->stack->remove(*this); 929this->stack->remove_with_paned(); 930} else if(this->get_parent() == this->stack) { 931this->stack->remove(*this); 932} 933} 934auto old_stack = this->stack; 935this->stack = stack; 936this->last_stack = stack; 937this->stack->add(*this); 938if(old_stack) { 939if(!old_stack->get_first_child()) { 940old_stack->signal_leave_empty.emit(); 941} 942} 943} 944 945ContentPage::ContentPage(std::shared_ptr<ContentManager> content_manager, ContentStack *stack, Gtk::Widget *child, Gtk::Widget *tab_widget) : 946Gtk::Overlay(), content_manager(std::move(content_manager)), child(child), tab_widget(tab_widget) { 947this->set_name("gpanthera_content_page"); 948this->set_child(*child); 949this->set_tab_widget(tab_widget); 950this->set_margin_top(0); 951this->set_margin_bottom(0); 952this->set_margin_start(0); 953this->set_margin_end(0); 954if(stack) { 955stack->add_page(*this); 956this->content_manager->add_stack(this->stack); 957} 958} 959 960ContentManager::ContentManager() : Glib::ObjectBase("ContentManager") { 961} 962 963void ContentPage::set_tab_widget(Gtk::Widget *tab_widget) { 964this->tab_widget = tab_widget; 965} 966 967ContentWindow::ContentWindow(ContentNotebook *notebook) : notebook(notebook) { 968this->set_child(*notebook); 969this->set_decorated(true); 970this->set_resizable(true); 971} 972 973Gtk::PositionType ContentNotebook::get_tab_position() const { 974return this->tab_position; 975} 976 977ContentTabBar *ContentNotebook::get_switcher() const { 978return this->switcher; 979} 980 981ContentStack *ContentNotebook::get_stack() const { 982return this->stack; 983} 984} // namespace gPanthera 985