New HildonPannableArea widget
[hildon] / examples / hildon-pannable-area-example.c
1 /*
2  * This file is a part of hildon examples
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * Author: Alberto Garcia <agarcia@igalia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <glib.h>
28 #include <gtk/gtk.h>
29 #include "hildon.h"
30
31 enum { TEXT_COLUMN, N_COLUMNS };
32
33 static void
34 on_button_clicked (GtkWidget *widget, gpointer data)
35 {
36     g_debug ("Button %d clicked", GPOINTER_TO_INT (data));
37 }
38
39 int
40 main (int argc, char **args)
41 {
42     int i;
43
44     gtk_init (&argc, &args);
45
46     HildonProgram *program = hildon_program_get_instance ();
47
48     /* Create the main window */
49     GtkWidget *window = hildon_window_new ();
50     hildon_program_add_window (program, HILDON_WINDOW (window));
51
52     gtk_container_set_border_width (GTK_CONTAINER (window), 5);
53
54     /* Create a VBox and pack some buttons */
55     GtkVBox *vbox = GTK_VBOX (gtk_vbox_new (FALSE, 1));
56     for (i = 0; i < 30; i++) {
57             gchar *label = g_strdup_printf ("Button number %d", i);
58             GtkWidget *but = gtk_button_new_with_label (label);
59             gtk_box_pack_start (GTK_BOX (vbox), but, TRUE, TRUE, 0);
60             g_signal_connect (G_OBJECT (but), "clicked", G_CALLBACK (on_button_clicked), GINT_TO_POINTER (i));
61             g_free (label);
62     }
63
64     /* Create a treeview */
65     GtkWidget *tv = gtk_tree_view_new ();
66     GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
67     GtkTreeViewColumn *col = gtk_tree_view_column_new_with_attributes ("Title", renderer, "text", TEXT_COLUMN, NULL);
68     gtk_tree_view_append_column (GTK_TREE_VIEW(tv), col);
69
70     /* Add some rows to the treeview */
71     GtkListStore *store = gtk_list_store_new (N_COLUMNS, G_TYPE_STRING);
72     for (i = 0; i < 100; i++) {
73             GtkTreeIter iter;
74             gchar *label = g_strdup_printf ("Row number %d", i);
75             gtk_list_store_append (store, &iter);
76             gtk_list_store_set (store, &iter, TEXT_COLUMN, label, -1);
77             g_free (label);
78     }
79     gtk_tree_view_set_model (GTK_TREE_VIEW (tv), GTK_TREE_MODEL (store));
80     g_object_unref (store);
81
82     /* Pack the treeview in the VBox */
83     gtk_box_pack_start (GTK_BOX (vbox), tv, TRUE, TRUE, 0);
84
85     /* Put everything in a pannable area */
86     GtkWidget *panarea = hildon_pannable_area_new ();
87     hildon_pannable_area_add_with_viewport (HILDON_PANNABLE_AREA (panarea), GTK_WIDGET (vbox));
88     gtk_container_add (GTK_CONTAINER (window), panarea);
89
90     g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (gtk_main_quit), NULL);
91
92     gtk_widget_show_all (GTK_WIDGET (window));
93
94     gtk_main ();
95
96     return 0;
97 }