Horizon
help_button.hpp
1 #pragma once
2 #include <gtkmm.h>
3 
4 namespace horizon {
5 class HelpButton : public Gtk::MenuButton {
6 public:
7  HelpButton(const std::string &markup);
8  static void pack_into(Gtk::Box &box, const std::string &markup);
9  static void pack_into(const Glib::RefPtr<Gtk::Builder> &x, const char *widget, const std::string &markup);
10 };
11 
12 } // namespace horizon