Add powerbox hook
[gtk-with-powerbox.git] / tests / testaccel.c
blob537ef076053aff7d2020c456602e64c2cd07cd6c
1 /* gtkcellrendereraccel.h
2 * Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #include <gtk/gtk.h>
21 #include <gdk/gdkkeysyms.h>
23 static void
24 accel_edited_callback (GtkCellRendererText *cell,
25 const char *path_string,
26 guint keyval,
27 GdkModifierType mask,
28 guint hardware_keycode,
29 gpointer data)
31 GtkTreeModel *model = (GtkTreeModel *)data;
32 GtkTreePath *path = gtk_tree_path_new_from_string (path_string);
33 GtkTreeIter iter;
35 gtk_tree_model_get_iter (model, &iter, path);
37 g_print ("%u %d %u\n", keyval, mask, hardware_keycode);
39 gtk_list_store_set (GTK_LIST_STORE (model), &iter,
40 0, (gint)mask,
41 1, keyval,
42 -1);
43 gtk_tree_path_free (path);
46 static GtkWidget *
47 key_test (void)
49 GtkWidget *window, *sw, *tv;
50 GtkListStore *store;
51 GtkTreeViewColumn *column;
52 GtkCellRenderer *rend;
53 gint i;
55 /* create window */
56 window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
59 sw = gtk_scrolled_window_new (NULL, NULL);
60 gtk_container_add (GTK_CONTAINER (window), sw);
62 store = gtk_list_store_new (2, G_TYPE_INT, G_TYPE_UINT);
63 tv = gtk_tree_view_new_with_model (GTK_TREE_MODEL (store));
64 gtk_container_add (GTK_CONTAINER (sw), tv);
65 column = gtk_tree_view_column_new ();
66 rend = gtk_cell_renderer_accel_new ();
67 g_object_set (G_OBJECT (rend),
68 "accel-mode", GTK_CELL_RENDERER_ACCEL_MODE_GTK,
69 "editable", TRUE,
70 NULL);
71 g_signal_connect (G_OBJECT (rend),
72 "accel-edited",
73 G_CALLBACK (accel_edited_callback),
74 store);
76 gtk_tree_view_column_pack_start (column, rend,
77 TRUE);
78 gtk_tree_view_column_set_attributes (column, rend,
79 "accel-mods", 0,
80 "accel-key", 1,
81 NULL);
82 gtk_tree_view_append_column (GTK_TREE_VIEW (tv), column);
84 for (i = 0; i < 10; i++) {
85 GtkTreeIter iter;
87 gtk_list_store_append (store, &iter);
90 /* done */
92 return window;
95 gint
96 main (gint argc, gchar **argv)
98 GtkWidget *dialog;
100 gtk_init (&argc, &argv);
102 dialog = key_test ();
104 gtk_widget_show_all (dialog);
106 gtk_main ();
108 return 0;