]> Pileus Git - ~andy/gtk/blob - tests/testaccel.c
537ef076053aff7d2020c456602e64c2cd07cd6c
[~andy/gtk] / tests / testaccel.c
1 /* gtkcellrendereraccel.h
2  * Copyright (C) 2000  Red Hat, Inc.,  Jonathan Blandford <jrb@redhat.com>
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 #include <gtk/gtk.h>
21 #include <gdk/gdkkeysyms.h>
22
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)
30 {
31   GtkTreeModel *model = (GtkTreeModel *)data;
32   GtkTreePath *path = gtk_tree_path_new_from_string (path_string);
33   GtkTreeIter iter;
34
35   gtk_tree_model_get_iter (model, &iter, path);
36
37   g_print ("%u %d %u\n", keyval, mask, hardware_keycode);
38   
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);
44 }
45
46 static GtkWidget *
47 key_test (void)
48 {
49         GtkWidget *window, *sw, *tv;
50         GtkListStore *store;
51         GtkTreeViewColumn *column;
52         GtkCellRenderer *rend;
53         gint i;
54
55         /* create window */
56         window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
57
58
59         sw = gtk_scrolled_window_new (NULL, NULL);
60         gtk_container_add (GTK_CONTAINER (window), sw);
61
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);
75
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);
83
84         for (i = 0; i < 10; i++) {
85                 GtkTreeIter iter;
86
87                 gtk_list_store_append (store, &iter);
88         }
89
90         /* done */
91
92         return window;
93 }
94
95 gint
96 main (gint argc, gchar **argv)
97 {
98   GtkWidget *dialog;
99   
100   gtk_init (&argc, &argv);
101
102   dialog = key_test ();
103
104   gtk_widget_show_all (dialog);
105
106   gtk_main ();
107
108   return 0;
109 }