📄 gtkinputdialog.c
字号:
/* GTK - The GIMP Toolkit * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. *//* * gtkinputdialog.c * * Copyright 1997 Owen Taylor <owt1@cornell.edu> * *//* * Modified by the GTK+ Team and others 1997-1999. See the AUTHORS * file for a list of people on the GTK+ Team. See the ChangeLog * files for a list of changes. These files are distributed with * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */#include <stdio.h>#include <stdlib.h>#include <ctype.h>#include "gdk/gdkkeysyms.h"#include "gtkbutton.h"#include "gtkentry.h"#include "gtkhbox.h"#include "gtkhseparator.h"#include "gtkinputdialog.h"#include "gtklabel.h"#include "gtklistitem.h"#include "gtkmain.h"#include "gtkmenu.h"#include "gtkmenuitem.h"#include "gtknotebook.h"#include "gtkoptionmenu.h"#include "gtkscrolledwindow.h"#include "gtksignal.h"#include "gtktable.h"#include "gtkvbox.h"#include "gtkintl.h"typedef struct { gint index; GtkWidget *entry; GtkInputDialog *inputd;} GtkInputKeyInfo;enum{ ENABLE_DEVICE, DISABLE_DEVICE, LAST_SIGNAL};#define AXIS_LIST_WIDTH 160#define AXIS_LIST_HEIGHT 175#define KEYS_LIST_WIDTH 200#define KEYS_LIST_HEIGHT 175/* Forward declarations */static void gtk_input_dialog_class_init (GtkInputDialogClass *klass);static void gtk_input_dialog_init (GtkInputDialog *inputd);static GdkDeviceInfo *gtk_input_dialog_get_device_info(guint32 deviceid);static void gtk_input_dialog_set_device(GtkWidget *widget, gpointer data);static void gtk_input_dialog_finalize (GtkObject *object);static void gtk_input_dialog_set_mapping_mode(GtkWidget *w, gpointer data);static void gtk_input_dialog_set_axis(GtkWidget *widget, gpointer data);static void gtk_input_dialog_fill_axes (GtkInputDialog *inputd, GdkDeviceInfo *info);static void gtk_input_dialog_set_key (GtkInputKeyInfo *key, guint keyval, GdkModifierType modifiers);static gint gtk_input_dialog_key_press (GtkWidget *widget, GdkEventKey *event, GtkInputKeyInfo *key);static void gtk_input_dialog_clear_key (GtkWidget *widget, GtkInputKeyInfo *key);static void gtk_input_dialog_destroy_key (GtkWidget *widget, GtkInputKeyInfo *key);static void gtk_input_dialog_fill_keys (GtkInputDialog *inputd, GdkDeviceInfo *info);static GtkObjectClass *parent_class = NULL;static guint input_dialog_signals[LAST_SIGNAL] = { 0 };static GdkDeviceInfo *gtk_input_dialog_get_device_info(guint32 deviceid){ GList *tmp_list = gdk_input_list_devices(); while (tmp_list) { if (((GdkDeviceInfo *)tmp_list->data)->deviceid == deviceid) return (GdkDeviceInfo *)tmp_list->data; tmp_list = tmp_list->next; } return NULL;}GtkTypegtk_input_dialog_get_type (void){ static GtkType input_dialog_type = 0; if (!input_dialog_type) { static const GtkTypeInfo input_dialog_info = { "GtkInputDialog", sizeof (GtkInputDialog), sizeof (GtkInputDialogClass), (GtkClassInitFunc) gtk_input_dialog_class_init, (GtkObjectInitFunc) gtk_input_dialog_init, /* reserved_1 */ NULL, /* reserved_2 */ NULL, (GtkClassInitFunc) NULL, }; input_dialog_type = gtk_type_unique (GTK_TYPE_DIALOG, &input_dialog_info); } return input_dialog_type;}static voidgtk_input_dialog_class_init (GtkInputDialogClass *klass){ GtkObjectClass *object_class; object_class = (GtkObjectClass*) klass; parent_class = gtk_type_class (GTK_TYPE_DIALOG); input_dialog_signals[ENABLE_DEVICE] = gtk_signal_new ("enable_device", GTK_RUN_LAST, object_class->type, GTK_SIGNAL_OFFSET (GtkInputDialogClass, enable_device), gtk_marshal_NONE__INT, GTK_TYPE_NONE, 1, GTK_TYPE_INT); input_dialog_signals[DISABLE_DEVICE] = gtk_signal_new ("disable_device", GTK_RUN_LAST, object_class->type, GTK_SIGNAL_OFFSET (GtkInputDialogClass, disable_device), gtk_marshal_NONE__INT, GTK_TYPE_NONE, 1, GTK_TYPE_INT); gtk_object_class_add_signals (object_class, input_dialog_signals, LAST_SIGNAL); object_class->finalize = gtk_input_dialog_finalize; klass->enable_device = NULL; klass->disable_device = NULL;}static voidgtk_input_dialog_init (GtkInputDialog *inputd){ GtkWidget *vbox; GtkWidget *util_box; GtkWidget *label; GtkWidget *device_menu; GtkWidget *mapping_menu; GtkWidget *menuitem; GtkWidget *optionmenu; GtkWidget *separator; GtkWidget *notebook; GList *tmp_list; GList *device_info; device_info = gdk_input_list_devices(); /* shell and main vbox */ gtk_window_set_title (GTK_WINDOW (inputd), _("Input")); vbox = gtk_vbox_new (FALSE, 4); gtk_container_set_border_width (GTK_CONTAINER (vbox), 5); gtk_box_pack_start (GTK_BOX (GTK_DIALOG (inputd)->vbox), vbox, TRUE, TRUE, 0); if (g_list_length(device_info) <= 1) /* only core device */ { label = gtk_label_new (_("No input devices")); gtk_container_add (GTK_CONTAINER (vbox), label); gtk_widget_show (label); } else { /* menu for selecting device */ device_menu = gtk_menu_new (); for (tmp_list = device_info; tmp_list; tmp_list = tmp_list->next) { GdkDeviceInfo *info = (GdkDeviceInfo *)(tmp_list->data); if (info->deviceid != GDK_CORE_POINTER) { menuitem = gtk_menu_item_new_with_label(info->name); gtk_menu_append(GTK_MENU(device_menu),menuitem); gtk_widget_show(menuitem); gtk_object_set_user_data (GTK_OBJECT (menuitem), inputd); gtk_signal_connect (GTK_OBJECT (menuitem), "activate", (GtkSignalFunc) gtk_input_dialog_set_device, GUINT_TO_POINTER(info->deviceid)); } } util_box = gtk_hbox_new (FALSE, 2); gtk_box_pack_start (GTK_BOX (vbox), util_box, FALSE, FALSE, 0); label = gtk_label_new(_("Device:")); gtk_box_pack_start (GTK_BOX (util_box), label, FALSE, FALSE, 2); optionmenu = gtk_option_menu_new (); gtk_box_pack_start (GTK_BOX (util_box), optionmenu, TRUE, TRUE, 2); gtk_widget_show (optionmenu); gtk_option_menu_set_menu (GTK_OPTION_MENU (optionmenu), device_menu); gtk_widget_show (label); /* Device options */ /* mapping mode option menu */ mapping_menu = gtk_menu_new (); menuitem = gtk_menu_item_new_with_label(_("Disabled")); gtk_menu_append(GTK_MENU(mapping_menu),menuitem); gtk_object_set_user_data (GTK_OBJECT (menuitem), inputd); gtk_widget_show(menuitem); gtk_signal_connect (GTK_OBJECT (menuitem), "activate", (GtkSignalFunc) gtk_input_dialog_set_mapping_mode, GINT_TO_POINTER (GDK_MODE_DISABLED)); menuitem = gtk_menu_item_new_with_label(_("Screen")); gtk_menu_append(GTK_MENU(mapping_menu),menuitem); gtk_object_set_user_data (GTK_OBJECT (menuitem), inputd); gtk_widget_show(menuitem); gtk_signal_connect (GTK_OBJECT (menuitem), "activate", (GtkSignalFunc) gtk_input_dialog_set_mapping_mode, GINT_TO_POINTER (GDK_MODE_SCREEN)); menuitem = gtk_menu_item_new_with_label(_("Window")); gtk_menu_append(GTK_MENU(mapping_menu),menuitem); gtk_object_set_user_data (GTK_OBJECT (menuitem), inputd); gtk_widget_show(menuitem); gtk_signal_connect (GTK_OBJECT (menuitem), "activate", (GtkSignalFunc) gtk_input_dialog_set_mapping_mode, GINT_TO_POINTER (GDK_MODE_WINDOW)); label = gtk_label_new(_("Mode: ")); gtk_box_pack_start (GTK_BOX (util_box), label, FALSE, FALSE, 2); inputd->mode_optionmenu = gtk_option_menu_new (); gtk_box_pack_start (GTK_BOX (util_box), inputd->mode_optionmenu, FALSE, FALSE, 2); gtk_widget_show (inputd->mode_optionmenu); gtk_option_menu_set_menu (GTK_OPTION_MENU (inputd->mode_optionmenu), mapping_menu); gtk_widget_show(label); gtk_widget_show (util_box); util_box = gtk_hbox_new (FALSE, 2); gtk_box_pack_start (GTK_BOX(vbox), util_box, FALSE, FALSE, 0); gtk_widget_show (label); gtk_widget_show (util_box); separator = gtk_hseparator_new(); gtk_box_pack_start (GTK_BOX (vbox), separator, FALSE, TRUE, 0); gtk_widget_show (separator); /* Notebook */ notebook = gtk_notebook_new (); gtk_box_pack_start (GTK_BOX (vbox), notebook, TRUE, TRUE, 0); gtk_widget_show (notebook); /* The axis listbox */ label = gtk_label_new (_("Axes")); inputd->axis_listbox = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(inputd->axis_listbox), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_widget_set_usize (inputd->axis_listbox, AXIS_LIST_WIDTH, AXIS_LIST_HEIGHT); gtk_notebook_append_page (GTK_NOTEBOOK(notebook), inputd->axis_listbox, label); gtk_widget_show (inputd->axis_listbox); inputd->axis_list = 0; /* Keys listbox */ label = gtk_label_new (_("Keys")); inputd->keys_listbox = gtk_scrolled_window_new (NULL, NULL); gtk_widget_set_usize (inputd->keys_listbox, KEYS_LIST_WIDTH, KEYS_LIST_HEIGHT); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW(inputd->keys_listbox), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); gtk_notebook_append_page (GTK_NOTEBOOK(notebook), inputd->keys_listbox, label); gtk_widget_show (inputd->keys_listbox); inputd->keys_list = 0; /* ...set_device expects to get input dialog from widget user data */ gtk_object_set_user_data (GTK_OBJECT (inputd), inputd); gtk_input_dialog_set_device(GTK_WIDGET(inputd), GUINT_TO_POINTER (((GdkDeviceInfo *)device_info->data)->deviceid)); } /* We create the save button in any case, so that clients can connect to it, without paying attention to whether it exits */ inputd->save_button = gtk_button_new_with_label (_("Save")); GTK_WIDGET_SET_FLAGS (inputd->save_button, GTK_CAN_DEFAULT); gtk_box_pack_start (GTK_BOX (GTK_DIALOG(inputd)->action_area), inputd->save_button, TRUE, TRUE, 0); gtk_widget_show (inputd->save_button); if (g_list_length(device_info) <= 1) /* only core device */ gtk_widget_set_sensitive(inputd->save_button, FALSE);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -