+ unify DLL export defines to namespace names
git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
This commit is contained in:
105
src/Mod/TemplatePyMod/TaskPanel.py
Normal file
105
src/Mod/TemplatePyMod/TaskPanel.py
Normal file
@@ -0,0 +1,105 @@
|
||||
# FreeCAD TemplatePyMod module
|
||||
# (c) 2011 Werner Mayer LGPL
|
||||
|
||||
import FreeCAD as App
|
||||
import FreeCADGui as Gui
|
||||
from PyQt4 import QtGui,QtCore
|
||||
|
||||
class MyLineEdit(QtGui.QLineEdit):
|
||||
pass
|
||||
|
||||
class TaskWatcher:
|
||||
def __init__(self):
|
||||
self.commands = ["Part_Box", "Part_Sphere", "Part_Cylinder"]
|
||||
self.title = "Create primitives"
|
||||
self.icon = "Part_Sphere"
|
||||
self.widgets = [MyLineEdit()]
|
||||
self.widgets[0].setText("Line edit inside task box")
|
||||
def shouldShow(self):
|
||||
return App.ActiveDocument is not None
|
||||
|
||||
class TaskLineEdit:
|
||||
def __init__(self):
|
||||
self.widgets = [MyLineEdit()]
|
||||
self.widgets[0].setText("Line edit with no task box")
|
||||
def shouldShow(self):
|
||||
return True
|
||||
|
||||
class TaskWatcherFilter:
|
||||
def __init__(self):
|
||||
self.commands = ["Sketcher_NewSketch", "PartDesign_Fillet", "PartDesign_Chamfer"]
|
||||
self.filter = "SELECT Part::Feature SUBELEMENT Face COUNT 1"
|
||||
self.title = "Face tools"
|
||||
self.icon = "Part_Box"
|
||||
|
||||
class TaskPanel:
|
||||
def __init__(self):
|
||||
self.ui = App.getResourceDir() + "Mod/TemplatePyMod/TaskPanel.ui"
|
||||
|
||||
def accept(self):
|
||||
return True
|
||||
|
||||
def reject(self):
|
||||
return True
|
||||
|
||||
def clicked(self, index):
|
||||
pass
|
||||
|
||||
def open(self):
|
||||
pass
|
||||
|
||||
def needsFullSpace(self):
|
||||
return False
|
||||
|
||||
def isAllowedAlterSelection(self):
|
||||
return True
|
||||
|
||||
def isAllowedAlterView(self):
|
||||
return True
|
||||
|
||||
def isAllowedAlterDocument(self):
|
||||
return True
|
||||
|
||||
def getStandardButtons(self):
|
||||
return int(QtGui.QDialogButtonBox.Ok)
|
||||
|
||||
def helpRequested(self):
|
||||
pass
|
||||
|
||||
def setupUi(self):
|
||||
mw = self.getMainWindow()
|
||||
form = mw.findChild(QtGui.QWidget, "TaskPanel")
|
||||
form.pushButton = form.findChild(QtGui.QPushButton, "pushButton")
|
||||
form.listWidget = form.findChild(QtGui.QListWidget, "listWidget")
|
||||
self.form = form
|
||||
#Connect Signals and Slots
|
||||
QtCore.QObject.connect(form.pushButton, QtCore.SIGNAL("clicked()"), self.addElement)
|
||||
|
||||
def getMainWindow(self):
|
||||
"returns the main window"
|
||||
# using QtGui.qApp.activeWindow() isn't very reliable because if another
|
||||
# widget than the mainwindow is active (e.g. a dialog) the wrong widget is
|
||||
# returned
|
||||
toplevel = QtGui.qApp.topLevelWidgets()
|
||||
for i in toplevel:
|
||||
if i.metaObject().className() == "Gui::MainWindow":
|
||||
return i
|
||||
raise Exception("No main window found")
|
||||
|
||||
def addElement(self):
|
||||
item=QtGui.QInputDialog.getText(self.form, 'Add item', 'Enter:')
|
||||
if item[1]:
|
||||
self.form.listWidget.addItem(item[0])
|
||||
|
||||
class TaskCalendar:
|
||||
def __init__(self):
|
||||
self.form = QtGui.QCalendarWidget()
|
||||
|
||||
|
||||
def createTask():
|
||||
Gui.Control.addTaskWatcher([TaskWatcher(), TaskLineEdit(), TaskWatcherFilter()])
|
||||
panel = TaskCalendar()
|
||||
#panel = TaskPanel()
|
||||
Gui.Control.showDialog(panel)
|
||||
#panel.setupUi()
|
||||
return panel
|
||||
Reference in New Issue
Block a user