mirror of https://github.com/CGAL/cgal
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
// Copyright (c) 2002 ETH Zurich (Switzerland).
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
// You can redistribute it and/or modify it under the terms of the GNU
|
|
// General Public License as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// 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.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
//
|
|
//
|
|
// Author(s) : Radu Ursu
|
|
|
|
|
|
#ifndef CGAL_QT_WIDGET_TOOLBAR_H
|
|
#define CGAL_QT_WIDGET_TOOLBAR_H
|
|
|
|
#include <CGAL/basic.h>
|
|
#include <CGAL/Cartesian.h>
|
|
|
|
|
|
// TODO: check if some of those includes shouldn't be in the .C file
|
|
#include <CGAL/IO/Qt_widget.h>
|
|
#include <CGAL/IO/Qt_widget_get_point.h>
|
|
#include "Qt_widget_move_list_point.h"
|
|
|
|
#include <qobject.h>
|
|
#include <qtoolbutton.h>
|
|
#include <qtoolbar.h>
|
|
#include <qbuttongroup.h>
|
|
#include <qmainwindow.h>
|
|
|
|
typedef CGAL::Cartesian<double> 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<Point_2> *l1);
|
|
~Tools_toolbar(){};
|
|
private:
|
|
QToolButton *but[10];
|
|
QButtonGroup *button_group;
|
|
CGAL::Qt_widget *widget;
|
|
int nr_of_buttons;
|
|
|
|
CGAL::Qt_widget_get_point<Rp> pointbut;
|
|
Qt_widget_move_list_point<Rp> move_deletebut;
|
|
};//end class
|
|
|
|
#endif
|