1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
#include "form_view_base.h"
#include "plugin_editor_base.h"
#include <gtkmm/box.h>
#include <gtkmm/label.h>
#include <gtkmm/eventbox.h>
#include <gtkmm/window.h>
#include "active_label.h"
bool FormViewBase::close_plugin_tab(PluginEditorBase *editor)
{
if (editor->can_close())
{
_close_editor(editor);
remove_plugin_tab(editor);
}
else
return false;
bool has_visible_tabs = false;
for (int c= _editor_note->get_n_pages(), i= 0; i < c; i++)
{
if (_editor_note->get_nth_page(i)->is_visible())
{
has_visible_tabs = true;
break;
}
}
if (!has_visible_tabs)
_editor_note->hide();
return false;
}
void FormViewBase::set_close_editor_callback(const sigc::slot<void, PluginEditorBase*> &handler)
{
_close_editor = handler;
}
void FormViewBase::add_plugin_tab(PluginEditorBase *plugin)
{
if (_editor_note)
{
ActiveLabel* label = Gtk::manage(new ActiveLabel(plugin->get_title(), sigc::hide_return(sigc::bind(sigc::mem_fun(this, &FormViewBase::close_plugin_tab), plugin))));
_editor_note->append_page(*plugin, *label);
plugin->signal_title_changed().connect(sigc::mem_fun(label, &ActiveLabel::set_text));
if (!_editor_note->is_visible())
{
_editor_note->show();
reset_layout();
}
plugin_tab_added(plugin);
}
else
g_warning("active form doesn't support editor tabs");
}
void FormViewBase::remove_plugin_tab(PluginEditorBase *plugin)
{
if (_editor_note)
{
_editor_note->remove_page(*plugin);
if (_editor_note->get_n_pages() == 0)
_editor_note->hide();
}
}
bool FormViewBase::close_editors_for_object(const std::string &id)
{
for (int i= _editor_note->get_n_pages()-1; i >= 0; --i)
{
Gtk::Widget *panel= _editor_note->get_nth_page(i);
PluginEditorBase* editor;
if ((editor= dynamic_cast<PluginEditorBase*>(panel))
&& (id.empty() || editor->should_close_on_delete_of(id)))
{
remove_plugin_tab(editor);
return true;
}
}
return false;
}
PluginEditorBase *FormViewBase::get_focused_plugin_tab()
{
if (_editor_note)
{
Gtk::Widget *focused= dynamic_cast<Gtk::Window*>(_editor_note->get_toplevel())->get_focus();
// go up the hierarchy to see if the focused widget is inside _editor_note
while (focused && focused != _editor_note)
focused= focused->get_parent();
if (focused)
{
int page= _editor_note->get_current_page();
if (page >= 0)
{
Gtk::Widget *tab= _editor_note->get_nth_page(page);
return dynamic_cast<PluginEditorBase*>(tab);
}
}
}
return 0;
}
bool FormViewBase::close_focused_tab()
{
PluginEditorBase *active = get_focused_plugin_tab();
if (active)
{
close_plugin_tab(active);
return true;
}
return false;
}
|