// Copyright (c) 2002 ETH Zurich (Switzerland). // 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/Min_quadrilateral_2/demo/Min_quadrilateral_2/Qt_widget_toolbar.h,v $ // $Revision: 1.2.4.1 $ $Date: 2004/12/19 15:54:50 $ // $Name: $ // // Author(s) : Radu Ursu #ifndef CGAL_QT_WIDGET_TOOLBAR_H #define CGAL_QT_WIDGET_TOOLBAR_H #include #include // TODO: check if some of those includes shouldn't be in the .C file #include #include #include "Qt_widget_move_list_point.h" #include #include #include #include #include typedef CGAL::Cartesian Rp; typedef Rp::Point_2 Point_2; class Tools_toolbar : public QToolBar { Q_OBJECT public: Tools_toolbar(CGAL::Qt_widget *w, QMainWindow *mw, std::list *l1); ~Tools_toolbar(){}; private: QToolButton *but[10]; QButtonGroup *button_group; CGAL::Qt_widget *widget; int nr_of_buttons; CGAL::Qt_widget_get_point pointbut; Qt_widget_move_list_point move_deletebut; };//end class #endif