Make sure that all timeouts in HildonBanner are removed
[hildon] / examples / hildon-text-view-example.c
1 /*
2  * This file is a part of hildon examples
3  *
4  * Copyright (C) 2008, 2009 Nokia Corporation, all rights reserved.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License
8  * as published by the Free Software Foundation; version 2.1 of
9  * the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19  * 02110-1301 USA
20  *
21  */
22
23 #include                                        <hildon/hildon.h>
24
25 GtkTextView *textview;
26 GtkTextBuffer *buffer;
27
28 static void
29 set_text_button_clicked                         (GtkButton *button,
30                                                  GtkEntry  *entry)
31 {
32     gtk_text_buffer_set_text (buffer, gtk_entry_get_text (entry), -1);
33 }
34
35 static void
36 set_placeholder_button_clicked                  (GtkButton *button,
37                                                  GtkEntry  *entry)
38 {
39     hildon_gtk_text_view_set_placeholder_text (textview, gtk_entry_get_text (entry));
40 }
41
42 static void
43 text_changed                                    (GtkTextBuffer *buffer,
44                                                  GtkLabel      *label)
45 {
46     const gchar *text;
47     GtkTextIter start, end;
48
49     gtk_text_buffer_get_start_iter (buffer, &start);
50     gtk_text_buffer_get_end_iter (buffer, &end);
51
52     text = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
53
54     if (text != NULL && *text != '\0') {
55         gtk_label_set_text (label, text);
56     } else {
57         gtk_label_set_text (label, "(empty)");
58     }
59 }
60
61 int
62 main                                            (int    argc,
63                                                  char **argv)
64 {
65     GtkWidget *win;
66     GtkWidget *label;
67     GtkWidget *textentry, *textbutton, *texthbox;
68     GtkWidget *placeholderentry, *placeholderbutton, *placeholderhbox;
69     GtkWidget *textviewframe;
70     GtkBox *vbox;
71
72     hildon_gtk_init (&argc, &argv);
73
74     /* Window and vbox to pack everything */
75     win = hildon_stackable_window_new ();
76     vbox = GTK_BOX (gtk_vbox_new (FALSE, 10));
77
78     /* Entry to modify the text of the main HildonEntry */
79     textentry = hildon_entry_new (HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
80     textbutton = hildon_gtk_button_new (HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
81     gtk_button_set_label (GTK_BUTTON (textbutton), "Set text view text");
82     texthbox = gtk_hbox_new (FALSE, 10);
83
84     /* Entry to modify the placeholder of the main HildonEntry */
85     placeholderentry = hildon_entry_new (HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
86     placeholderbutton = hildon_gtk_button_new (HILDON_SIZE_FINGER_HEIGHT | HILDON_SIZE_AUTO_WIDTH);
87     gtk_button_set_label (GTK_BUTTON (placeholderbutton), "Set text view placeholder");
88     placeholderhbox = gtk_hbox_new (FALSE, 10);
89
90     /* The text view */
91     textview = GTK_TEXT_VIEW (hildon_text_view_new ());
92     buffer = gtk_text_view_get_buffer (textview);
93     hildon_gtk_text_view_set_placeholder_text (textview, "This is a placeholder - change using the buttons above");
94     textviewframe = gtk_frame_new (NULL);
95
96     /* This label is used to show the contents -not the placeholder- of the HildonTextView */
97     label = gtk_label_new (NULL);
98
99     /* Pack all widgets */
100     gtk_box_pack_start (GTK_BOX (texthbox), textentry, TRUE, TRUE, 0);
101     gtk_box_pack_start (GTK_BOX (texthbox), textbutton, FALSE, FALSE, 0);
102
103     gtk_box_pack_start (GTK_BOX (placeholderhbox), placeholderentry, TRUE, TRUE, 0);
104     gtk_box_pack_start (GTK_BOX (placeholderhbox), placeholderbutton, FALSE, FALSE, 0);
105
106     gtk_container_add (GTK_CONTAINER (textviewframe), GTK_WIDGET (textview));
107
108     gtk_box_pack_start (vbox, texthbox, FALSE, FALSE, 0);
109     gtk_box_pack_start (vbox, placeholderhbox, FALSE, FALSE, 0);
110     gtk_box_pack_start (vbox, textviewframe, TRUE, TRUE, 0);
111     gtk_box_pack_start (vbox, gtk_label_new ("Contents of the text view:"), TRUE, TRUE, 0);
112     gtk_box_pack_start (vbox, label, TRUE, TRUE, 0);
113
114     gtk_container_set_border_width (GTK_CONTAINER (win), 20);
115     gtk_container_add (GTK_CONTAINER (win), GTK_WIDGET (vbox));
116
117     /* Connect signals */
118     g_signal_connect (win, "destroy", G_CALLBACK (gtk_main_quit), NULL);
119     g_signal_connect (buffer, "changed", G_CALLBACK (text_changed), label);
120     g_signal_connect (textbutton, "clicked",
121                       G_CALLBACK (set_text_button_clicked), textentry);
122     g_signal_connect (placeholderbutton, "clicked",
123                       G_CALLBACK (set_placeholder_button_clicked), placeholderentry);
124
125     /* Set the initial state of the label */
126     text_changed (buffer, GTK_LABEL (label));
127
128     /* Run example */
129     gtk_widget_show_all (win);
130     gtk_main ();
131
132     return 0;
133 }