mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
6 changed files with 87 additions and 46 deletions
@ -0,0 +1,44 @@ |
|||||||
|
#include "label.hpp" |
||||||
|
|
||||||
|
using namespace app::browser::main::tab; |
||||||
|
|
||||||
|
Label::Label() |
||||||
|
{ |
||||||
|
set_text( |
||||||
|
_("New tab") |
||||||
|
); |
||||||
|
|
||||||
|
// Setup label controller
|
||||||
|
controller = Gtk::GestureClick::create(); |
||||||
|
|
||||||
|
/* @TODO remove as default
|
||||||
|
controller->set_button( |
||||||
|
GDK_BUTTON_PRIMARY |
||||||
|
);*/ |
||||||
|
|
||||||
|
controller->signal_pressed().connect( |
||||||
|
sigc::mem_fun( |
||||||
|
* this, |
||||||
|
& Label::on_click |
||||||
|
) |
||||||
|
); |
||||||
|
|
||||||
|
add_controller( |
||||||
|
controller |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
Label::~Label() = default; |
||||||
|
|
||||||
|
void Label::on_click( |
||||||
|
int n, |
||||||
|
double x, |
||||||
|
double y |
||||||
|
) { |
||||||
|
if (n == 2) // double click
|
||||||
|
{ |
||||||
|
//Tab::close(
|
||||||
|
// -1 // active
|
||||||
|
//);
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,31 @@ |
|||||||
|
#ifndef APP_BROWSER_MAIN_TAB_LABEL_HPP |
||||||
|
#define APP_BROWSER_MAIN_TAB_LABEL_HPP |
||||||
|
|
||||||
|
#include <glibmm/i18n.h> |
||||||
|
#include <glibmm/refptr.h> |
||||||
|
#include <gtkmm/gestureclick.h> |
||||||
|
#include <gtkmm/label.h> |
||||||
|
|
||||||
|
namespace app::browser::main::tab |
||||||
|
{ |
||||||
|
class Label : public Gtk::Label |
||||||
|
{ |
||||||
|
private: |
||||||
|
|
||||||
|
Glib::RefPtr<Gtk::GestureClick> controller; |
||||||
|
|
||||||
|
void on_click( |
||||||
|
int n, |
||||||
|
double x, |
||||||
|
double y |
||||||
|
); |
||||||
|
|
||||||
|
public: |
||||||
|
|
||||||
|
Label(); |
||||||
|
|
||||||
|
~Label(); |
||||||
|
}; |
||||||
|
} |
||||||
|
|
||||||
|
#endif // APP_BROWSER_MAIN_TAB_LABEL_HPP
|
Loading…
Reference in new issue