// This file is part of RAVL, Recognition And Vision Library // Copyright (C) 2001, University of Surrey // This code may be redistributed under the terms of the GNU Lesser // General Public License (LGPL). See the lgpl.licence file for details or // see http://www.gnu.org/copyleft/lesser.html // file-header-ends-here ///////////////////////////////////////////////////////// //! rcsid="$Id: exFixed.cc,v 1.3 2002/01/31 14:55:33 craftit Exp $" //! lib=RavlGUI //! file="Ravl/GUI/GTK/exFixed.cc" #include "Ravl/GUI/Window.hh" #include "Ravl/GUI/Button.hh" #include "Ravl/GUI/Fixed.hh" #include "Ravl/GUI/Manager.hh" #include "Ravl/GUI/LBox.hh" using namespace RavlGUIN; bool buttonA(IntT &v) { cerr << "ButtonA:" << v << "\n"; return true; } bool buttonB(IntT &v) { cerr << "ButtonB:" << v << "\n"; return true; } int main(int nargs,char *args[]) { Manager.Init(nargs,args); WindowC win(100,100,"Hello"); FixedWidgetC fixed(true); fixed.Add( VBox(Button("A Button 1",&buttonA,1) + Button("A Button 3",&buttonB,3)) + VBox(Button("A Button 2",&buttonB,2) + Button("A Button 4",&buttonB,4)) ); win.Add(fixed); win.Show(); Manager.Start(); }