Yoda/src/app/browser/main/tab/label.hpp
2024-09-08 17:58:40 +03:00

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