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_TaskPocketParameters_H 00025 #define GUI_TASKVIEW_TaskPocketParameters_H 00026 00027 #include <Gui/TaskView/TaskView.h> 00028 #include <Gui/Selection.h> 00029 #include <Gui/TaskView/TaskDialog.h> 00030 00031 #include "ViewProviderPocket.h" 00032 00033 class Ui_TaskPocketParameters; 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 TaskPocketParameters : public Gui::TaskView::TaskBox 00048 { 00049 Q_OBJECT 00050 00051 public: 00052 TaskPocketParameters(ViewProviderPocket *PocketView,QWidget *parent = 0); 00053 ~TaskPocketParameters(); 00054 00055 double getLength(void) const; 00056 00057 private Q_SLOTS: 00058 void onLengthChanged(double); 00059 00060 protected: 00061 void changeEvent(QEvent *e); 00062 00063 private: 00064 00065 private: 00066 QWidget* proxy; 00067 Ui_TaskPocketParameters* ui; 00068 ViewProviderPocket *PocketView; 00069 }; 00070 00072 class TaskDlgPocketParameters : public Gui::TaskView::TaskDialog 00073 { 00074 Q_OBJECT 00075 00076 public: 00077 TaskDlgPocketParameters(ViewProviderPocket *PocketView); 00078 ~TaskDlgPocketParameters(); 00079 00080 ViewProviderPocket* getPocketView() const 00081 { return PocketView; } 00082 00083 00084 public: 00086 virtual void open(); 00088 virtual void clicked(int); 00090 virtual bool accept(); 00092 virtual bool reject(); 00094 virtual bool isAllowedAlterDocument(void) const 00095 { return false; } 00096 00098 virtual QDialogButtonBox::StandardButtons getStandardButtons(void) const 00099 { return QDialogButtonBox::Ok|QDialogButtonBox::Cancel; } 00100 00101 protected: 00102 ViewProviderPocket *PocketView; 00103 00104 TaskPocketParameters *parameter; 00105 }; 00106 00107 } //namespace PartDesignGui 00108 00109 #endif // GUI_TASKVIEW_TASKAPPERANCE_H