00001 /*************************************************************************** 00002 * Copyright (c) 2011 Juergen Riegel <FreeCAD@juergen-riegel.net> * 00003 * * 00004 * This file is part of the FreeCAD CAx development system. * 00005 * * 00006 * This library is free software; you can redistribute it and/or * 00007 * modify it under the terms of the GNU Library General Public * 00008 * License as published by the Free Software Foundation; either * 00009 * version 2 of the License, or (at your option) any later version. * 00010 * * 00011 * This library is distributed in the hope that it will be useful, * 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00014 * GNU Library General Public License for more details. * 00015 * * 00016 * You should have received a copy of the GNU Library General Public * 00017 * License along with this library; see the file COPYING.LIB. If not, * 00018 * write to the Free Software Foundation, Inc., 59 Temple Place, * 00019 * Suite 330, Boston, MA 02111-1307, USA * 00020 * * 00021 ***************************************************************************/ 00022 00023 00024 #ifndef GUI_TASKVIEW_TaskRevolutionParameters_H 00025 #define GUI_TASKVIEW_TaskRevolutionParameters_H 00026 00027 #include <Gui/TaskView/TaskView.h> 00028 #include <Gui/Selection.h> 00029 #include <Gui/TaskView/TaskDialog.h> 00030 00031 #include "ViewProviderRevolution.h" 00032 00033 class Ui_TaskRevolutionParameters; 00034 00035 namespace App { 00036 class Property; 00037 } 00038 00039 namespace Gui { 00040 class ViewProvider; 00041 } 00042 00043 namespace PartDesignGui { 00044 00045 00046 00047 class TaskRevolutionParameters : public Gui::TaskView::TaskBox 00048 { 00049 Q_OBJECT 00050 00051 public: 00052 TaskRevolutionParameters(ViewProviderRevolution *RevolutionView,QWidget *parent = 0); 00053 ~TaskRevolutionParameters(); 00054 00055 Base::Vector3f getAxis (void) const; 00056 double getAngle(void) const; 00057 00058 private Q_SLOTS: 00059 void onAngleChanged(double); 00060 void onAxisChanged(int); 00061 00062 protected: 00063 void changeEvent(QEvent *e); 00064 00065 private: 00066 00067 private: 00068 QWidget* proxy; 00069 Ui_TaskRevolutionParameters* ui; 00070 ViewProviderRevolution *RevolutionView; 00071 }; 00072 00074 class TaskDlgRevolutionParameters : public Gui::TaskView::TaskDialog 00075 { 00076 Q_OBJECT 00077 00078 public: 00079 TaskDlgRevolutionParameters(ViewProviderRevolution *RevolutionView); 00080 ~TaskDlgRevolutionParameters(); 00081 00082 ViewProviderRevolution* getRevolutionView() const 00083 { return RevolutionView; } 00084 00085 00086 public: 00088 virtual void open(); 00090 virtual void clicked(int); 00092 virtual bool accept(); 00094 virtual bool reject(); 00096 virtual bool isAllowedAlterDocument(void) const 00097 { return false; } 00098 00100 virtual QDialogButtonBox::StandardButtons getStandardButtons(void) const 00101 { return QDialogButtonBox::Ok|QDialogButtonBox::Cancel; } 00102 00103 protected: 00104 ViewProviderRevolution *RevolutionView; 00105 00106 TaskRevolutionParameters *parameter; 00107 }; 00108 00109 } //namespace PartDesignGui 00110 00111 #endif // GUI_TASKVIEW_TASKAPPERANCE_H