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 134 135
|
/* Shortcuts Window
*
* Gtk::ShortcutsWindow is a window that provides a help overlay
* for shortcuts and gestures in an application.
*/
#include <gtkmm.h>
#include <iostream> // For std::cout
class Example_Shortcuts : public Gtk::Window
{
public:
Example_Shortcuts(BaseObjectType* cobject,
const Glib::RefPtr<Gtk::Builder>& builder);
~Example_Shortcuts() override;
protected:
// Signal handler:
void on_button_clicked(const Glib::ustring& id, const Glib::ustring& view);
Glib::RefPtr<Gtk::Builder> m_builder;
};
// Called by DemoWindow:
Gtk::Window* do_shortcuts()
{
// Load the XML file and instantiate its widgets:
Glib::RefPtr<Gtk::Builder> builder = Gtk::Builder::create();
try
{
builder->add_from_resource("/shortcuts/example_shortcuts.ui");
}
catch (const Glib::Error& error)
{
std::cout << "Error loading example_shortcuts.ui: " << error.what() << std::endl;
return nullptr;
}
// Get the GtkBuilder-instantiated window:
Example_Shortcuts* pWindow = nullptr;
builder->get_widget_derived("window1", pWindow);
if (!pWindow)
{
std::cout << "Could not get 'window1' from the builder." << std::endl;
return nullptr;
}
return pWindow;
}
Example_Shortcuts::Example_Shortcuts(
BaseObjectType* cobject, const Glib::RefPtr<Gtk::Builder>& builder)
: Gtk::Window(cobject),
m_builder(builder)
{
Gtk::Button* pButton = nullptr;
builder->get_widget("button_builder", pButton);
if (pButton)
pButton->signal_clicked().connect(sigc::bind(sigc::mem_fun(
*this, &Example_Shortcuts::on_button_clicked), "shortcuts_builder", ""));
pButton = nullptr;
builder->get_widget("button_gedit", pButton);
if (pButton)
pButton->signal_clicked().connect(sigc::bind(sigc::mem_fun(
*this, &Example_Shortcuts::on_button_clicked), "shortcuts_gedit", ""));
pButton = nullptr;
builder->get_widget("button_clocks", pButton);
if (pButton)
pButton->signal_clicked().connect(sigc::bind(sigc::mem_fun(
*this, &Example_Shortcuts::on_button_clicked), "shortcuts_clocks", ""));
pButton = nullptr;
builder->get_widget("button_clocks_stopwatch", pButton);
if (pButton)
pButton->signal_clicked().connect(sigc::bind(sigc::mem_fun(
*this, &Example_Shortcuts::on_button_clicked), "shortcuts_clocks", "stopwatch"));
pButton = nullptr;
builder->get_widget("button_boxes", pButton);
if (pButton)
pButton->signal_clicked().connect(sigc::bind(sigc::mem_fun(
*this, &Example_Shortcuts::on_button_clicked), "shortcuts_boxes", ""));
pButton = nullptr;
builder->get_widget("button_boxes_wizard", pButton);
if (pButton)
pButton->signal_clicked().connect(sigc::bind(sigc::mem_fun(
*this, &Example_Shortcuts::on_button_clicked), "shortcuts_boxes", "wizard"));
pButton = nullptr;
builder->get_widget("button_boxes_display", pButton);
if (pButton)
pButton->signal_clicked().connect(sigc::bind(sigc::mem_fun(
*this, &Example_Shortcuts::on_button_clicked), "shortcuts_boxes", "display"));
show_all();
}
Example_Shortcuts::~Example_Shortcuts()
{
}
void Example_Shortcuts::on_button_clicked(const Glib::ustring& id, const Glib::ustring& view)
{
Glib::RefPtr<Gtk::Builder> builder = Gtk::Builder::create();
try
{
builder->add_from_resource("/shortcuts/example_" + id.raw() + ".ui");
}
catch (const Glib::Error& error)
{
std::cout << "Error loading example_" << id << ".ui: " << error.what() << std::endl;
return;
}
// Get the GtkBuilder-instantiated shortcuts window:
Gtk::ShortcutsWindow* pOverlay = nullptr;
builder->get_widget(id, pOverlay);
if (!pOverlay)
{
std::cout << "Could not get '"<< id << "' from the builder." << std::endl;
return;
}
pOverlay->set_transient_for(*this);
if (view.empty())
pOverlay->unset_view_name();
else
pOverlay->property_view_name() = view;
pOverlay->show();
}
|