~carsten-munk/m-r/libhildon-2.1.24

« back to all changes in this revision

Viewing changes to examples/hildon-controlbar-example.c

  • Committer: Carsten V. Munk
  • Date: 2008-12-08 15:00:57 UTC
  • Revision ID: cvm@cs.au.dk-20081208150057-7e0a50c8zdupbzar
initial commit of 2.1.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is a part of hildon examples
 
3
 *
 
4
 * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
 
5
 *
 
6
 * Author: Michael Dominic Kostrzewa <michael.kostrzewa@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
static gboolean
 
32
on_show_value_clicked                           (GtkWidget *widget, HildonControlbar *bar)
 
33
{
 
34
    g_assert (HILDON_IS_CONTROLBAR (bar));
 
35
 
 
36
    g_debug ("Value is: %d", hildon_controlbar_get_value (bar));
 
37
 
 
38
    return TRUE;
 
39
}
 
40
 
 
41
int
 
42
main                                            (int argc,
 
43
                                                 char **argv)
 
44
{
 
45
    hildon_gtk_init (&argc, &argv);
 
46
 
 
47
    HildonProgram *program = hildon_program_get_instance ();
 
48
 
 
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), 6);
 
53
    
 
54
    HildonControlbar *bar = HILDON_CONTROLBAR (hildon_controlbar_new ());
 
55
    hildon_controlbar_set_range (bar, 1, 4);
 
56
    hildon_controlbar_set_value (bar, 2);
 
57
    GtkVBox *vbox = GTK_VBOX (gtk_vbox_new (6, FALSE));
 
58
    GtkButton *button = GTK_BUTTON (gtk_button_new_with_label ("Show value"));
 
59
 
 
60
    g_signal_connect (G_OBJECT (window), "delete_event", G_CALLBACK (gtk_main_quit), NULL);
 
61
    g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (on_show_value_clicked), bar);
 
62
 
 
63
    gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (bar), FALSE, FALSE, 0);
 
64
    gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (button), FALSE, FALSE, 0);
 
65
 
 
66
    gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (vbox));
 
67
    gtk_widget_show_all (GTK_WIDGET (window));
 
68
    
 
69
    gtk_main ();
 
70
    return 0;
 
71
}
 
72
 
 
73