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.
21 #include <gdk/gdkkeysyms.h>
24 accel_edited_callback (GtkCellRendererText
*cell
,
25 const char *path_string
,
28 guint hardware_keycode
,
31 GtkTreeModel
*model
= (GtkTreeModel
*)data
;
32 GtkTreePath
*path
= gtk_tree_path_new_from_string (path_string
);
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
,
43 gtk_tree_path_free (path
);
49 GtkWidget
*window
, *sw
, *tv
;
51 GtkTreeViewColumn
*column
;
52 GtkCellRenderer
*rend
;
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
,
71 g_signal_connect (G_OBJECT (rend
),
73 G_CALLBACK (accel_edited_callback
),
76 gtk_tree_view_column_pack_start (column
, rend
,
78 gtk_tree_view_column_set_attributes (column
, rend
,
82 gtk_tree_view_append_column (GTK_TREE_VIEW (tv
), column
);
84 for (i
= 0; i
< 10; i
++) {
87 gtk_list_store_append (store
, &iter
);
96 main (gint argc
, gchar
**argv
)
100 gtk_init (&argc
, &argv
);
102 dialog
= key_test ();
104 gtk_widget_show_all (dialog
);