GTK+ IOStream  Beta
<< GTK+ >> add C++ IOStream operators to GTK+. Now with extra abilities ... like network serialisation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LabelsTest.C
Go to the documentation of this file.
1 /* Copyright 2000-2013 Matt Flax <flatmax@flatmax.org>
2  This file is part of GTK+ IOStream class set
3 
4  GTK+ IOStream is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  GTK+ IOStream 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
12  GNU General Public License for more details.
13 
14  You have received a copy of the GNU General Public License
15  along with GTK+ IOStream
16  */
17 #include "gtkInterface.H"
18 #include "Buttons.H"
19 #include "Labels.H"
20 
21 static void quit(void *wid, gpointer data){
22  gtk_main_quit();
23 }
24 
25 int main(int argc, char *argv[]){
26 
27  gtk_init( &argc, &argv ); // init GTK
28 
29  GtkInterface topWindow; // Create the top box
30 
31  Buttons buttons; // create a quit button
32  buttons<<BUTTONLABELSTRUCT("Quit", quit, NULL);
33 
34  Labels labs; // create a labels list
35  labs<<" this is 1"<<" this is 2"; // Load some labels
36 
37  HBox hBox; // create an HBox
38  hBox << buttons << labs; // load the button and label into the HBox
39  hBox.show(); // show the HBox
40  topWindow << hBox; // Load the HBox into the top window
41 
42  gtk_main(); // run GTK+
43 }