forked from Miroirs/x49gp
Compare commits
3 commits
a00d3ecef7
...
dfd97b548a
Author | SHA1 | Date | |
---|---|---|---|
|
dfd97b548a | ||
|
cb8574f7d8 | ||
|
e6b9ff86db |
1 changed files with 37 additions and 39 deletions
|
@ -1452,7 +1452,7 @@ static gboolean react_to_key_event( GtkWidget* widget, GdkEventKey* event, gpoin
|
||||||
if ( ui->menu_debug )
|
if ( ui->menu_debug )
|
||||||
gtk_widget_set_sensitive( ui->menu_debug, !gdbserver_isactive() );
|
gtk_widget_set_sensitive( ui->menu_debug, !gdbserver_isactive() );
|
||||||
|
|
||||||
gtk_menu_popup_at_widget( GTK_MENU( ui->menu ), ui->lcd_canvas, GDK_GRAVITY_NORTH_WEST, GDK_GRAVITY_NORTH_WEST, NULL );
|
gtk_menu_popup_at_widget( GTK_MENU( ui->menu ), ui->window, GDK_GRAVITY_NORTH_WEST, GDK_GRAVITY_NORTH_WEST, NULL );
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
@ -1544,7 +1544,7 @@ static gboolean react_to_window_click( GtkWidget* widget, GdkEventButton* event,
|
||||||
fprintf( stderr, "clipboard: %s\n", text );
|
fprintf( stderr, "clipboard: %s\n", text );
|
||||||
break;
|
break;
|
||||||
case 3: // right click
|
case 3: // right click
|
||||||
gtk_menu_popup_at_widget( GTK_MENU( ui->menu ), ui->lcd_canvas, GDK_GRAVITY_NORTH_WEST, GDK_GRAVITY_NORTH_WEST, NULL );
|
gtk_menu_popup_at_pointer( GTK_MENU( ui->menu ), NULL );
|
||||||
return true;
|
return true;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
@ -1741,6 +1741,13 @@ static int ui_load( x49gp_module_t* module, GKeyFile* keyfile )
|
||||||
// create window and widgets/stuff
|
// create window and widgets/stuff
|
||||||
GtkWidget* fixed_widgets_container = gtk_fixed_new();
|
GtkWidget* fixed_widgets_container = gtk_fixed_new();
|
||||||
{
|
{
|
||||||
|
ui->ui_ann_left = _ui_load__create_annunciator_widget( ui, "⮢" );
|
||||||
|
ui->ui_ann_right = _ui_load__create_annunciator_widget( ui, "⮣" );
|
||||||
|
ui->ui_ann_alpha = _ui_load__create_annunciator_widget( ui, "α" );
|
||||||
|
ui->ui_ann_battery = _ui_load__create_annunciator_widget( ui, "🪫" );
|
||||||
|
ui->ui_ann_busy = _ui_load__create_annunciator_widget( ui, "⌛" );
|
||||||
|
ui->ui_ann_io = _ui_load__create_annunciator_widget( ui, "⇄" );
|
||||||
|
|
||||||
ui->window = gtk_window_new( GTK_WINDOW_TOPLEVEL );
|
ui->window = gtk_window_new( GTK_WINDOW_TOPLEVEL );
|
||||||
gtk_window_set_default_size( GTK_WINDOW( ui->window ), ui->width, ui->height );
|
gtk_window_set_default_size( GTK_WINDOW( ui->window ), ui->width, ui->height );
|
||||||
gtk_window_set_accept_focus( GTK_WINDOW( ui->window ), true );
|
gtk_window_set_accept_focus( GTK_WINDOW( ui->window ), true );
|
||||||
|
@ -1770,15 +1777,6 @@ static int ui_load( x49gp_module_t* module, GKeyFile* keyfile )
|
||||||
gtk_box_set_homogeneous( GTK_BOX( annunciators_container ), true );
|
gtk_box_set_homogeneous( GTK_BOX( annunciators_container ), true );
|
||||||
gtk_widget_set_size_request( annunciators_container, ui->lcd_width, ANN_HEIGHT );
|
gtk_widget_set_size_request( annunciators_container, ui->lcd_width, ANN_HEIGHT );
|
||||||
gtk_style_context_add_class( gtk_widget_get_style_context( annunciators_container ), "annunciators-container" );
|
gtk_style_context_add_class( gtk_widget_get_style_context( annunciators_container ), "annunciators-container" );
|
||||||
gtk_fixed_put( GTK_FIXED( fixed_widgets_container ), annunciators_container, ui->annunciators_x_offset, ui->annunciators_y_offset );
|
|
||||||
|
|
||||||
ui->ui_ann_left = _ui_load__create_annunciator_widget( ui, "⮢" );
|
|
||||||
ui->ui_ann_right = _ui_load__create_annunciator_widget( ui, "⮣" );
|
|
||||||
ui->ui_ann_alpha = _ui_load__create_annunciator_widget( ui, "α" );
|
|
||||||
ui->ui_ann_battery = _ui_load__create_annunciator_widget( ui, "🪫" );
|
|
||||||
ui->ui_ann_busy = _ui_load__create_annunciator_widget( ui, "⌛" );
|
|
||||||
ui->ui_ann_io = _ui_load__create_annunciator_widget( ui, "⇄" );
|
|
||||||
|
|
||||||
gtk_container_add( GTK_CONTAINER( annunciators_container ), ui->ui_ann_left );
|
gtk_container_add( GTK_CONTAINER( annunciators_container ), ui->ui_ann_left );
|
||||||
gtk_container_add( GTK_CONTAINER( annunciators_container ), ui->ui_ann_right );
|
gtk_container_add( GTK_CONTAINER( annunciators_container ), ui->ui_ann_right );
|
||||||
gtk_container_add( GTK_CONTAINER( annunciators_container ), ui->ui_ann_alpha );
|
gtk_container_add( GTK_CONTAINER( annunciators_container ), ui->ui_ann_alpha );
|
||||||
|
|
Loading…
Reference in a new issue