-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathRibbon.py
More file actions
150 lines (120 loc) · 5.48 KB
/
Ribbon.py
File metadata and controls
150 lines (120 loc) · 5.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# *************************************************************************
# * *
# * Copyright (c) 2019-2024 Hakan Seven, Geolta, Paul Ebbers *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * as published by the Free Software Foundation; either version 3 of *
# * the License, or (at your option) any later version. *
# * for detail see the LICENCE text file. *
# * *
# * This program is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU Library General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with this program; if not, write to the Free Software *
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# * USA *
# * *
# *************************************************************************
# Script for creating the command for FreeCAD
# FreeCAD init script of the Work Features module
import FreeCAD as App
import FreeCADGui as Gui
# Define the translation
translate = App.Qt.translate
class RibbonApplicationMenu_Class:
def GetResources(self):
return {
"Pixmap": "./Resources/icons/FreecadNew.svg", # the name of a svg file available in the resources
"Accel": "Alt+A",
"MenuText": "Ribbon menu",
"ToolTip": "Shows the ribbon menu",
}
def Activated(self):
from PySide.QtWidgets import QDockWidget
from FCBinding import ModernMenu
# Get the main window of FreeCAD
mw = Gui.getMainWindow()
DockWidget = mw.findChildren(QDockWidget, "Ribbon")[0]
Ribbon = DockWidget.findChildren(ModernMenu, "Ribbon")[0]
Ribbon.applicationOptionButton().animateClick()
return
class RibbonLayout_Class:
def GetResources(self):
return {
"Pixmap": "./Resources/icons/FreecadNew.svg",
"Accel": "Alt+L",
"MenuText": "Ribbon Layout",
"ToolTip": "Design the ribbon to your preference",
}
def Activated(self):
from PySide.QtWidgets import QDockWidget
from FCBinding import ModernMenu
# Get the main window of FreeCAD
mw = Gui.getMainWindow()
DockWidget = mw.findChildren(QDockWidget, "Ribbon")[0]
Ribbon = DockWidget.findChildren(ModernMenu, "Ribbon")[0]
Ribbon.loadDesignMenu()
return
class RibbonPreferences_Class:
def GetResources(self):
return {
"Pixmap": "./Resources/icons/FreecadNew.svg",
"Accel": "Alt+P",
"MenuText": "Ribbon Preferences",
"ToolTip": "Set preferences for the Ribbon UI",
}
def Activated(self):
from PySide.QtWidgets import QDockWidget
from FCBinding import ModernMenu
# Get the main window of FreeCAD
mw = Gui.getMainWindow()
DockWidget = mw.findChildren(QDockWidget, "Ribbon")[0]
Ribbon = DockWidget.findChildren(ModernMenu, "Ribbon")[0]
Ribbon.loadSettingsMenu()
return
class RibbonPin_Class:
def GetResources(self):
return {
"Pixmap": "./Resources/icons/pin-icon-default.svg",
"Accel": "Alt+T",
"MenuText": "Pin button",
"ToolTip": "Click to toggle the autohide function on or off",
}
def Activated(self):
from PySide.QtWidgets import QDockWidget, QToolButton
from FCBinding import ModernMenu
# Get the main window of FreeCAD
mw = Gui.getMainWindow()
DockWidget = mw.findChildren(QDockWidget, "Ribbon")[0]
Ribbon = DockWidget.findChildren(ModernMenu, "Ribbon")[0]
RightToolbar = Ribbon.rightToolBar()
PinButton = RightToolbar.findChildren(QToolButton, "Pin Ribbon")[0]
PinButton.animateClick()
return
class MenuBar_Class:
def GetResources(self):
return {
"Pixmap": "./Resources/icons/FreecadNew.svg",
"Accel": "Alt+M",
"MenuText": "Toggle menubar",
"ToolTip": "Click to show or hide the menubar",
}
def Activated(self):
from PySide.QtWidgets import QMenuBar, QToolButton
# Get the main window of FreeCAD
mw = Gui.getMainWindow()
DockWidget = mw.findChildren(QDockWidget, "Ribbon")[0]
Ribbon = DockWidget.findChildren(ModernMenu, "Ribbon")[0]
RightToolbar = Ribbon.rightToolBar()
ToggleButton = RightToolbar.findChildren(QToolButton, "ToggleMenuBar")[0]
ToggleButton.animateClick()
return
Gui.addCommand("Ribbon_Menu", RibbonApplicationMenu_Class())
Gui.addCommand("Ribbon_Layout", RibbonLayout_Class())
Gui.addCommand("Ribbon_Preferences", RibbonPreferences_Class())
Gui.addCommand("Ribbon_Pin", RibbonPin_Class())
# Gui.addCommand("Ribbon_Menubar", MenuBar_Class())