Files
kichikuou 2e828710ca gtk: Fix popup menu on Wayland
gtk_menu_popup() is deprecated since GTK 3.22. Since no GdkEvent is
available at the call site, use gtk_menu_popup_at_rect() with the
current pointer position obtained via gdk_device_get_position().
2026-05-03 16:37:28 +09:00

174 lines
4.8 KiB
C

/*
* menu.c popup menu
*
* Copyright (C) 2000- Masaki Chikama (Wren) <masaki-c@is.aist-nara.ac.jp>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/* $Id: menu.c,v 1.14 2002/09/18 13:16:22 chikama Exp $ */
#include <stdio.h>
#include <gtk/gtk.h>
#include <string.h>
#include "portab.h"
#include "menu.h"
#include "menu_gui.h"
#include "menu_callback.h"
#include "nact.h"
#include "input.h"
#include "msgskip.h"
static bool menu_initilized = false;
static int menu_callback() {
sys_getInputInfo();
return true;
}
void menu_open(void) {
if (!menu_initilized) return;
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(menu_item_msgskip_on), msgskip_isActivated());
gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM(menu_item_msgskip_off), !msgskip_isActivated());
GdkDisplay *display = gdk_display_get_default();
GdkDevice *device = gdk_seat_get_pointer(gdk_display_get_default_seat(display));
GdkScreen *screen;
gint x, y;
gdk_device_get_position(device, &screen, &x, &y);
GdkRectangle rect = {x, y, 1, 1};
gtk_menu_popup_at_rect(
GTK_MENU(menu_window_popup), gdk_screen_get_root_window(screen),
&rect, GDK_GRAVITY_NORTH_WEST, GDK_GRAVITY_NORTH_WEST, NULL);
gtk_widget_show(menu_window_popup);
nact->popupmenu_opened = true;
}
void menu_quitmenu_open(void) {
if (!menu_initilized) return;
gtk_widget_show(menu_window_exit);
nact->popupmenu_opened = true;
}
bool menu_inputstring(INPUTSTRING_PARAM *p) {
char s[256];
if (!menu_initilized) return false;
menu_ok_input = false;
gtk_label_set_text(GTK_LABEL(menu_label_inputstring_title), p->title);
sprintf(s, _("MAX %d charater"), p->max);
gtk_label_set_text(GTK_LABEL(menu_label_inputstring_maxchar), strdup(s));
gtk_entry_set_max_length(GTK_ENTRY(menu_textentry), p->max *2);
gtk_entry_set_text(GTK_ENTRY(menu_textentry), p->oldstring);
gtk_widget_show(menu_window_is);
g_idle_add(menu_callback, menu_window_is);
gtk_main();
g_idle_remove_by_data(menu_window_is);
if (menu_ok_input) {
p->newstring = menu_textentry_string;
} else {
p->newstring = p->oldstring;
}
return true;
}
bool menu_inputstring2(INPUTSTRING_PARAM *p) {
if (!menu_initilized) return false;
menu_ok_input = false;
gtk_entry_set_max_length(GTK_ENTRY(menu_textentry2), p->max *2);
gtk_entry_set_text(GTK_ENTRY(menu_textentry2), p->oldstring);
gtk_widget_set_size_request(menu_textentry2, p->h * p->max + 8, p->h + 4);
gtk_widget_show(menu_window_is2);
g_idle_add(menu_callback, menu_window_is2);
gtk_main();
g_idle_remove_by_data(menu_window_is2);
if (menu_ok_input) {
p->newstring = menu_textentry_string;
} else {
p->newstring = p->oldstring;
}
return true;
}
bool menu_inputnumber(INPUTNUM_PARAM *p) {
GtkAdjustment *adj;
char s[256];
if (!menu_initilized) return false;
menu_ok_input = false;
gtk_window_set_title (GTK_WINDOW(menu_window_in), p->title);
sprintf(s, "%d ", p->max);
gtk_label_set_text(GTK_LABEL(menu_label_inputnum_max), s);
sprintf(s, "%d ", p->min);
gtk_label_set_text(GTK_LABEL(menu_label_inputnum_min), s);
sprintf(s, "%d ", p->def);
gtk_label_set_text(GTK_LABEL(menu_label_inputnum_def), s);
adj = gtk_adjustment_new (p->def, p->min, p->max, 1, 1, 1);
gtk_spin_button_set_adjustment(GTK_SPIN_BUTTON(menu_spinbutton), GTK_ADJUSTMENT(adj));
/* こうしないと前の value が表示される */
gtk_spin_button_set_value(GTK_SPIN_BUTTON(menu_spinbutton), p->def);
gtk_widget_show(menu_window_in);
g_idle_add(menu_callback, menu_window_in);
gtk_main();
g_idle_remove_by_data(menu_window_in);
if (menu_ok_input) {
p->value = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(menu_spinbutton));
} else {
p->value = -1;
}
return true;
}
void menu_init() {
menu_initilized = true;
menu_window_popup = create_menu1();
menu_window_in = create_window1();
menu_window_is = create_window2();
menu_window_exit = create_window3();
menu_window_about = create_window4();
menu_window_is2 = create_window5();
}
void menu_gtkmainiteration() {
if (!menu_initilized) return;
while (gtk_events_pending()) {
gtk_main_iteration();
menu_callback();
}
}
void menu_setSkipState(bool enabled, bool activated) {
}