* src/hildon-app-menu.h Update API. * src/hildon-app-menu.c (hildon_app_menu_init...
[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: Karl Lattimer <karl.lattimer@nokia.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
40 static void
41 get_sawtooth_label (gchar **label, guint num)
42 {
43   static gchar *sawtooth = NULL;
44   gchar *label_aux, *sawtooth_aux;
45   
46   if (num % 5 != 0) {
47     sawtooth_aux = g_strconcat (" ", sawtooth, NULL);
48     g_free (sawtooth);
49     
50     sawtooth = sawtooth_aux;
51   } else {
52     sawtooth = g_strdup (" ");
53   }
54   
55   label_aux = g_strconcat (sawtooth, *label, NULL);
56   g_free (*label);
57   
58   *label = label_aux;
59 }
60
61 int
62 main (int argc, char **args)
63 {
64     int i;
65     HildonProgram *program;
66     GtkWidget *window, *tv, *panarea;
67     GtkTreeViewColumn *col;
68     GtkCellRenderer *renderer;
69     GtkListStore *store;
70     GtkVBox *vbox;
71
72     gtk_init (&argc, &args);
73
74     program = hildon_program_get_instance ();
75
76     /* Create the main window */
77     window = hildon_window_new ();
78     hildon_program_add_window (program, HILDON_WINDOW (window));
79
80     gtk_container_set_border_width (GTK_CONTAINER (window), 5);
81
82     /* Create a VBox and pack some buttons */
83     vbox = GTK_VBOX (gtk_vbox_new (FALSE, 1));
84     for (i = 0; i < 30; i++) {
85             gchar *label = g_strdup_printf ("Button number %d", i);
86             GtkWidget *but = NULL;
87
88             get_sawtooth_label (&label, i);
89
90             but = gtk_button_new_with_label (label);
91             gtk_box_pack_start (GTK_BOX (vbox), but, TRUE, TRUE, 0);
92             g_signal_connect (G_OBJECT (but), "clicked", G_CALLBACK (on_button_clicked), GINT_TO_POINTER (i));
93             g_free (label);
94     }
95
96     /* Create a treeview */
97     tv = gtk_tree_view_new ();
98     renderer = gtk_cell_renderer_text_new ();
99     col = gtk_tree_view_column_new_with_attributes ("Title", renderer, "text", TEXT_COLUMN, NULL);
100     gtk_tree_view_append_column (GTK_TREE_VIEW(tv), col);
101
102     /* Add some rows to the treeview */
103     store = gtk_list_store_new (N_COLUMNS, G_TYPE_STRING);
104     for (i = 0; i < 100; i++) {
105             GtkTreeIter iter;
106             gchar *label = g_strdup_printf ("Row number %d", i);
107             
108             get_sawtooth_label (&label, i);
109
110             gtk_list_store_append (store, &iter);
111             gtk_list_store_set (store, &iter, TEXT_COLUMN, label, -1);
112             g_free (label);
113     }
114     gtk_tree_view_set_model (GTK_TREE_VIEW (tv), GTK_TREE_MODEL (store));
115     g_object_unref (store);
116
117     /* Pack the treeview in the VBox */
118     gtk_box_pack_start (GTK_BOX (vbox), tv, TRUE, TRUE, 0);
119
120     /* Put everything in a pannable area */
121     panarea = hildon_pannable_area_new ();
122     hildon_pannable_area_add_with_viewport (HILDON_PANNABLE_AREA (panarea), GTK_WIDGET (vbox));
123     gtk_container_add (GTK_CONTAINER (window), panarea);
124
125     g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (gtk_main_quit), NULL);
126
127     gtk_widget_show_all (GTK_WIDGET (window));
128
129     gtk_main ();
130
131     return 0;
132 }