// Copyright (c) 1997 Tel-Aviv University (Israel). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you may redistribute it under // the terms of the Q Public License version 1.0. // See the file LICENSE.QPL distributed with CGAL. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $Source: /CVSROOT/CGAL/Packages/Planar_map/demo/Planar_map/Qt_widget_toolbar.C,v $ // $Revision: 1.2.6.1 $ // $Name: $ // // author(s) : Efi Fogel #ifdef CGAL_USE_QT #include #include #include #include #include #include #include "Qt_widget_toolbar.h" Tools_toolbar::Tools_toolbar(CGAL::Qt_widget * w, QMainWindow *mw, std::list * l1, Planar_map * pm) : QToolBar(mw, "NT") { snapping_layer.pass_the_structure(l1, pm); segment_layer.pass_the_structure(l1, pm); w->attach(&point_layer); w->attach(&segment_layer); w->attach(&snapping_layer); // move_deletebut.deactivate(); point_layer.deactivate(); segment_layer.deactivate(); snapping_layer.deactivate(); // move_deletebut.pass_the_structure(l1); //set the widget widget = w; QIconSet set0(QPixmap( (const char**)arrow_small_xpm ), QPixmap( (const char**)arrow_xpm )); QIconSet set1(QPixmap( (const char**)point_small_xpm ), QPixmap( (const char**)point_xpm )); QIconSet set2(QPixmap( (const char**)line_small_xpm ), QPixmap( (const char**)line_xpm )); QIconSet set3(QPixmap( (const char**)movepoint_small_xpm ), QPixmap( (const char**)movepoint_xpm )); but[0] = new QToolButton(this, "deactivate layer"); but[0]->setIconSet(set0); but[0]->setTextLabel("Deactivate Layer"); but[1] = new QToolButton(this, "pointinput layer"); but[1]->setIconSet(set1); but[1]->setTextLabel("Input point"); but[2] = new QToolButton(this, "segment layer"); but[2]->setIconSet(set2); but[2]->setTextLabel("Segment layer"); but[3] = new QToolButton(this, "snapping layer"); but[3]->setIconSet(set3); but[3]->setTextLabel("Snapping layer"); nr_of_buttons = 4; button_group = new QButtonGroup(0, "My_group"); for (int i = 0; iinsert(but[i]); but[i]->setToggleButton(true); } button_group->setExclusive(true); connect(but[1], SIGNAL(stateChanged(int)), &point_layer, SLOT(stateChanged(int))); connect(but[2], SIGNAL(stateChanged(int)), &segment_layer, SLOT(stateChanged(int))); connect(but[3], SIGNAL(stateChanged(int)), &snapping_layer, SLOT(stateChanged(int))); }; #include "Qt_widget_toolbar.moc" #endif