02021-01-26 stream: List of tools per application in the workbench: create their command + toolbar icon & menu entry
This commit is contained in:
parent
cf51a13d8a
commit
3f02bb6cae
|
@ -28,5 +28,5 @@ class AppCommand():
|
||||||
# return false to grey out the command in the menus, toolbars etc.
|
# return false to grey out the command in the menus, toolbars etc.
|
||||||
return True
|
return True
|
||||||
|
|
||||||
for appName in ExternalAppsList.apps:
|
def createCommands(appName):
|
||||||
Gui.addCommand('ExternalAppsOpen' + appName + 'Command', AppCommand(appName))
|
Gui.addCommand('ExternalAppsOpen' + appName + 'Command', AppCommand(appName))
|
||||||
|
|
32
AppTools.py
Normal file
32
AppTools.py
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
import os
|
||||||
|
import FreeCAD
|
||||||
|
import FreeCADGui as Gui
|
||||||
|
import PySide
|
||||||
|
from PySide import QtGui
|
||||||
|
from PySide import QtCore
|
||||||
|
|
||||||
|
import ExternalAppsList
|
||||||
|
import Embed
|
||||||
|
|
||||||
|
class ToolCommand():
|
||||||
|
def __init__(self, appName, toolName):
|
||||||
|
self.Tool = ExternalAppsList.apps[appName].Tools[toolName]
|
||||||
|
|
||||||
|
def GetResources(self):
|
||||||
|
return {
|
||||||
|
'Pixmap': self.Tool.Icon,
|
||||||
|
#'Accel': "Shit+T",
|
||||||
|
'MenuText': self.Tool.ToolName,
|
||||||
|
'ToolTip': "Runs the " + self.Tool.ToolName + " tool from " + self.Tool.AppName + "\n\n" + self.Tool.ToolTip,
|
||||||
|
}
|
||||||
|
|
||||||
|
def Activated(self):
|
||||||
|
print("tool " + self.Tool.ToolName + " of " + self.Tool.AppName + " was activated with xforms" + str(self.Tool.XForms))
|
||||||
|
|
||||||
|
def IsActive(self):
|
||||||
|
# return false to grey out the command in the menus, toolbars etc.
|
||||||
|
return True
|
||||||
|
|
||||||
|
def createCommands(appName):
|
||||||
|
for toolName in ExternalAppsList.apps[appName].Tools:
|
||||||
|
Gui.addCommand('ExternalAppsTool' + appName + toolName + 'Command', ToolCommand(appName, toolName))
|
1
Embed.py
1
Embed.py
|
@ -106,6 +106,7 @@ def try_pipe_lines(commandAndArguments):
|
||||||
except:
|
except:
|
||||||
return []
|
return []
|
||||||
|
|
||||||
|
# TODO: this is just a quick & dirty way to attach a field to the FreeCad object
|
||||||
class ExternalApps():
|
class ExternalApps():
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
setattr(FreeCAD, 'ExternalApps', self)
|
setattr(FreeCAD, 'ExternalApps', self)
|
||||||
|
|
|
@ -9,34 +9,71 @@ from PySide import QtCore
|
||||||
|
|
||||||
from MyX11Utils import *
|
from MyX11Utils import *
|
||||||
|
|
||||||
|
class Tool():
|
||||||
|
def __init__(self, *, appName, toolName, xForms, toolTip, icon, extendedDescription, openHelpFile):
|
||||||
|
self.AppName = appName
|
||||||
|
self.ToolName = toolName
|
||||||
|
self.XForms = xForms
|
||||||
|
self.ToolTip = toolTip
|
||||||
|
self.Icon = icon
|
||||||
|
self.ExtendedDescription = extendedDescription
|
||||||
|
self.OpenHelpFile = openHelpFile
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def fromXForms(*, appName, xForms):
|
||||||
|
# TODO: implement a tool cache which avoids parsing the XML and memorizes the name and icon
|
||||||
|
return Tool(appName=appName,
|
||||||
|
toolName = "from XForms … TODO",
|
||||||
|
xForms = xForms,
|
||||||
|
toolTip = "from XForms … TODO",
|
||||||
|
# TODO: get the icon from the XForms file
|
||||||
|
icon = os.path.dirname(__file__) + '/icons/' + appName + '.svg',
|
||||||
|
extendedDescription = "from XForms … TODO",
|
||||||
|
openHelpFile = None)
|
||||||
|
|
||||||
|
class ToolsClass():
|
||||||
|
def __init__(self, tools):
|
||||||
|
# TODO: make this private
|
||||||
|
self.AllTools = {tool.ToolName: tool for tool in tools}
|
||||||
|
def __getitem__(self, k):
|
||||||
|
return self.AllTools[k]
|
||||||
|
def __iter__(self):
|
||||||
|
return self.AllTools.__iter__()
|
||||||
|
|
||||||
class App():
|
class App():
|
||||||
def __init__(self, name, *, start_command_and_args, xwininfo_filter_re, extra_xprop_filter):
|
def __init__(self, name, *, start_command_and_args, xwininfo_filter_re, extra_xprop_filter, tools):
|
||||||
self.name = name
|
self.name = name
|
||||||
self.Icon = os.path.dirname(__file__) + '/icons/' + self.name + '.svg'
|
self.Icon = os.path.dirname(__file__) + '/icons/' + self.name + '.svg'
|
||||||
self.start_command_and_args = start_command_and_args
|
self.start_command_and_args = start_command_and_args
|
||||||
self.xwininfo_filter_re = re.compile(xwininfo_filter_re)
|
self.xwininfo_filter_re = re.compile(xwininfo_filter_re)
|
||||||
self.extra_xprop_filter = extra_xprop_filter
|
self.extra_xprop_filter = extra_xprop_filter
|
||||||
|
self.Tools = ToolsClass([Tool.fromXForms(appName=self.name, xForms=t) for t in tools])
|
||||||
|
|
||||||
class Apps():
|
class Apps():
|
||||||
def __init__(self, *apps):
|
def __init__(self, *apps):
|
||||||
# TODO: make this private
|
# TODO: make this private
|
||||||
self.apps = {app.name: app for app in apps}
|
self.AllApps = {app.name: app for app in apps}
|
||||||
def __getitem__(self, k):
|
def __getitem__(self, k):
|
||||||
return self.apps[k]
|
return self.AllApps[k]
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
return self.apps.__iter__()
|
return self.AllApps.__iter__()
|
||||||
|
|
||||||
# app-specific infos:
|
# app-specific infos:
|
||||||
apps = Apps(
|
apps = Apps(
|
||||||
App('Mousepad',
|
App('Mousepad',
|
||||||
start_command_and_args = ['mousepad', '--disable-server'],
|
start_command_and_args = ['mousepad', '--disable-server'],
|
||||||
xwininfo_filter_re = r'mousepad',
|
xwininfo_filter_re = r'mousepad',
|
||||||
extra_xprop_filter = lambda processId, windowId, i: True),
|
extra_xprop_filter = lambda processId, windowId, i: True,
|
||||||
|
tools = []),
|
||||||
App('Inkscape',
|
App('Inkscape',
|
||||||
start_command_and_args = ['inkscape'],
|
start_command_and_args = ['inkscape'],
|
||||||
xwininfo_filter_re = r'inkscape',
|
xwininfo_filter_re = r'inkscape',
|
||||||
extra_xprop_filter = lambda processId, windowId, i: x11prop(windowId, 'WM_STATE', 'WM_STATE') is not None),
|
extra_xprop_filter = lambda processId, windowId, i: x11prop(windowId, 'WM_STATE', 'WM_STATE') is not None,
|
||||||
|
tools = [
|
||||||
|
"myTool.xforms"
|
||||||
|
]),
|
||||||
App('GIMP',
|
App('GIMP',
|
||||||
start_command_and_args = ['env', '-i', 'DISPLAY=:0', '/home/suzanne/perso/dotfiles/nix/result/bin/gimp', '--new-instance'],
|
start_command_and_args = ['env', '-i', 'DISPLAY=:0', '/home/suzanne/perso/dotfiles/nix/result/bin/gimp', '--new-instance'],
|
||||||
xwininfo_filter_re = r'gimp',
|
xwininfo_filter_re = r'gimp',
|
||||||
extra_xprop_filter = lambda processId, windowId, i: x11prop(windowId, 'WM_STATE', 'WM_STATE') is not None))
|
extra_xprop_filter = lambda processId, windowId, i: x11prop(windowId, 'WM_STATE', 'WM_STATE') is not None,
|
||||||
|
tools = []))
|
||||||
|
|
12
InitGui.py
12
InitGui.py
|
@ -52,10 +52,20 @@ class XternalAppsWorkbench(Workbench):
|
||||||
super(XternalAppsWorkbench, self).__init__()
|
super(XternalAppsWorkbench, self).__init__()
|
||||||
|
|
||||||
def Initialize(self):
|
def Initialize(self):
|
||||||
|
# Load commands
|
||||||
import AppCommand
|
import AppCommand
|
||||||
|
import AppTools
|
||||||
import Embed
|
import Embed
|
||||||
Embed.ExternalApps()
|
Embed.ExternalApps()
|
||||||
self.list = ['ExternalAppsOpen' + self.appName + 'Command']
|
AppCommand.createCommands(self.appName)
|
||||||
|
AppTools.createCommands(self.appName)
|
||||||
|
|
||||||
|
# List of commands for this workbench
|
||||||
|
self.list = ['ExternalAppsOpen' + self.appName + 'Command'] \
|
||||||
|
+ ['ExternalAppsTool' + self.appName + toolName + 'Command'
|
||||||
|
for toolName in ExternalAppsList.apps[self.appName].Tools]
|
||||||
|
|
||||||
|
# Create menus and toolbars
|
||||||
self.appendMenu("ExternalApplications", self.list)
|
self.appendMenu("ExternalApplications", self.list)
|
||||||
self.appendToolbar("ExternalApplications", self.list)
|
self.appendToolbar("ExternalApplications", self.list)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user