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_TaskHoleParameters_H 00025 #define GUI_TASKVIEW_TaskHoleParameters_H 00026 00027 #include <Gui/TaskView/TaskView.h> 00028 #include <Gui/Selection.h> 00029 #include <Gui/TaskView/TaskDialog.h> 00030 00031 #include "ViewProviderHole.h" 00032 00033 class Ui_TaskHoleParameters; 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 TaskHoleParameters : public Gui::TaskView::TaskBox, public Gui::SelectionSingleton::ObserverType 00048 { 00049 Q_OBJECT 00050 00051 public: 00052 TaskHoleParameters(QWidget *parent = 0); 00053 ~TaskHoleParameters(); 00055 void OnChange(Gui::SelectionSingleton::SubjectType &rCaller, 00056 Gui::SelectionSingleton::MessageType Reason); 00057 00058 private Q_SLOTS: 00059 00060 protected: 00061 void changeEvent(QEvent *e); 00062 00063 private: 00064 00065 private: 00066 QWidget* proxy; 00067 Ui_TaskHoleParameters* ui; 00068 }; 00069 00071 class TaskDlgHoleParameters : public Gui::TaskView::TaskDialog 00072 { 00073 Q_OBJECT 00074 00075 public: 00076 TaskDlgHoleParameters(ViewProviderHole *HoleView); 00077 ~TaskDlgHoleParameters(); 00078 00079 ViewProviderHole* getHoleView() const 00080 { return HoleView; } 00081 00082 public: 00084 virtual void open(); 00086 virtual void clicked(int); 00088 virtual bool accept(); 00090 virtual bool reject(); 00092 virtual void helpRequested(); 00093 virtual bool isAllowedAlterDocument(void) const 00094 { return false; } 00095 00097 virtual QDialogButtonBox::StandardButtons getStandardButtons(void) const 00098 { return QDialogButtonBox::Close|QDialogButtonBox::Help; } 00099 00100 protected: 00101 ViewProviderHole *HoleView; 00102 00103 TaskHoleParameters *parameter; 00104 }; 00105 00106 } //namespace PartDesignGui 00107 00108 #endif // GUI_TASKVIEW_TASKAPPERANCE_H