mirror of https://github.com/YGGverse/Yoda.git
yggverse
4 months ago
5 changed files with 162 additions and 0 deletions
@ -0,0 +1,84 @@ |
|||||||
|
#include "append.h" |
||||||
|
|
||||||
|
namespace app::browser::header::menu::main::tab |
||||||
|
{ |
||||||
|
// Construct
|
||||||
|
Append::Append( |
||||||
|
Tab *tab |
||||||
|
) { |
||||||
|
// Init dependencies
|
||||||
|
this->tab = tab; |
||||||
|
|
||||||
|
// Init action object
|
||||||
|
this->action = g_simple_action_new( |
||||||
|
Append::ACTION_ID, |
||||||
|
NULL |
||||||
|
); |
||||||
|
|
||||||
|
g_action_map_add_action( |
||||||
|
G_ACTION_MAP( |
||||||
|
this->tab->main->menu->header->browser->app |
||||||
|
), |
||||||
|
G_ACTION( |
||||||
|
this->action |
||||||
|
) |
||||||
|
); |
||||||
|
|
||||||
|
// Init action NS
|
||||||
|
gchar action[255]; |
||||||
|
|
||||||
|
g_snprintf( |
||||||
|
action, |
||||||
|
sizeof( |
||||||
|
action |
||||||
|
), |
||||||
|
Append::ACTION_NS, |
||||||
|
Append::ACTION_ID |
||||||
|
); |
||||||
|
|
||||||
|
// Init keyboard accelerators
|
||||||
|
// https://docs.gtk.org/gtk4/func.accelerator_parse.html
|
||||||
|
const gchar *accels[] = { |
||||||
|
Append::ACCEL_1, // First accelerator
|
||||||
|
Append::ACCEL_2, // Second accelerator
|
||||||
|
NULL |
||||||
|
}; |
||||||
|
|
||||||
|
gtk_application_set_accels_for_action( |
||||||
|
GTK_APPLICATION( |
||||||
|
this->tab->main->menu->header->browser->app |
||||||
|
), |
||||||
|
action, |
||||||
|
accels |
||||||
|
); |
||||||
|
|
||||||
|
// Init menu item object
|
||||||
|
this->item = g_menu_item_new( |
||||||
|
Append::LABEL, |
||||||
|
action |
||||||
|
); |
||||||
|
|
||||||
|
// Connect events
|
||||||
|
g_signal_connect( |
||||||
|
G_SIMPLE_ACTION( |
||||||
|
this->action |
||||||
|
), |
||||||
|
"activate", |
||||||
|
G_CALLBACK( |
||||||
|
Append::_activate |
||||||
|
), |
||||||
|
G_APPLICATION( |
||||||
|
this->tab->main->menu->header->browser->app |
||||||
|
) |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
// Events
|
||||||
|
void Append::_activate( |
||||||
|
GSimpleAction* action, |
||||||
|
GVariant* parameter, |
||||||
|
gpointer user_data |
||||||
|
) { |
||||||
|
// @TODO
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,51 @@ |
|||||||
|
#ifndef APP_BROWSER_HEADER_MENU_MAIN_TAB_APPEND_H |
||||||
|
#define APP_BROWSER_HEADER_MENU_MAIN_TAB_APPEND_H |
||||||
|
|
||||||
|
#include "../tab.h" |
||||||
|
|
||||||
|
namespace app::browser::header::menu::main |
||||||
|
{ |
||||||
|
class Tab; |
||||||
|
|
||||||
|
namespace tab |
||||||
|
{ |
||||||
|
class Append |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
// GTK
|
||||||
|
GMenuItem *item; |
||||||
|
|
||||||
|
// Gio
|
||||||
|
GSimpleAction *action; |
||||||
|
|
||||||
|
// Dependencies
|
||||||
|
Tab *tab; |
||||||
|
|
||||||
|
// Defaults
|
||||||
|
const gchar *LABEL = "New tab"; |
||||||
|
|
||||||
|
const gchar *ACCEL_1 = "<Control>t"; |
||||||
|
const gchar *ACCEL_2 = "<Control>T"; |
||||||
|
|
||||||
|
const gchar *ACTION_NS = "app.%s"; |
||||||
|
const gchar *ACTION_ID = "browser.header.menu.main.tab.append.activate"; |
||||||
|
|
||||||
|
// Construct
|
||||||
|
Append( |
||||||
|
Tab *tab |
||||||
|
); |
||||||
|
|
||||||
|
private: |
||||||
|
|
||||||
|
// Events
|
||||||
|
static void _activate( |
||||||
|
GSimpleAction* action, |
||||||
|
GVariant* parameter, |
||||||
|
gpointer user_data |
||||||
|
); |
||||||
|
}; |
||||||
|
}; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif |
Loading…
Reference in new issue