mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
25 lines
No EOL
568 B
C++
25 lines
No EOL
568 B
C++
#ifndef APP_BROWSER_MAIN_TAB_LABEL_HPP
|
|
#define APP_BROWSER_MAIN_TAB_LABEL_HPP
|
|
|
|
#include <giomm/simpleaction.h>
|
|
#include <glibmm/i18n.h>
|
|
#include <glibmm/refptr.h>
|
|
#include <glibmm/ustring.h>
|
|
#include <gtkmm/gestureclick.h>
|
|
#include <gtkmm/label.h>
|
|
|
|
namespace app::browser::main::tab
|
|
{
|
|
class Label : public Gtk::Label
|
|
{
|
|
Glib::RefPtr<Gio::SimpleAction> action__close_active;
|
|
|
|
public:
|
|
|
|
Label(
|
|
const Glib::RefPtr<Gio::SimpleAction> & ACTION__CLOSE_ACTIVE
|
|
);
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_MAIN_TAB_LABEL_HPP
|