Navigation indicator for FreeCAD
|
@ -231,6 +231,7 @@ OPTION(BUILD_SPREADSHEET "Build the FreeCAD spreadsheet module" ON)
|
|||
OPTION(BUILD_START "Build the FreeCAD start module" ON)
|
||||
OPTION(BUILD_TEST "Build the FreeCAD test module" ON)
|
||||
OPTION(BUILD_TECHDRAW "Build the FreeCAD Technical Drawing module" ON)
|
||||
OPTION(BUILD_TUX "Build the FreeCAD Tux module" ON)
|
||||
OPTION(BUILD_WEB "Build the FreeCAD web module" ON)
|
||||
OPTION(BUILD_VR "Build the FreeCAD Oculus Rift support (need Oculus SDK 4.x or higher)" OFF)
|
||||
|
||||
|
|
|
@ -139,3 +139,6 @@ if(BUILD_ADDONMGR)
|
|||
add_subdirectory(AddonManager)
|
||||
endif(BUILD_ADDONMGR)
|
||||
|
||||
if(BUILD_TUX)
|
||||
add_subdirectory(Tux)
|
||||
endif(BUILD_TUX)
|
||||
|
|
31
src/Mod/Tux/CMakeLists.txt
Normal file
|
@ -0,0 +1,31 @@
|
|||
IF (BUILD_GUI)
|
||||
PYSIDE_WRAP_RC(Tux_QRC_SRCS Resources/Tux.qrc)
|
||||
ENDIF (BUILD_GUI)
|
||||
|
||||
SET(Tux_SRCS
|
||||
InitGui.py
|
||||
NavigationIndicatorGui.py
|
||||
)
|
||||
SOURCE_GROUP("" FILES ${Tux_SRCS})
|
||||
|
||||
ADD_CUSTOM_TARGET(Tux ALL
|
||||
SOURCES ${Tux_SRCS} ${Tux_QRC_SRCS}
|
||||
)
|
||||
|
||||
fc_copy_sources(Tux "${CMAKE_BINARY_DIR}/Mod/Tux" ${Tux_SRCS})
|
||||
|
||||
IF (BUILD_GUI)
|
||||
fc_target_copy_resource(Tux
|
||||
${CMAKE_CURRENT_BINARY_DIR}
|
||||
${CMAKE_BINARY_DIR}/Mod/Tux
|
||||
Tux_rc.py)
|
||||
ENDIF (BUILD_GUI)
|
||||
|
||||
INSTALL(
|
||||
FILES
|
||||
${Tux_SRCS}
|
||||
${Tux_QRC_SRCS}
|
||||
DESTINATION
|
||||
Mod/Tux
|
||||
)
|
||||
|
26
src/Mod/Tux/InitGui.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Tux module for FreeCAD
|
||||
# Copyright (C) 2017 triplus @ FreeCAD
|
||||
#
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2.1 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library 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
|
||||
# Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
"""Tux module for FreeCAD."""
|
||||
|
||||
p = FreeCAD.ParamGet("User parameter:Tux")
|
||||
|
||||
if p.GetGroup("NavigationIndicator").GetBool("Enabled", 1):
|
||||
import NavigationIndicatorGui
|
||||
else:
|
||||
pass
|
439
src/Mod/Tux/NavigationIndicatorGui.py
Normal file
|
@ -0,0 +1,439 @@
|
|||
# Navigation indicator for FreeCAD
|
||||
# Copyright (C) 2016, 2017 triplus @ FreeCAD
|
||||
#
|
||||
#
|
||||
# This library is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU Lesser General Public
|
||||
# License as published by the Free Software Foundation; either
|
||||
# version 2.1 of the License, or (at your option) any later version.
|
||||
#
|
||||
# This library 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
|
||||
# Lesser General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Lesser General Public
|
||||
# License along with this library; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
"""Navigation indicator for FreeCAD."""
|
||||
|
||||
import Tux_rc
|
||||
import FreeCAD as App
|
||||
import FreeCADGui as Gui
|
||||
from PySide import QtGui
|
||||
from PySide import QtCore
|
||||
|
||||
timer = QtCore.QTimer()
|
||||
mw = Gui.getMainWindow()
|
||||
statusBar = mw.statusBar()
|
||||
p = App.ParamGet("User parameter:Tux/NavigationIndicator")
|
||||
pView = App.ParamGet("User parameter:BaseApp/Preferences/View")
|
||||
|
||||
t0 = "Navigation style not recognized."
|
||||
|
||||
t1 = str("""<p align='center'><b>OpenInventor</b> navigation style</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationOpenInventor_Select.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenInventor_Zoom.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenInventor_ZoomAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenInventor_Rotate.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenInventor_Pan.svg'></td>
|
||||
</tr>
|
||||
</table>""")
|
||||
|
||||
t2 = str("""<p align='center'><b>CAD</b> navigation style</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationCAD_Select.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationCAD_Zoom.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationCAD_Rotate.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationCAD_RotateAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationCAD_Pan.svg'></td>
|
||||
</tr>
|
||||
</table>""")
|
||||
|
||||
t3 = str("""<p align='center'><b>Blender</b> navigation style</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationBlender_Select.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationBlender_Zoom.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationBlender_Rotate.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationBlender_Pan.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationBlender_PanAlt.svg'></td>
|
||||
</tr>
|
||||
</table>""")
|
||||
|
||||
t4 = str("""<p align='center'><b>MayaGesture</b> navigation style</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Tilt</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_Select.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_Zoom.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_ZoomAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_Rotate.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_Pan.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_Tilt.svg'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Tilt</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_SelectTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_ZoomTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_RotateTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_PanTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_PanTouchAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationMayaGesture_TiltTouch.svg'></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><small><b>Zoom:</b> Page Up or Page Down key.<br>
|
||||
<b>Rotation focus:</b> Middle mouse button or key H.</small></p>""")
|
||||
|
||||
t5 = str("""<p align='center'><b>Touchpad</b> navigation style</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_Select.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_Zoom.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_ZoomAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_Rotate.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_RotateAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_Pan.svg'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_SelectTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_ZoomTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_RotateTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_RotateTouchAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationTouchpad_PanTouch.svg'></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><small><b>Zoom:</b> Page Up or Page Down key.</small></p>""")
|
||||
|
||||
t6 = str("""<p align='center'><b>Gesture</b> navigation style</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Tilt</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_Select.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_Zoom.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_Rotate.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_RotateAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_Pan.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_Tilt.svg'></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Tilt</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_SelectTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_ZoomTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_RotateTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_PanTouch.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_PanTouchAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationGesture_TiltTouch.svg'></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><small><b>Zoom:</b> Page Up or Page Down key.<br>
|
||||
<b>Rotation focus:</b> Middle mouse button or key H.</small></p>""")
|
||||
|
||||
t7 = str("""<p align='center'><b>OpenCascade</b> navigation style</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th><small>Select</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Zoom</small></th>
|
||||
<th><small>Rotate</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
<th><small>Pan</small></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align='center'><img src=':/icons/NavigationOpenCascade_Select.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenCascade_Zoom.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenCascade_ZoomAlt.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenCascade_Rotate.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenCascade_Pan.svg'></td>
|
||||
<td align='center'><img src=':/icons/NavigationOpenCascade_PanAlt.svg'></td>
|
||||
</tr>
|
||||
</table>""")
|
||||
|
||||
indicator = QtGui.QToolButton(statusBar)
|
||||
indicator.setAutoRaise(True)
|
||||
indicator.setObjectName("Std_NavigationIndicator")
|
||||
indicator.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon)
|
||||
indicator.setPopupMode(QtGui.QToolButton
|
||||
.ToolButtonPopupMode
|
||||
.InstantPopup)
|
||||
|
||||
menu = QtGui.QMenu(indicator)
|
||||
indicator.setMenu(menu)
|
||||
|
||||
menuSettings = QtGui.QMenu("Settings", menu)
|
||||
menuOrbit = QtGui.QMenu("Orbit style", menu)
|
||||
|
||||
aCompact = QtGui.QAction(menuSettings)
|
||||
aCompact.setText("Compact")
|
||||
aCompact.setCheckable(True)
|
||||
aTooltip = QtGui.QAction(menuSettings)
|
||||
aTooltip.setText("Tooltip")
|
||||
aTooltip.setCheckable(True)
|
||||
|
||||
gOrbit = QtGui.QActionGroup(menuSettings)
|
||||
|
||||
aTurntable = QtGui.QAction(gOrbit)
|
||||
aTurntable.setText("Turntable")
|
||||
aTurntable.setCheckable(True)
|
||||
aTrackball = QtGui.QAction(gOrbit)
|
||||
aTrackball.setText("Trackball")
|
||||
aTrackball.setCheckable(True)
|
||||
|
||||
menuOrbit.addAction(aTurntable)
|
||||
menuOrbit.addAction(aTrackball)
|
||||
|
||||
menuSettings.addMenu(menuOrbit)
|
||||
menuSettings.addSeparator()
|
||||
menuSettings.addAction(aCompact)
|
||||
menuSettings.addAction(aTooltip)
|
||||
|
||||
gStyle = QtGui.QActionGroup(menu)
|
||||
|
||||
a0 = QtGui.QAction(gStyle)
|
||||
a0.setIcon(QtGui.QIcon(":/icons/NavigationUndefined.svg"))
|
||||
a0.setText("Undefined")
|
||||
a0.setData("Undefined")
|
||||
a0.setObjectName("Indicator_NavigationUndefined")
|
||||
|
||||
a1 = QtGui.QAction(gStyle)
|
||||
a1.setIcon(QtGui.QIcon(":/icons/NavigationOpenInventor.svg"))
|
||||
a1.setText("OpenInventor")
|
||||
a1.setData("Gui::InventorNavigationStyle")
|
||||
a1.setObjectName("Indicator_NavigationOpenInventor")
|
||||
|
||||
a2 = QtGui.QAction(gStyle)
|
||||
a2.setIcon(QtGui.QIcon(':/icons/NavigationCAD.svg'))
|
||||
a2.setText("CAD")
|
||||
a2.setData("Gui::CADNavigationStyle")
|
||||
a2.setObjectName("Indicator_NavigationCAD")
|
||||
|
||||
a3 = QtGui.QAction(gStyle)
|
||||
a3.setIcon(QtGui.QIcon(":/icons/NavigationBlender.svg"))
|
||||
a3.setText("Blender")
|
||||
a3.setData("Gui::BlenderNavigationStyle")
|
||||
a3.setObjectName("Indicator_NavigationBlender")
|
||||
|
||||
a4 = QtGui.QAction(gStyle)
|
||||
a4.setIcon(QtGui.QIcon(":/icons/NavigationMayaGesture.svg"))
|
||||
a4.setText("MayaGesture")
|
||||
a4.setData("Gui::MayaGestureNavigationStyle")
|
||||
a4.setObjectName("Indicator_NavigationMayaGesture")
|
||||
|
||||
a5 = QtGui.QAction(gStyle)
|
||||
a5.setIcon(QtGui.QIcon(":/icons/NavigationTouchpad.svg"))
|
||||
a5.setText("Touchpad")
|
||||
a5.setData("Gui::TouchpadNavigationStyle")
|
||||
a5.setObjectName("Indicator_NavigationTouchpad")
|
||||
|
||||
a6 = QtGui.QAction(gStyle)
|
||||
a6.setIcon(QtGui.QIcon(":/icons/NavigationGesture.svg"))
|
||||
a6.setText("Gesture")
|
||||
a6.setData("Gui::GestureNavigationStyle")
|
||||
a6.setObjectName("Indicator_NavigationGesture")
|
||||
|
||||
a7 = QtGui.QAction(gStyle)
|
||||
a7.setIcon(QtGui.QIcon(":/icons/NavigationOpenCascade.svg"))
|
||||
a7.setText("OpenCascade")
|
||||
a7.setData("Gui::OpenCascadeNavigationStyle")
|
||||
a7.setObjectName("Indicator_NavigationOpenCascade")
|
||||
|
||||
menu.addMenu(menuSettings)
|
||||
menu.addSeparator()
|
||||
menu.addAction(a0)
|
||||
menu.addAction(a1)
|
||||
menu.addAction(a2)
|
||||
menu.addAction(a3)
|
||||
menu.addAction(a4)
|
||||
menu.addAction(a5)
|
||||
menu.addAction(a6)
|
||||
menu.addAction(a7)
|
||||
|
||||
|
||||
def onCompact():
|
||||
"""Enable or disable compact mode."""
|
||||
if aCompact.isChecked():
|
||||
indicator.setToolButtonStyle(QtCore.Qt.ToolButtonIconOnly)
|
||||
indicator.setStyleSheet("QToolButton::menu-indicator {image: none}")
|
||||
p.SetBool("Compact", 1)
|
||||
else:
|
||||
indicator.setToolButtonStyle(QtCore.Qt.ToolButtonTextBesideIcon)
|
||||
indicator.setStyleSheet("QToolButton::menu-indicator {}")
|
||||
p.SetBool("Compact", 0)
|
||||
|
||||
|
||||
def onTooltip():
|
||||
"""Enable or disable verbose tooltips."""
|
||||
if aTooltip.isChecked():
|
||||
a0.setToolTip(t0)
|
||||
a1.setToolTip(t1)
|
||||
a2.setToolTip(t2)
|
||||
a3.setToolTip(t3)
|
||||
a4.setToolTip(t4)
|
||||
a5.setToolTip(t5)
|
||||
a6.setToolTip(t6)
|
||||
a7.setToolTip(t7)
|
||||
p.SetBool("Tooltip", 1)
|
||||
else:
|
||||
for i in gStyle.actions():
|
||||
i.setToolTip("")
|
||||
p.SetBool("Tooltip", 0)
|
||||
|
||||
|
||||
def onOrbit():
|
||||
"""Use turntable or trackball orbit style."""
|
||||
if aTurntable.isChecked():
|
||||
pView.SetInt("OrbitStyle", 1)
|
||||
else:
|
||||
pView.SetInt("OrbitStyle", 0)
|
||||
|
||||
|
||||
def onMenu(action):
|
||||
"""Set navigation style on selection."""
|
||||
|
||||
s = False
|
||||
|
||||
if action.data() != "Undefined":
|
||||
s = True
|
||||
menu.setDefaultAction(action)
|
||||
indicator.setDefaultAction(action)
|
||||
pView.SetString("NavigationStyle", action.data())
|
||||
else:
|
||||
pass
|
||||
|
||||
if s:
|
||||
a0.setVisible(False)
|
||||
else:
|
||||
a0.setVisible(True)
|
||||
a0.setEnabled(True)
|
||||
menu.setDefaultAction(a0)
|
||||
indicator.setDefaultAction(a0)
|
||||
|
||||
|
||||
def setCurrent():
|
||||
"""Set navigation style on start and on interval."""
|
||||
|
||||
gStyle.blockSignals(True)
|
||||
|
||||
s = False
|
||||
actions = gStyle.actions()
|
||||
current = pView.GetString("NavigationStyle")
|
||||
|
||||
if current:
|
||||
for i in actions:
|
||||
if i.data() == current:
|
||||
s = True
|
||||
menu.setDefaultAction(i)
|
||||
indicator.setDefaultAction(i)
|
||||
else:
|
||||
pass
|
||||
else:
|
||||
s = True
|
||||
menu.setDefaultAction(a2)
|
||||
indicator.setDefaultAction(a2)
|
||||
pView.SetString("NavigationStyle", a2.data())
|
||||
|
||||
if s:
|
||||
a0.setVisible(False)
|
||||
else:
|
||||
a0.setVisible(True)
|
||||
a0.setEnabled(True)
|
||||
menu.setDefaultAction(a0)
|
||||
indicator.setDefaultAction(a0)
|
||||
|
||||
gStyle.blockSignals(False)
|
||||
|
||||
if p.GetBool("Compact"):
|
||||
aCompact.setChecked(True)
|
||||
|
||||
if p.GetBool("Tooltip", 1):
|
||||
aTooltip.setChecked(True)
|
||||
|
||||
if pView.GetInt("OrbitStyle", 1):
|
||||
aTurntable.setChecked(True)
|
||||
else:
|
||||
aTrackball.setChecked(True)
|
||||
|
||||
onCompact()
|
||||
onTooltip()
|
||||
onOrbit()
|
||||
|
||||
statusBar.addPermanentWidget(indicator)
|
||||
statusBar.addPermanentWidget(statusBar.children()[2])
|
||||
|
||||
setCurrent()
|
||||
|
||||
gStyle.triggered.connect(onMenu)
|
||||
gOrbit.triggered.connect(onOrbit)
|
||||
aCompact.triggered.connect(onCompact)
|
||||
aTooltip.triggered.connect(onTooltip)
|
||||
|
||||
timer.timeout.connect(setCurrent)
|
||||
timer.start(10000)
|
69
src/Mod/Tux/Resources/Tux.qrc
Normal file
|
@ -0,0 +1,69 @@
|
|||
<RCC>
|
||||
<qresource>
|
||||
<file>icons/NavigationBlender_PanAlt.svg</file>
|
||||
<file>icons/NavigationBlender_Pan.svg</file>
|
||||
<file>icons/NavigationBlender_Rotate.svg</file>
|
||||
<file>icons/NavigationBlender_Select.svg</file>
|
||||
<file>icons/NavigationBlender.svg</file>
|
||||
<file>icons/NavigationBlender_Zoom.svg</file>
|
||||
<file>icons/NavigationCADAlt.svg</file>
|
||||
<file>icons/NavigationCAD_Pan.svg</file>
|
||||
<file>icons/NavigationCAD_RotateAlt.svg</file>
|
||||
<file>icons/NavigationCAD_Rotate.svg</file>
|
||||
<file>icons/NavigationCAD_Select.svg</file>
|
||||
<file>icons/NavigationCAD.svg</file>
|
||||
<file>icons/NavigationCAD_Zoom.svg</file>
|
||||
<file>icons/NavigationGesture_Pan.svg</file>
|
||||
<file>icons/NavigationGesture_PanTouchAlt.svg</file>
|
||||
<file>icons/NavigationGesture_PanTouch.svg</file>
|
||||
<file>icons/NavigationGesture_RotateAlt.svg</file>
|
||||
<file>icons/NavigationGesture_Rotate.svg</file>
|
||||
<file>icons/NavigationGesture_RotateTouch.svg</file>
|
||||
<file>icons/NavigationGesture_Select.svg</file>
|
||||
<file>icons/NavigationGesture_SelectTouch.svg</file>
|
||||
<file>icons/NavigationGesture.svg</file>
|
||||
<file>icons/NavigationGesture_Tilt.svg</file>
|
||||
<file>icons/NavigationGesture_TiltTouch.svg</file>
|
||||
<file>icons/NavigationGesture_Zoom.svg</file>
|
||||
<file>icons/NavigationGesture_ZoomTouch.svg</file>
|
||||
<file>icons/NavigationMayaGesture_Pan.svg</file>
|
||||
<file>icons/NavigationMayaGesture_PanTouchAlt.svg</file>
|
||||
<file>icons/NavigationMayaGesture_PanTouch.svg</file>
|
||||
<file>icons/NavigationMayaGesture_Rotate.svg</file>
|
||||
<file>icons/NavigationMayaGesture_RotateTouch.svg</file>
|
||||
<file>icons/NavigationMayaGesture_Select.svg</file>
|
||||
<file>icons/NavigationMayaGesture_SelectTouch.svg</file>
|
||||
<file>icons/NavigationMayaGesture.svg</file>
|
||||
<file>icons/NavigationMayaGesture_Tilt.svg</file>
|
||||
<file>icons/NavigationMayaGesture_TiltTouch.svg</file>
|
||||
<file>icons/NavigationMayaGesture_ZoomAlt.svg</file>
|
||||
<file>icons/NavigationMayaGesture_Zoom.svg</file>
|
||||
<file>icons/NavigationMayaGesture_ZoomTouch.svg</file>
|
||||
<file>icons/NavigationOpenCascade_PanAlt.svg</file>
|
||||
<file>icons/NavigationOpenCascade_Pan.svg</file>
|
||||
<file>icons/NavigationOpenCascade_Rotate.svg</file>
|
||||
<file>icons/NavigationOpenCascade_Select.svg</file>
|
||||
<file>icons/NavigationOpenCascade.svg</file>
|
||||
<file>icons/NavigationOpenCascade_ZoomAlt.svg</file>
|
||||
<file>icons/NavigationOpenCascade_Zoom.svg</file>
|
||||
<file>icons/NavigationOpenInventor_Pan.svg</file>
|
||||
<file>icons/NavigationOpenInventor_Rotate.svg</file>
|
||||
<file>icons/NavigationOpenInventor_Select.svg</file>
|
||||
<file>icons/NavigationOpenInventor.svg</file>
|
||||
<file>icons/NavigationOpenInventor_ZoomAlt.svg</file>
|
||||
<file>icons/NavigationOpenInventor_Zoom.svg</file>
|
||||
<file>icons/NavigationTouchpad_Pan.svg</file>
|
||||
<file>icons/NavigationTouchpad_PanTouch.svg</file>
|
||||
<file>icons/NavigationTouchpad_RotateAlt.svg</file>
|
||||
<file>icons/NavigationTouchpad_Rotate.svg</file>
|
||||
<file>icons/NavigationTouchpad_RotateTouchAlt.svg</file>
|
||||
<file>icons/NavigationTouchpad_RotateTouch.svg</file>
|
||||
<file>icons/NavigationTouchpad_Select.svg</file>
|
||||
<file>icons/NavigationTouchpad_SelectTouch.svg</file>
|
||||
<file>icons/NavigationTouchpad.svg</file>
|
||||
<file>icons/NavigationTouchpad_ZoomAlt.svg</file>
|
||||
<file>icons/NavigationTouchpad_Zoom.svg</file>
|
||||
<file>icons/NavigationTouchpad_ZoomTouch.svg</file>
|
||||
<file>icons/NavigationUndefined.svg</file>
|
||||
</qresource>
|
||||
</RCC>
|
27
src/Mod/Tux/Resources/icons/NavigationBlender.svg
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" viewBox="0 0 63.999999 63.999999" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1-7" transform="translate(0 -988.86)" stroke="#2e3436" stroke-width="6" fill="none">
|
||||
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
|
||||
<path id="path4209" d="m32 1004.4v12"/>
|
||||
</g>
|
||||
<g id="Ortho_0_-1" stroke-linejoin="round" transform="matrix(-1.0445 0 0 -1.0419 30.547 32.04)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7515">
|
||||
<g id="g4192" stroke-linejoin="round" transform="scale(1,-1)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7515" fill="none">
|
||||
<path id="path4194" stroke-linejoin="round" d="m13.917 7.4999c-0.454-2.6666-1.713-5.2777-3.917-7.4999 2.2038-2.2224 3.4631-4.8335 3.9168-7.5001" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7515"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4153" stroke-linejoin="round" transform="matrix(1.0445 0 0 -1.0419 33.453 32.04)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7517">
|
||||
<g id="g4155" stroke-linejoin="round" transform="scale(1,-1)" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7517" fill="none">
|
||||
<path id="path4157" stroke-linejoin="round" d="m13.917 7.4999c-0.454-2.6666-1.713-5.2777-3.917-7.4999 2.2038-2.2224 3.4631-4.8335 3.9168-7.5001" stroke="#2e3436" stroke-linecap="round" stroke-width="5.7517"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
39
src/Mod/Tux/Resources/icons/NavigationBlender_Pan.svg
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g id="g6444" transform="translate(73.082 -4.4655)">
|
||||
<rect id="rect4151-2" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="996.83" x="-70.082" fill="#eeeeec"/>
|
||||
<g id="g6386" transform="translate(-73.082 4.4677)" stroke="#2e3436" stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4257-2" d="m14.837 999.16q0-0.9521 0.65918-1.6296 0.65918-0.6836 1.593-0.6836 1.2939 0 2.3499 0.3967 0.43945 0.1648 0.43945 0.5066 0 0.4211-0.42114 0.4211-0.177 0-0.55542-0.1464-0.78735-0.3052-1.6785-0.3052-0.80566 0-1.2268 0.5737-0.25635 0.3479-0.25635 0.9155 0 0.7752 0.94604 1.2574l2.2278 1.1291q1.4465 0.7446 1.4465 2.1607 0 1.062-0.75684 1.715-0.68359 0.5921-1.6418 0.5921-1.4526 0-2.7832-0.8728-0.3418-0.2258-0.3418-0.5005 0-0.4211 0.45166-0.4211 0.1648 0 0.43945 0.1953 0.96436 0.6897 2.3132 0.6897 0.39673 0 0.71411-0.1648 0.7019-0.3662 0.7019-1.2635 0-0.8483-0.92163-1.3122l-2.3987-1.2146q-1.3-0.6592-1.3-2.0386z"/>
|
||||
<path id="path4259-9" d="m26.568 1001.4h-3.7903v4.1687q0 0.47-0.45166 0.47-0.44556 0-0.44556-0.4639v-8.2336q0-0.5188 0.44556-0.5188 0.45166 0 0.45166 0.5188v3.18h3.7903v-3.2166q0-0.4578 0.43335-0.4578t0.43335 0.4517v8.252q0 0.4883-0.43335 0.4883t-0.43335-0.4761v-4.1626z"/>
|
||||
<path id="path4261-1" d="m30.206 1005.5q0 0.5859-0.46387 0.5859t-0.46387-0.5737v-8.0934q0-0.5493 0.46387-0.5493t0.46387 0.5676v8.0628z"/>
|
||||
<path id="path4263-2" d="m32.94 1001.4v4.1321q0 0.5005-0.45776 0.5005-0.44556 0-0.44556-0.5066 0 0 0-8.2886 0-0.4272 0.47607-0.4272 0 0 3.6377 0 0.48218 0 0.48218 0.4394 0 0.4395-0.47607 0.4395h-3.2104v2.8198h3.2104q0.47607 0 0.47607 0.4456 0 0.4455-0.48218 0.4455h-3.2104z"/>
|
||||
<path id="path4265-7" d="m37.859 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
</g>
|
||||
<g id="g8688-0" transform="translate(-25.42 8.1084)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826-5" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828-3" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
</g>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
28
src/Mod/Tux/Resources/icons/NavigationBlender_PanAlt.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
26
src/Mod/Tux/Resources/icons/NavigationBlender_Rotate.svg
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
28
src/Mod/Tux/Resources/icons/NavigationBlender_Select.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
31
src/Mod/Tux/Resources/icons/NavigationBlender_Zoom.svg
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
<g id="g4260" transform="translate(0 -1.3716)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
17
src/Mod/Tux/Resources/icons/NavigationCAD.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)" stroke="#2e3436" stroke-width="6" fill="none">
|
||||
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
|
||||
<path id="path4209" d="m32 1004.4v12"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 859 B |
16
src/Mod/Tux/Resources/icons/NavigationCADAlt.svg
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" viewBox="0 0 64 64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<path id="rect8162" d="m8 18c-2.216 0-4 1.784-4 4v20c0 2.216 1.784 4 4 4h48c2.216 0 4-1.784 4-4v-20c0-2.216-1.784-4-4-4h-48zm9.537 5.76c0.653 0 1.244 0.054 1.775 0.16 0.532 0.091 0.995 0.197 1.389 0.318 0.395 0.122 0.721 0.25 0.979 0.387s0.44 0.236 0.547 0.297l-0.844 2.344c-0.364-0.228-0.888-0.44-1.571-0.637-0.667-0.212-1.396-0.32-2.185-0.32-0.683 0-1.32 0.122-1.912 0.365-0.592 0.227-1.107 0.576-1.547 1.047-0.425 0.47-0.759 1.062-1.002 1.775s-0.363 1.54-0.363 2.481c0 0.834 0.091 1.6 0.273 2.298 0.197 0.698 0.492 1.307 0.887 1.823 0.394 0.5 0.895 0.895 1.502 1.183 0.607 0.273 1.336 0.41 2.185 0.41 1.017 0 1.844-0.099 2.481-0.296 0.637-0.213 1.131-0.41 1.48-0.592l0.774 2.343c-0.182 0.122-0.432 0.244-0.75 0.366-0.304 0.121-0.669 0.242-1.094 0.363-0.425 0.106-0.902 0.191-1.434 0.252-0.531 0.076-1.1 0.113-1.707 0.113-1.183 0-2.246-0.182-3.187-0.547-0.941-0.364-1.736-0.895-2.389-1.593-0.652-0.714-1.155-1.577-1.504-2.594-0.3487-1.017-0.5231-2.186-0.5231-3.506s0.1972-2.489 0.5921-3.506c0.409-1.017 0.964-1.874 1.662-2.572 0.698-0.713 1.518-1.251 2.459-1.615 0.941-0.365 1.95-0.547 3.027-0.547zm27.787 0.205c1.32 0 2.527 0.16 3.619 0.478 1.093 0.304 2.027 0.79 2.801 1.457 0.789 0.653 1.396 1.488 1.82 2.504 0.425 1.002 0.639 2.2 0.639 3.596 0 1.366-0.214 2.557-0.639 3.574-0.424 1.002-1.031 1.843-1.82 2.526-0.774 0.667-1.714 1.17-2.822 1.504-1.093 0.318-2.307 0.476-3.643 0.476-0.637 0-1.358-0.029-2.162-0.09-0.804-0.045-1.57-0.151-2.299-0.318v-15.32c0.729-0.167 1.503-0.273 2.323-0.319 0.819-0.045 1.546-0.068 2.183-0.068zm-15.48 0.16h2.709c0.531 1.123 1.048 2.261 1.549 3.414 0.5 1.153 1.001 2.366 1.502 3.641 0.515 1.274 1.039 2.626 1.57 4.052 0.546 1.427 1.115 2.982 1.707 4.666h-3.096c-0.212-0.622-0.432-1.236-0.66-1.843s-0.448-1.23-0.66-1.867h-6.647c-0.212 0.637-0.432 1.268-0.66 1.89l-0.637 1.82h-2.982c0.592-1.684 1.154-3.239 1.686-4.666 0.531-1.426 1.046-2.778 1.546-4.052 0.516-1.275 1.025-2.488 1.526-3.641s1.016-2.291 1.547-3.414zm15.664 2.322c-0.85 0-1.458 0.021-1.822 0.067v11.017c0.166 0.016 0.387 0.032 0.66 0.047h1.115c1.927 0 3.362-0.486 4.303-1.457 0.956-0.986 1.433-2.361 1.433-4.121 0-1.791-0.463-3.163-1.388-4.119-0.926-0.956-2.359-1.434-4.301-1.434zm-14.365 0.727c-0.349 0.804-0.752 1.784-1.207 2.937-0.441 1.154-0.904 2.406-1.389 3.756h5.189c-0.485-1.35-0.955-2.611-1.41-3.779-0.455-1.169-0.85-2.14-1.183-2.914z" transform="translate(0 988.36)" fill="#2e3436"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.0 KiB |
26
src/Mod/Tux/Resources/icons/NavigationCAD_Pan.svg
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
34
src/Mod/Tux/Resources/icons/NavigationCAD_Rotate.svg
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke="#2e3436" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke="#2e3436" stroke-width="2" fill="none"/>
|
||||
<g>
|
||||
<rect id="rect4139" height="18" stroke="#2e3436" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<g id="text4139" transform="translate(.65152 -2.1518)">
|
||||
<path id="path4148" d="m31.013 1009.8q0.2-0.1883 0.41765-0.1883 0.44118 0 0.44118 0.4883v7.8648q0 0.5-0.42354 0.5-0.4353 0-0.4353-0.5059 0 0 0-6.9354l-1.0235 1.0236q-0.15883 0.1588-0.31765 0.1588-0.44707 0-0.44707-0.3941 0-0.2 0.17059-0.3706l1.6177-1.6412z"/>
|
||||
</g>
|
||||
<g id="text4143" transform="translate(3.017 -1.7542)">
|
||||
<path id="path4151" d="m19.717 1003.1q-0.45883 0-0.45883-0.4118 0-0.1294 0.10588-0.3411 0.37059-0.7295 0.85295-1.0412 0.60001-0.3883 1.2647-0.3883 1.1177 0 1.753 0.853 0.46471 0.6235 0.46471 1.3412 0 0.6294-0.38824 1.2588l-2.853 4.606h2.7883q0.44118 0 0.44118 0.4412 0 0.3823-0.48236 0.3823h-3.4177q-0.52354 0-0.52354-0.3765 0-0.1647 0.07647-0.2882l3.1648-5.1001q0.32353-0.5235 0.32353-0.9235 0-0.5059-0.32353-0.8824-0.39412-0.4588-1.053-0.4588-0.81766 0-1.3236 0.9647-0.19412 0.3647-0.41177 0.3647z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
34
src/Mod/Tux/Resources/icons/NavigationCAD_RotateAlt.svg
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke="#2e3436" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke="#2e3436" stroke-width="2" fill="none"/>
|
||||
<g>
|
||||
<rect id="rect4139" height="18" stroke="#2e3436" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<g id="text4139" transform="translate(.65152 -2.1518)">
|
||||
<path id="path4148" d="m31.013 1009.8q0.2-0.1883 0.41765-0.1883 0.44118 0 0.44118 0.4883v7.8648q0 0.5-0.42354 0.5-0.4353 0-0.4353-0.5059 0 0 0-6.9354l-1.0235 1.0236q-0.15883 0.1588-0.31765 0.1588-0.44707 0-0.44707-0.3941 0-0.2 0.17059-0.3706l1.6177-1.6412z"/>
|
||||
</g>
|
||||
<g id="text4143" transform="translate(18.025 -1.7542)">
|
||||
<path id="path4151" d="m19.717 1003.1q-0.45883 0-0.45883-0.4118 0-0.1294 0.10588-0.3411 0.37059-0.7295 0.85295-1.0412 0.60001-0.3883 1.2647-0.3883 1.1177 0 1.753 0.853 0.46471 0.6235 0.46471 1.3412 0 0.6294-0.38824 1.2588l-2.853 4.606h2.7883q0.44118 0 0.44118 0.4412 0 0.3823-0.48236 0.3823h-3.4177q-0.52354 0-0.52354-0.3765 0-0.1647 0.07647-0.2882l3.1648-5.1001q0.32353-0.5235 0.32353-0.9235 0-0.5059-0.32353-0.8824-0.39412-0.4588-1.053-0.4588-0.81766 0-1.3236 0.9647-0.19412 0.3647-0.41177 0.3647z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
28
src/Mod/Tux/Resources/icons/NavigationCAD_Select.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
31
src/Mod/Tux/Resources/icons/NavigationCAD_Zoom.svg
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
<g id="g4260" transform="translate(0 -1.3716)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
22
src/Mod/Tux/Resources/icons/NavigationGesture.svg
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" viewBox="0 0 64 64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<ellipse id="ellipse8166" rx="12" ry="12" transform="rotate(74.789)" cy="214.74" cx="980.37" fill="#2e3436"/>
|
||||
<path id="path4268" style="color:#000000" d="m28.48 1042.5a17.03 17.03 0 0 1 -12.042 -4.988 17.03 17.03 0 0 1 -4.988 -12.042" stroke-width="0" fill="none"/>
|
||||
<g fill="#2e3436">
|
||||
<ellipse id="circle4270" rx="12" transform="rotate(74.789)" ry="12" cy="258.93" cx="1005.7"/>
|
||||
<path id="path8184" style="color-rendering:auto;text-decoration-color:#000000;color:#000000;font-variant-numeric:normal;shape-rendering:auto;solid-color:#000000;text-decoration-line:none;font-variant-position:normal;mix-blend-mode:normal;block-progression:tb;font-feature-settings:normal;shape-padding:0;font-variant-alternates:normal;text-indent:0;font-variant-caps:normal;image-rendering:auto;white-space:normal;text-decoration-style:solid;font-variant-ligatures:none;isolation:auto;text-transform:none" d="m31.98 2.0273v0.002c-7.595 0.005-15.19 2.8617-21 8.5667a5.0005 5.0005 0 1 0 7.006 7.134c5.495-5.395 13.24-6.984 20.076-4.796a12 12 74.789 0 1 5.09 -8.7738c-3.575-1.4233-7.374-2.1354-11.172-2.1329z" fill-opacity=".62745" transform="translate(0 988.36)"/>
|
||||
<path id="circle8192" style="color-rendering:auto;text-decoration-color:#000000;color:#000000;font-variant-numeric:normal;shape-rendering:auto;solid-color:#000000;text-decoration-line:none;font-variant-position:normal;mix-blend-mode:normal;block-progression:tb;font-feature-settings:normal;shape-padding:0;font-variant-alternates:normal;text-indent:0;font-variant-caps:normal;image-rendering:auto;white-space:normal;text-decoration-style:solid;font-variant-ligatures:none;isolation:auto;text-transform:none" d="m49.529 44.699a5.0005 5.0005 0 0 0 -3.443 1.5c-5.495 5.451-13.279 7.064-20.148 4.865a12 12 74.789 0 1 -5.088 8.774c10.777 4.287 23.568 2.101 32.279-6.541a5.0005 5.0005 0 0 0 -3.6 -8.598z" fill-opacity=".62745" transform="translate(0 988.36)"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
28
src/Mod/Tux/Resources/icons/NavigationGesture_Pan.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8.0001 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
46
src/Mod/Tux/Resources/icons/NavigationGesture_PanTouch.svg
Normal file
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" cx="33.81" gradientUnits="userSpaceOnUse" cy="1026.8" r="11.356" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140-5" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4383" transform="translate(1.5573 1.0572)">
|
||||
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="translate(2.0142 2.8894)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle id="path8939" cx="24" stroke="#729fcf" cy="1007.4" r="6.3" stroke-dasharray="2,2" stroke-width="2" fill="none"/>
|
||||
<circle id="path5274" stroke-linejoin="bevel" cx="46" stroke-linecap="round" stroke="#2e3436" cy="1007.4" r="7.5" stroke-width="1.2" fill="#fff"/>
|
||||
<path id="path4350" stroke-linejoin="round" d="m46 1001.4v6l3.8648-2.9168" stroke="#2e3436" stroke-width="1.6" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
|
@ -0,0 +1,59 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356"/>
|
||||
<linearGradient id="linearGradient4365">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140-2" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4676" transform="translate(1.2485 -1.2519)">
|
||||
<g id="g4383" transform="translate(-5.291 3.75)">
|
||||
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="translate(-2.1827 7.9275)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
<g id="g4552" transform="translate(5.495 -8.7462)">
|
||||
<path id="path4554" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4556" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4558" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4560" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4562" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4564" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4566" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4568" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
48
src/Mod/Tux/Resources/icons/NavigationGesture_Rotate.svg
Normal file
|
@ -0,0 +1,48 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8.0001 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
<g id="g4259" transform="translate(-13.321 -65.064)">
|
||||
<g id="g4262" transform="translate(-50.679 57.278)" fill="none">
|
||||
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4280" transform="translate(-50.679 72.85)">
|
||||
<g id="g4260" transform="translate(64 7.1285)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m101 1032.5-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
<g id="g4271" transform="translate(-50.679 65.064)" fill="none">
|
||||
<path id="path4215" d="m107.21 1026.4 6-6-6-6" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4217" d="m108.21 1025.4 5-5-5-5" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4276" transform="translate(-50.679 65.064)" fill="none">
|
||||
<path id="path4221" d="m38 1024.4-6 6-6-6" transform="matrix(0 1 -1 0 1109.2 988.36)" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4223" d="m83.872 1025.4-5-5 5-5" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.7 KiB |
39
src/Mod/Tux/Resources/icons/NavigationGesture_RotateAlt.svg
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
|
||||
<path id="path5816" d="m20 1003.4h4"/>
|
||||
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
|
||||
<g>
|
||||
<path id="path5820" d="m33 997.36h6"/>
|
||||
<path id="path5822" d="m36 997.36v8"/>
|
||||
<path id="path5826" d="m40 1002.4h6"/>
|
||||
<path id="path5828" d="m43 999.36v6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4383" transform="translate(-.056787 -2.4616)">
|
||||
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="translate(.40006 -.62946)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
28
src/Mod/Tux/Resources/icons/NavigationGesture_Select.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="layer1-7" fill="#729fcf" transform="translate(-1.2837e-7 -.000018607)">
|
||||
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="path3059" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4138" transform="matrix(.56104 0 0 -.55886 14.047 1590.6)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
|
||||
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4142" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
28
src/Mod/Tux/Resources/icons/NavigationGesture_Tilt.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
62
src/Mod/Tux/Resources/icons/NavigationGesture_TiltTouch.svg
Normal file
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.17804 -.98402 -1.8068 -.32690 1875.4 1403.9)" r="11.356"/>
|
||||
<linearGradient id="linearGradient4365">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="radialGradient4607" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(-.17804 .98402 1.8068 .32690 -1811.4 636.83)" r="11.356"/>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4197" transform="translate(0 -1.0001)">
|
||||
<path id="path4317" d="m46.81 1038.7s-8.8575-0.2705-13.1-1.4051c-4.8952-1.3092-13.907-6.1404-13.907-6.1404" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="matrix(-.25882 -.96593 -.96593 .25882 1003.7 755.59)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="matrix(-.12795 -.99178 -.99178 .12795 1048.2 932.48)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
<g id="g4207" transform="translate(0 .99980)">
|
||||
<path id="path4585" d="m17.189 1002s8.8575 0.2704 13.1 1.4051c4.8952 1.3091 13.907 6.1403 13.907 6.1403" stroke="url(#radialGradient4607)" stroke-width="10" fill="none"/>
|
||||
<g id="g4587" fill="#729fcf" transform="matrix(.25882 .96593 .96593 -.25882 -939.73 1285.1)">
|
||||
<g id="g4589" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4591" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4593" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4595" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4597" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4599" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4601" transform="matrix(.12795 .99178 .99178 -.12795 -984.21 1108.2)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4603" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
|
||||
<path id="path4605" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.2 KiB |
31
src/Mod/Tux/Resources/icons/NavigationGesture_Zoom.svg
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
<g id="g4260" transform="translate(0 -1.3716)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
58
src/Mod/Tux/Resources/icons/NavigationGesture_ZoomTouch.svg
Normal file
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<linearGradient id="linearGradient5152">
|
||||
<stop id="stop5154" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop5156" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="radialGradient5160" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(.78044 .78045 -.66064 .66063 684.06 328.91)" r="11.036"/>
|
||||
<radialGradient id="radialGradient5164" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(-.78044 -.78045 .68896 -.68895 -647.9 1739.7)" r="11.036"/>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="991.69" x="3.9727" fill="#eeeeec"/>
|
||||
<path id="path5162" d="m47.5 1004.9-15 15" fill-rule="evenodd" stroke="url(#radialGradient5164)" stroke-width="10" fill="#8ae234"/>
|
||||
<g id="g4340" fill="#729fcf" transform="translate(58.993 -16.851)">
|
||||
<g id="layer1-7" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="path3059" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4138" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4142" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="path5130" d="m17.854 1034.5 15-15" fill-rule="evenodd" stroke="url(#radialGradient5160)" stroke-width="10" fill="#8ae234"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(29.318 12.824)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4368" transform="matrix(.70711 -.70711 .70711 .70711 -717.57 323.11)" stroke="#2e3436" fill="none">
|
||||
<path id="path4364" d="m30 1042.4h20" stroke-width="2"/>
|
||||
<path id="path4366" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
|
||||
</g>
|
||||
<g id="g4378" transform="matrix(-.70711 .70711 .70711 .70711 -672.03 269.44)" stroke="#2e3436" fill="none">
|
||||
<path id="path4380" d="m30 1042.4h20" stroke-width="2"/>
|
||||
<path id="path4383" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
18
src/Mod/Tux/Resources/icons/NavigationMayaGesture.svg
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)" stroke="#2e3436" stroke-width="6" fill="none">
|
||||
<path id="path4135" d="m16 1012.1 16 16 16-16"/>
|
||||
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
|
||||
<path id="path4209" d="m32 1004.4v12"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 910 B |
37
src/Mod/Tux/Resources/icons/NavigationMayaGesture_Pan.svg
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4151" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
|
||||
<path id="path5816" d="m20 1003.4h4"/>
|
||||
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
|
||||
<g>
|
||||
<path id="path5820" d="m33 997.36h6"/>
|
||||
<path id="path5822" d="m36 997.36v8"/>
|
||||
<path id="path5826" d="m40 1002.4h6"/>
|
||||
<path id="path5828" d="m43 999.36v6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" cx="33.81" gradientUnits="userSpaceOnUse" cy="1026.8" r="11.356" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140-5" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4383" transform="translate(1.5573 1.0572)">
|
||||
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="translate(2.0142 2.8894)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
<g>
|
||||
<circle id="path8939" cx="24" stroke="#729fcf" cy="1007.4" r="6.3" stroke-dasharray="2,2" stroke-width="2" fill="none"/>
|
||||
<circle id="path5274" stroke-linejoin="bevel" cx="46" stroke-linecap="round" stroke="#2e3436" cy="1007.4" r="7.5" stroke-width="1.2" fill="#fff"/>
|
||||
<path id="path4350" stroke-linejoin="round" d="m46 1001.4v6l3.8648-2.9168" stroke="#2e3436" stroke-width="1.6" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
|
@ -0,0 +1,59 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356"/>
|
||||
<linearGradient id="linearGradient4365">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140-2" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4676" transform="translate(1.2485 -1.2519)">
|
||||
<g id="g4383" transform="translate(-5.291 3.75)">
|
||||
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="translate(-2.1827 7.9275)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
<g id="g4552" transform="translate(5.495 -8.7462)">
|
||||
<path id="path4554" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4556" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4558" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4560" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4562" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4564" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4566" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4568" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
39
src/Mod/Tux/Resources/icons/NavigationMayaGesture_Rotate.svg
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
|
||||
<path id="path5816" d="m20 1003.4h4"/>
|
||||
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
|
||||
<g>
|
||||
<path id="path5820" d="m33 997.36h6"/>
|
||||
<path id="path5822" d="m36 997.36v8"/>
|
||||
<path id="path5826" d="m40 1002.4h6"/>
|
||||
<path id="path5828" d="m43 999.36v6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.90441 -.42666 .78339 1.6606 -802.48 -664.03)" r="11.356">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4383" transform="translate(-.056787 -2.4616)">
|
||||
<path id="path4317" d="m23.562 1007.7s2.5537 8.4857 4.7478 12.29c2.5316 4.3896 9.5304 11.844 9.5304 11.844" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(49.333 10.148)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="translate(.40006 -.62946)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m13.593 1017.9s2.0583 5.1195 3.5166 7.4444c2.507 4 8.89 11.1 8.89 11.1"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.5 KiB |
28
src/Mod/Tux/Resources/icons/NavigationMayaGesture_Select.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="layer1-7" fill="#729fcf" transform="translate(-1.2837e-7 -.000018607)">
|
||||
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="path3059" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4138" transform="matrix(.56104 0 0 -.55886 14.047 1590.6)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
|
||||
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4142" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
39
src/Mod/Tux/Resources/icons/NavigationMayaGesture_Tilt.svg
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
|
||||
<path id="path5816" d="m20 1003.4h4"/>
|
||||
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
|
||||
<g>
|
||||
<path id="path5820" d="m33 997.36h6"/>
|
||||
<path id="path5822" d="m36 997.36v8"/>
|
||||
<path id="path5826" d="m40 1002.4h6"/>
|
||||
<path id="path5828" d="m43 999.36v6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,62 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<radialGradient id="radialGradient4373" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(.17804 -.98402 -1.8068 -.32690 1875.4 1403.9)" r="11.356"/>
|
||||
<linearGradient id="linearGradient4365">
|
||||
<stop id="stop4367" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop4369" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="radialGradient4607" xlink:href="#linearGradient4365" gradientUnits="userSpaceOnUse" cy="1026.8" cx="33.81" gradientTransform="matrix(-.17804 .98402 1.8068 .32690 -1811.4 636.83)" r="11.356"/>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4197" transform="translate(0 -1.0001)">
|
||||
<path id="path4317" d="m46.81 1038.7s-8.8575-0.2705-13.1-1.4051c-4.8952-1.3092-13.907-6.1404-13.907-6.1404" stroke="url(#radialGradient4373)" stroke-width="10" fill="none"/>
|
||||
<g id="g4348" fill="#729fcf" transform="matrix(-.25882 -.96593 -.96593 .25882 1003.7 755.59)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4393" transform="matrix(-.12795 -.99178 -.99178 .12795 1048.2 932.48)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4375" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
|
||||
<path id="path4381" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
<g id="g4207" transform="translate(0 .99980)">
|
||||
<path id="path4585" d="m17.189 1002s8.8575 0.2704 13.1 1.4051c4.8952 1.3091 13.907 6.1403 13.907 6.1403" stroke="url(#radialGradient4607)" stroke-width="10" fill="none"/>
|
||||
<g id="g4587" fill="#729fcf" transform="matrix(.25882 .96593 .96593 -.25882 -939.73 1285.1)">
|
||||
<g id="g4589" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4591" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4593" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4595" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4597" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4599" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4601" transform="matrix(.12795 .99178 .99178 -.12795 -984.21 1108.2)" stroke="#2e3436" stroke-width="1.6" fill="none">
|
||||
<path id="path4603" d="m15.117 1021.8s2.3055 4.7927 3.8552 6.9364c2.0252 2.8016 7.0278 7.6265 7.0278 7.6265"/>
|
||||
<path id="path4605" d="m24 1029.4 2 7-7-3"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.2 KiB |
31
src/Mod/Tux/Resources/icons/NavigationMayaGesture_Zoom.svg
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
<g id="g4260" transform="translate(0 -1.3716)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5846" transform="translate(-.50298 .34070)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
|
||||
<path id="path5816" d="m20 1003.4h4"/>
|
||||
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
|
||||
<g>
|
||||
<path id="path5820" d="m33 997.36h6"/>
|
||||
<path id="path5822" d="m36 997.36v8"/>
|
||||
<path id="path5826" d="m40 1002.4h6"/>
|
||||
<path id="path5828" d="m43 999.36v6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64.000001 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<defs id="defs4201">
|
||||
<linearGradient id="linearGradient5152">
|
||||
<stop id="stop5154" stop-color="#8ae234" offset="0"/>
|
||||
<stop id="stop5156" stop-color="#8ae234" stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="radialGradient5160" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(.78044 .78045 -.66064 .66063 684.06 328.91)" r="11.036"/>
|
||||
<radialGradient id="radialGradient5164" xlink:href="#linearGradient5152" gradientUnits="userSpaceOnUse" cy="1030.8" cx="25.241" gradientTransform="matrix(-.78044 -.78045 .68896 -.68895 -647.9 1739.7)" r="11.036"/>
|
||||
</defs>
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="991.69" x="3.9727" fill="#eeeeec"/>
|
||||
<path id="path5162" d="m47.5 1004.9-15 15" fill-rule="evenodd" stroke="url(#radialGradient5164)" stroke-width="10" fill="#8ae234"/>
|
||||
<g id="g4340" fill="#729fcf" transform="translate(58.993 -16.851)">
|
||||
<g id="layer1-7" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4281" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="path3059" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" ry="5.625" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4138" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4140" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4142" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<path id="path5130" d="m17.854 1034.5 15-15" fill-rule="evenodd" stroke="url(#radialGradient5160)" stroke-width="10" fill="#8ae234"/>
|
||||
<g id="g4348" fill="#729fcf" transform="translate(29.318 12.824)">
|
||||
<g id="g4350" transform="translate(-43.493 1.3512)">
|
||||
<g id="g4352" fill="#729fcf" transform="matrix(0.5 0 0 0.5 20.237 506.39)">
|
||||
<ellipse id="ellipse4354" rx="5.7143" ry="5.625" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 -29.446 1592)" stroke="#eeeeec" stroke-width="2.8574">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4368" transform="matrix(.70711 -.70711 .70711 .70711 -717.57 323.11)" stroke="#2e3436" fill="none">
|
||||
<path id="path4364" d="m30 1042.4h20" stroke-width="2"/>
|
||||
<path id="path4366" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
|
||||
</g>
|
||||
<g id="g4378" transform="matrix(-.70711 .70711 .70711 .70711 -672.03 269.44)" stroke="#2e3436" fill="none">
|
||||
<path id="path4380" d="m30 1042.4h20" stroke-width="2"/>
|
||||
<path id="path4383" d="m44 1039.4 6 3-6 3" stroke-width="1.8"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
18
src/Mod/Tux/Resources/icons/NavigationOpenCascade.svg
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" fill-rule="evenodd" transform="translate(0 -988.36)">
|
||||
<path id="path8155" d="m38 1050.4-12-12 12-12 12 12z" fill="#2e3436"/>
|
||||
<path id="path8161" d="m20 1032.4-12-12 12-12 12 12z" fill-opacity=".82353" fill="#2e3335"/>
|
||||
<path id="path8163" d="m38 1014.4-12-12 12-12 12 12z" fill-opacity=".58824" fill="#2e3335"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 954 B |
36
src/Mod/Tux/Resources/icons/NavigationOpenCascade_Pan.svg
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4151" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5273" transform="translate(-.58217 .09996)" stroke="#2e3436">
|
||||
<g stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4360" d="m19.091 996.82t1.8677 0q0.45166 0 0.45166 0.4577 0 0.4639-0.48828 0.4639h-1.8372q-0.5127 0-0.99487 0.4455-0.36621 0.3418-0.36621 0.9156v4.6631q0 0.5737 0.38452 0.9887 0.40283 0.4273 0.83618 0.4273h2.0508q0.43945 0 0.43945 0.4455 0 0.4212-0.44556 0.4212h-2.0813q-0.84229 0-1.5747-0.8118-0.50049-0.5554-0.50049-1.4221v-4.7791q0-0.9155 0.72022-1.593 0.65918-0.6225 1.5381-0.6225z"/>
|
||||
<path id="path4362" d="m22.656 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
<path id="path4364" d="m30.572 1001.5t1.9958 0q0.63476 0 1.2695-0.6042 0.49438-0.47 0.49438-1.3245 0-0.6469-0.53711-1.2024-0.56763-0.592-1.2329-0.592h-1.9897v3.7231zm-0.42114-4.5959h2.4109q1.1169 0 2.0325 1.001 0.60425 0.6592 0.60425 1.5075 0 0.81794-0.30518 1.5381-0.33569 0.7874-1.3855 1.2268l1.593 3.1311q0.09155 0.1892 0.09155 0.3113 0 0.4639-0.45166 0.4639-0.23804 0-0.40894-0.3479l-1.709-3.3386h-2.0691v3.2043q0 0.4822-0.44556 0.4822-0.43335 0-0.43335-0.4883v-8.2214q0-0.47 0.47607-0.47z"/>
|
||||
<path id="path4366" d="m37.615 997.32v7.8614h3.1799q0.55542 0 0.55542 0.4455 0 0.4395-0.57373 0.4395h-3.6133q-0.43335 0-0.43335-0.5432v-8.2032q0-0.4699 0.43945-0.4699 0.44556 0 0.44556 0.4699z"/>
|
||||
</g>
|
||||
<path id="path5826" d="m41.872 1002.4h6" stroke-linecap="round" stroke-width="1.3" fill="none"/>
|
||||
<path id="path5828" d="m44.872 999.42v6.0001" stroke-linecap="round" stroke-width="1.3" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
26
src/Mod/Tux/Resources/icons/NavigationOpenCascade_PanAlt.svg
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
38
src/Mod/Tux/Resources/icons/NavigationOpenCascade_Rotate.svg
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5273" transform="translate(-.58217 .09996)" stroke="#2e3436">
|
||||
<g stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4360" d="m19.091 996.82t1.8677 0q0.45166 0 0.45166 0.4577 0 0.4639-0.48828 0.4639h-1.8372q-0.5127 0-0.99487 0.4455-0.36621 0.3418-0.36621 0.9156v4.6631q0 0.5737 0.38452 0.9887 0.40283 0.4273 0.83618 0.4273h2.0508q0.43945 0 0.43945 0.4455 0 0.4212-0.44556 0.4212h-2.0813q-0.84229 0-1.5747-0.8118-0.50049-0.5554-0.50049-1.4221v-4.7791q0-0.9155 0.72022-1.593 0.65918-0.6225 1.5381-0.6225z"/>
|
||||
<path id="path4362" d="m22.656 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
<path id="path4364" d="m30.572 1001.5t1.9958 0q0.63476 0 1.2695-0.6042 0.49438-0.47 0.49438-1.3245 0-0.6469-0.53711-1.2024-0.56763-0.592-1.2329-0.592h-1.9897v3.7231zm-0.42114-4.5959h2.4109q1.1169 0 2.0325 1.001 0.60425 0.6592 0.60425 1.5075 0 0.81794-0.30518 1.5381-0.33569 0.7874-1.3855 1.2268l1.593 3.1311q0.09155 0.1892 0.09155 0.3113 0 0.4639-0.45166 0.4639-0.23804 0-0.40894-0.3479l-1.709-3.3386h-2.0691v3.2043q0 0.4822-0.44556 0.4822-0.43335 0-0.43335-0.4883v-8.2214q0-0.47 0.47607-0.47z"/>
|
||||
<path id="path4366" d="m37.615 997.32v7.8614h3.1799q0.55542 0 0.55542 0.4455 0 0.4395-0.57373 0.4395h-3.6133q-0.43335 0-0.43335-0.5432v-8.2032q0-0.4699 0.43945-0.4699 0.44556 0 0.44556 0.4699z"/>
|
||||
</g>
|
||||
<path id="path5826" d="m41.872 1002.4h6" stroke-linecap="round" stroke-width="1.3" fill="none"/>
|
||||
<path id="path5828" d="m44.872 999.42v6.0001" stroke-linecap="round" stroke-width="1.3" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
28
src/Mod/Tux/Resources/icons/NavigationOpenCascade_Select.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
31
src/Mod/Tux/Resources/icons/NavigationOpenCascade_Zoom.svg
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
<g id="g4260" transform="translate(0 -1.3716)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4151" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4153" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
<path id="path4157" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5273" transform="translate(-.58217 .09996)" stroke="#2e3436">
|
||||
<g stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4360" d="m19.091 996.82t1.8677 0q0.45166 0 0.45166 0.4577 0 0.4639-0.48828 0.4639h-1.8372q-0.5127 0-0.99487 0.4455-0.36621 0.3418-0.36621 0.9156v4.6631q0 0.5737 0.38452 0.9887 0.40283 0.4273 0.83618 0.4273h2.0508q0.43945 0 0.43945 0.4455 0 0.4212-0.44556 0.4212h-2.0813q-0.84229 0-1.5747-0.8118-0.50049-0.5554-0.50049-1.4221v-4.7791q0-0.9155 0.72022-1.593 0.65918-0.6225 1.5381-0.6225z"/>
|
||||
<path id="path4362" d="m22.656 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
<path id="path4364" d="m30.572 1001.5t1.9958 0q0.63476 0 1.2695-0.6042 0.49438-0.47 0.49438-1.3245 0-0.6469-0.53711-1.2024-0.56763-0.592-1.2329-0.592h-1.9897v3.7231zm-0.42114-4.5959h2.4109q1.1169 0 2.0325 1.001 0.60425 0.6592 0.60425 1.5075 0 0.81794-0.30518 1.5381-0.33569 0.7874-1.3855 1.2268l1.593 3.1311q0.09155 0.1892 0.09155 0.3113 0 0.4639-0.45166 0.4639-0.23804 0-0.40894-0.3479l-1.709-3.3386h-2.0691v3.2043q0 0.4822-0.44556 0.4822-0.43335 0-0.43335-0.4883v-8.2214q0-0.47 0.47607-0.47z"/>
|
||||
<path id="path4366" d="m37.615 997.32v7.8614h3.1799q0.55542 0 0.55542 0.4455 0 0.4395-0.57373 0.4395h-3.6133q-0.43335 0-0.43335-0.5432v-8.2032q0-0.4699 0.43945-0.4699 0.44556 0 0.44556 0.4699z"/>
|
||||
</g>
|
||||
<path id="path5826" d="m41.872 1002.4h6" stroke-linecap="round" stroke-width="1.3" fill="none"/>
|
||||
<path id="path5828" d="m44.872 999.42v6.0001" stroke-linecap="round" stroke-width="1.3" fill="none"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
19
src/Mod/Tux/Resources/icons/NavigationOpenInventor.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" viewBox="0 0 64 64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g id="g3341" fill-rule="evenodd" fill="#2e3436" transform="matrix(.93333 0 0 .92593 2.1334 75.583)">
|
||||
<path id="path8233" d="m9.5 1006.9v27l22.5 13.5 22.5-13.5v-27l-22.5 13.5-22.5-13.5z"/>
|
||||
<path id="path8251" d="m9.5 1006.9 22.5-13.54 22.5 13.54-22.5 13.5z" fill-opacity=".58824"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1009 B |
26
src/Mod/Tux/Resources/icons/NavigationOpenInventor_Pan.svg
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,39 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4151-2" style="color:#000000" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4153-9" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155-1" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
<path id="path4157-2" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159-7" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161-0" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163-9" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g stroke="#2e3436" stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4257-2" d="m14.837 999.16q0-0.9521 0.65918-1.6296 0.65918-0.6836 1.593-0.6836 1.2939 0 2.3499 0.3967 0.43945 0.1648 0.43945 0.5066 0 0.4211-0.42114 0.4211-0.177 0-0.55542-0.1464-0.78735-0.3052-1.6785-0.3052-0.80566 0-1.2268 0.5737-0.25635 0.3479-0.25635 0.9155 0 0.7752 0.94604 1.2574l2.2278 1.1291q1.4465 0.7446 1.4465 2.1607 0 1.062-0.75684 1.715-0.68359 0.5921-1.6418 0.5921-1.4526 0-2.7832-0.8728-0.3418-0.2258-0.3418-0.5005 0-0.4211 0.45166-0.4211 0.1648 0 0.43945 0.1953 0.96436 0.6897 2.3132 0.6897 0.39673 0 0.71411-0.1648 0.7019-0.3662 0.7019-1.2635 0-0.8483-0.92163-1.3122l-2.3987-1.2146q-1.3-0.6592-1.3-2.0386z"/>
|
||||
<path id="path4259-9" d="m26.568 1001.4h-3.7903v4.1687q0 0.47-0.45166 0.47-0.44556 0-0.44556-0.4639v-8.2336q0-0.5188 0.44556-0.5188 0.45166 0 0.45166 0.5188v3.18h3.7903v-3.2166q0-0.4578 0.43335-0.4578t0.43335 0.4517v8.252q0 0.4883-0.43335 0.4883t-0.43335-0.4761v-4.1626z"/>
|
||||
<path id="path4261-1" d="m30.206 1005.5q0 0.5859-0.46387 0.5859t-0.46387-0.5737v-8.0934q0-0.5493 0.46387-0.5493t0.46387 0.5676v8.0628z"/>
|
||||
<path id="path4263-2" d="m32.94 1001.4v4.1321q0 0.5005-0.45776 0.5005-0.44556 0-0.44556-0.5066 0 0 0-8.2886 0-0.4272 0.47607-0.4272 0 0 3.6377 0 0.48218 0 0.48218 0.4394 0 0.4395-0.47607 0.4395h-3.2104v2.8198h3.2104q0.47607 0 0.47607 0.4456 0 0.4455-0.48218 0.4455h-3.2104z"/>
|
||||
<path id="path4265-7" d="m37.859 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
</g>
|
||||
<g id="g8688-0" transform="translate(47.662 3.6407)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
31
src/Mod/Tux/Resources/icons/NavigationOpenInventor_Zoom.svg
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
<g id="g4260" transform="translate(0 -1.3716)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1,34 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke="#2e3436" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke="#2e3436" stroke-width="2" fill="none"/>
|
||||
<g>
|
||||
<rect id="rect4139" height="18" stroke="#2e3436" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<g id="text4139" transform="translate(.65152 -2.1518)">
|
||||
<path id="path4148" d="m31.013 1009.8q0.2-0.1883 0.41765-0.1883 0.44118 0 0.44118 0.4883v7.8648q0 0.5-0.42354 0.5-0.4353 0-0.4353-0.5059 0 0 0-6.9354l-1.0235 1.0236q-0.15883 0.1588-0.31765 0.1588-0.44707 0-0.44707-0.3941 0-0.2 0.17059-0.3706l1.6177-1.6412z"/>
|
||||
</g>
|
||||
<g id="text4143" transform="translate(3.017 -1.7542)">
|
||||
<path id="path4151" d="m19.717 1003.1q-0.45883 0-0.45883-0.4118 0-0.1294 0.10588-0.3411 0.37059-0.7295 0.85295-1.0412 0.60001-0.3883 1.2647-0.3883 1.1177 0 1.753 0.853 0.46471 0.6235 0.46471 1.3412 0 0.6294-0.38824 1.2588l-2.853 4.606h2.7883q0.44118 0 0.44118 0.4412 0 0.3823-0.48236 0.3823h-3.4177q-0.52354 0-0.52354-0.3765 0-0.1647 0.07647-0.2882l3.1648-5.1001q0.32353-0.5235 0.32353-0.9235 0-0.5059-0.32353-0.8824-0.39412-0.4588-1.053-0.4588-0.81766 0-1.3236 0.9647-0.19412 0.3647-0.41177 0.3647z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
18
src/Mod/Tux/Resources/icons/NavigationTouchpad.svg
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)" stroke="#2e3436" fill="none">
|
||||
<path id="path4191" d="m32 1043.4v-15" stroke-width="6"/>
|
||||
<path id="path4187" d="m8 1028.4h48" stroke-width="4"/>
|
||||
<rect id="rect4185" style="color:#000000" ry="7" height="46" width="48" y="997.36" x="8" stroke-width="6"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 927 B |
61
src/Mod/Tux/Resources/icons/NavigationTouchpad_Pan.svg
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" viewBox="0 0 64 64.000001" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g id="g10117" transform="translate(65.57 25.706)">
|
||||
<g id="g6444" transform="translate(7.5118 -30.174)">
|
||||
<rect id="rect4151-2-5" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="996.83" x="-70.082" fill="#eeeeec"/>
|
||||
<g id="g6386" stroke="#2e3436" stroke-width=".4" fill="#2e3436" transform="translate(-73.082,4.4677)">
|
||||
<path id="path4257-2-3" d="m14.837 999.16q0-0.9521 0.65918-1.6296 0.65918-0.6836 1.593-0.6836 1.2939 0 2.3499 0.3967 0.43945 0.1648 0.43945 0.5066 0 0.4211-0.42114 0.4211-0.177 0-0.55542-0.1464-0.78735-0.3052-1.6785-0.3052-0.80566 0-1.2268 0.5737-0.25635 0.3479-0.25635 0.9155 0 0.7752 0.94604 1.2574l2.2278 1.1291q1.4465 0.7446 1.4465 2.1607 0 1.062-0.75684 1.715-0.68359 0.5921-1.6418 0.5921-1.4526 0-2.7832-0.8728-0.3418-0.2258-0.3418-0.5005 0-0.4211 0.45166-0.4211 0.1648 0 0.43945 0.1953 0.96436 0.6897 2.3132 0.6897 0.39673 0 0.71411-0.1648 0.7019-0.3662 0.7019-1.2635 0-0.8483-0.92163-1.3122l-2.3987-1.2146q-1.3-0.6592-1.3-2.0386z"/>
|
||||
<path id="path4259-9-5" d="m26.568 1001.4h-3.7903v4.1687q0 0.47-0.45166 0.47-0.44556 0-0.44556-0.4639v-8.2336q0-0.5188 0.44556-0.5188 0.45166 0 0.45166 0.5188v3.18h3.7903v-3.2166q0-0.4578 0.43335-0.4578t0.43335 0.4517v8.252q0 0.4883-0.43335 0.4883t-0.43335-0.4761v-4.1626z"/>
|
||||
<path id="path4261-1-6" d="m30.206 1005.5q0 0.5859-0.46387 0.5859t-0.46387-0.5737v-8.0934q0-0.5493 0.46387-0.5493t0.46387 0.5676v8.0628z"/>
|
||||
<path id="path4263-2-2" d="m32.94 1001.4v4.1321q0 0.5005-0.45776 0.5005-0.44556 0-0.44556-0.5066 0 0 0-8.2886 0-0.4272 0.47607-0.4272 0 0 3.6377 0 0.48218 0 0.48218 0.4394 0 0.4395-0.47607 0.4395h-3.2104v2.8198h3.2104q0.47607 0 0.47607 0.4456 0 0.4455-0.48218 0.4455h-3.2104z"/>
|
||||
<path id="path4265-7-9" d="m37.859 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
</g>
|
||||
<g id="g8688-0-1" transform="translate(-25.42,8.1084)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826-5" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828-3" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g17" stroke="#2e3436" fill="#fff" fill-rule="evenodd">
|
||||
<path id="path4153-9" stroke-width="1.3846" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z"/>
|
||||
<path id="path4155-1" stroke-width=".34615" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z"/>
|
||||
<path id="path4157-2" stroke-width=".34615" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z"/>
|
||||
</g>
|
||||
<g id="g22" stroke="#2e3436">
|
||||
<path id="path4159-7" stroke-width="1.3846" fill="none" d="m32 1022.5v-11.423"/>
|
||||
<path id="path4161-0" stroke-width="1.3846" fill="none" d="m20.923 1022.5h22.154"/>
|
||||
<rect id="rect4163-9" style="color:#000000" fill-rule="evenodd" ry="2.4231" height="12.462" width="5.5385" stroke-linecap="round" y="1016.2" x="29.231" stroke-width="1.1077" fill="#fff"/>
|
||||
</g>
|
||||
<g id="g4278" transform="matrix(.68275 0 0 .68275 -33.544 331.71)">
|
||||
<g id="g4262" fill="none" transform="translate(5e-6,-7.78576)">
|
||||
<path id="path4170-6" stroke="#2e3436" stroke-width="4" d="m102 1009.1-6-6.0001-6 6.0001"/>
|
||||
<path id="path4145" stroke="#729fcf" stroke-width="2" d="m101 1008.1-5-5.0001-5 5.0001"/>
|
||||
</g>
|
||||
<g id="g4280" transform="translate(5e-6,7.785796)">
|
||||
<g id="g4260" transform="translate(64 7.1285)">
|
||||
<path id="path4214" stroke="#2e3436" stroke-width="4" fill="none" d="m38 1024.4-6 6-6-6"/>
|
||||
</g>
|
||||
<path id="path4220" stroke="#729fcf" stroke-width="2" fill="none" d="m101 1032.5-5 5-5-5"/>
|
||||
</g>
|
||||
<g id="g4271" fill="none">
|
||||
<path id="path4215" stroke="#2e3436" stroke-width="4" d="m107.21 1026.4 6-6-6-6"/>
|
||||
<path id="path4217" stroke="#729fcf" stroke-width="2" d="m108.21 1025.4 5-5-5-5"/>
|
||||
</g>
|
||||
<g id="g4276" fill="none">
|
||||
<path id="path4221" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" transform="matrix(0 1 -1 0 1109.2 988.36)"/>
|
||||
<path id="path4223" stroke="#729fcf" stroke-width="2" d="m83.872 1025.4-5-5 5-5"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.8 KiB |
61
src/Mod/Tux/Resources/icons/NavigationTouchpad_PanTouch.svg
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" viewBox="0 0 64 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g id="g10378" transform="translate(64 -13.5)">
|
||||
<g id="g6444" transform="translate(9.082 9.0321)">
|
||||
<rect id="rect4151-2-9" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="996.83" x="-70.082" fill="#eeeeec"/>
|
||||
<g id="g6386" transform="translate(-73.082,4.4677)" stroke="#2e3436" stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4257-2-3" d="m14.837 999.16q0-0.9521 0.65918-1.6296 0.65918-0.6836 1.593-0.6836 1.2939 0 2.3499 0.3967 0.43945 0.1648 0.43945 0.5066 0 0.4211-0.42114 0.4211-0.177 0-0.55542-0.1464-0.78735-0.3052-1.6785-0.3052-0.80566 0-1.2268 0.5737-0.25635 0.3479-0.25635 0.9155 0 0.7752 0.94604 1.2574l2.2278 1.1291q1.4465 0.7446 1.4465 2.1607 0 1.062-0.75684 1.715-0.68359 0.5921-1.6418 0.5921-1.4526 0-2.7832-0.8728-0.3418-0.2258-0.3418-0.5005 0-0.4211 0.45166-0.4211 0.1648 0 0.43945 0.1953 0.96436 0.6897 2.3132 0.6897 0.39673 0 0.71411-0.1648 0.7019-0.3662 0.7019-1.2635 0-0.8483-0.92163-1.3122l-2.3987-1.2146q-1.3-0.6592-1.3-2.0386z"/>
|
||||
<path id="path4259-9-6" d="m26.568 1001.4h-3.7903v4.1687q0 0.47-0.45166 0.47-0.44556 0-0.44556-0.4639v-8.2336q0-0.5188 0.44556-0.5188 0.45166 0 0.45166 0.5188v3.18h3.7903v-3.2166q0-0.4578 0.43335-0.4578t0.43335 0.4517v8.252q0 0.4883-0.43335 0.4883t-0.43335-0.4761v-4.1626z"/>
|
||||
<path id="path4261-1-0" d="m30.206 1005.5q0 0.5859-0.46387 0.5859t-0.46387-0.5737v-8.0934q0-0.5493 0.46387-0.5493t0.46387 0.5676v8.0628z"/>
|
||||
<path id="path4263-2-6" d="m32.94 1001.4v4.1321q0 0.5005-0.45776 0.5005-0.44556 0-0.44556-0.5066 0 0 0-8.2886 0-0.4272 0.47607-0.4272 0 0 3.6377 0 0.48218 0 0.48218 0.4394 0 0.4395-0.47607 0.4395h-3.2104v2.8198h3.2104q0.47607 0 0.47607 0.4456 0 0.4455-0.48218 0.4455h-3.2104z"/>
|
||||
<path id="path4265-7-2" d="m37.859 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
</g>
|
||||
<g id="g8688-0-6" transform="translate(-25.42,8.1084)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826-5" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828-3" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4311" transform="matrix(.72726 0 0 .72726 8.7275 286.29)">
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m11.5 1002.4v35c0 4 0 4 20 4 21 0 21 0 21-4v-35c0-3.0001 0-3.0001-21-3-20-0.00004-20-0.00004-20 3z" fill-rule="evenodd" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m12.5 1028.4c0 9-1 12 2 12h16v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
|
||||
<path id="path4169" d="m31.5 1027.4v14" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m11.5 1027.4h41" stroke-width="2" fill="none"/>
|
||||
<path id="path4154" d="m51.5 1028.4c0 10 1 12-2 12h-17v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 14.047 1583.6)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4262" transform="matrix(.67438 0 0 .67438 -32.74 326.31)" fill="none">
|
||||
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4477" transform="matrix(.67438 0 0 -.67438 -32.74 1700.4)" fill="none">
|
||||
<path id="path4479" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4481" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4493" transform="matrix(0 .67438 -.67438 0 721.05 948.62)" fill="none">
|
||||
<path id="path4495" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4497" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4499" transform="matrix(0 .67438 .67438 0 -657.05 948.62)" fill="none">
|
||||
<path id="path4501" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4503" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.0 KiB |
57
src/Mod/Tux/Resources/icons/NavigationTouchpad_Rotate.svg
Normal file
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4151-2" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="992.36" x="3" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4153-9" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846"/>
|
||||
<path id="path4155-1" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
<path id="path4157-2" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159-7" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161-0" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163-9" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
<g id="g5846" transform="translate(-.50298 .34068)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
|
||||
<path id="path5816" d="m20 1003.4h4"/>
|
||||
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
|
||||
<g>
|
||||
<path id="path5820" d="m33 997.36h6"/>
|
||||
<path id="path5822" d="m36 997.36v8"/>
|
||||
<path id="path5826" d="m40 1002.4h6"/>
|
||||
<path id="path5828" d="m43 999.36v6"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4278" transform="matrix(.68275 0 0 .68275 -33.544 331.71)">
|
||||
<g id="g4262" transform="translate(5e-6,-7.78576)" fill="none">
|
||||
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4280" transform="translate(5e-6,7.785796)">
|
||||
<g id="g4260" transform="translate(64 7.1285)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m101 1032.5-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
<g id="g4271" fill="none">
|
||||
<path id="path4215" d="m107.21 1026.4 6-6-6-6" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4217" d="m108.21 1025.4 5-5-5-5" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4276" fill="none">
|
||||
<path id="path4221" d="m38 1024.4-6 6-6-6" transform="matrix(0 1 -1 0 1109.2 988.36)" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4223" d="m83.872 1025.4-5-5 5-5" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
41
src/Mod/Tux/Resources/icons/NavigationTouchpad_RotateAlt.svg
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g id="g10378" transform="translate(64 -13.5)">
|
||||
<g id="g6444" transform="translate(9.082 9.0321)">
|
||||
<rect id="rect4151-2-9" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="996.83" x="-70.082" fill="#eeeeec"/>
|
||||
<g id="g6386" transform="translate(-73.082,4.4677)" stroke="#2e3436" stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4257-2-3" d="m14.837 999.16q0-0.9521 0.65918-1.6296 0.65918-0.6836 1.593-0.6836 1.2939 0 2.3499 0.3967 0.43945 0.1648 0.43945 0.5066 0 0.4211-0.42114 0.4211-0.177 0-0.55542-0.1464-0.78735-0.3052-1.6785-0.3052-0.80566 0-1.2268 0.5737-0.25635 0.3479-0.25635 0.9155 0 0.7752 0.94604 1.2574l2.2278 1.1291q1.4465 0.7446 1.4465 2.1607 0 1.062-0.75684 1.715-0.68359 0.5921-1.6418 0.5921-1.4526 0-2.7832-0.8728-0.3418-0.2258-0.3418-0.5005 0-0.4211 0.45166-0.4211 0.1648 0 0.43945 0.1953 0.96436 0.6897 2.3132 0.6897 0.39673 0 0.71411-0.1648 0.7019-0.3662 0.7019-1.2635 0-0.8483-0.92163-1.3122l-2.3987-1.2146q-1.3-0.6592-1.3-2.0386z"/>
|
||||
<path id="path4259-9-6" d="m26.568 1001.4h-3.7903v4.1687q0 0.47-0.45166 0.47-0.44556 0-0.44556-0.4639v-8.2336q0-0.5188 0.44556-0.5188 0.45166 0 0.45166 0.5188v3.18h3.7903v-3.2166q0-0.4578 0.43335-0.4578t0.43335 0.4517v8.252q0 0.4883-0.43335 0.4883t-0.43335-0.4761v-4.1626z"/>
|
||||
<path id="path4261-1-0" d="m30.206 1005.5q0 0.5859-0.46387 0.5859t-0.46387-0.5737v-8.0934q0-0.5493 0.46387-0.5493t0.46387 0.5676v8.0628z"/>
|
||||
<path id="path4263-2-6" d="m32.94 1001.4v4.1321q0 0.5005-0.45776 0.5005-0.44556 0-0.44556-0.5066 0 0 0-8.2886 0-0.4272 0.47607-0.4272 0 0 3.6377 0 0.48218 0 0.48218 0.4394 0 0.4395-0.47607 0.4395h-3.2104v2.8198h3.2104q0.47607 0 0.47607 0.4456 0 0.4455-0.48218 0.4455h-3.2104z"/>
|
||||
<path id="path4265-7-2" d="m37.859 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
</g>
|
||||
<g id="g8688-0-6" transform="translate(-25.42,8.1084)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826-5" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828-3" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g fill-rule="evenodd" stroke="#2e3436">
|
||||
<path id="path4153-9" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z" stroke-width="1.3846" fill="#fff"/>
|
||||
<path id="path4155-1" d="m21.615 1021.8c-0.096-6.9 1.017-10.1 10.385-10.1v10.038z" stroke-width=".34615" fill="#729fcf"/>
|
||||
<path id="path4157-2" d="m42.385 1021.8c0.096-6.9-1.017-10.1-10.385-10.1v10.038z" stroke-width=".34615" fill="#fff"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4159-7" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161-0" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163-9" height="12.462" stroke-linecap="round" stroke-width="1.1077" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="2.4231" width="5.5385" y="1016.2" x="29.231"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" viewBox="0 0 64 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4151" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g id="g4311" transform="matrix(.72726 0 0 .72726 8.7275 286.29)">
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m11.5 1002.4v35c0 4 0 4 20 4 21 0 21 0 21-4v-35c0-3.0001 0-3.0001-21-3-20-0.00004-20-0.00004-20 3z" fill-rule="evenodd" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m12.5 1028.4c0 9-1 12 2 12h16v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
|
||||
<path id="path4169" d="m31.5 1027.4v14" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m11.5 1027.4h41" stroke-width="2" fill="none"/>
|
||||
<path id="path4154" d="m51.5 1028.4c0 10 1 12-2 12h-17v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.56104 0 0 -.55886 14.047 1583.6)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" stroke="#eeeeec" ry="5.625" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4262" transform="matrix(.67438 0 0 .67438 -32.74 326.31)" fill="none">
|
||||
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4477" transform="matrix(.67438 0 0 -.67438 -32.74 1700.4)" fill="none">
|
||||
<path id="path4479" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4481" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4493" transform="matrix(0 .67438 -.67438 0 721.05 948.62)" fill="none">
|
||||
<path id="path4495" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4497" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4499" transform="matrix(0 .67438 .67438 0 -657.05 948.62)" fill="none">
|
||||
<path id="path4501" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4503" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g5846" transform="translate(-.50298 -.65930)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5814" stroke-linejoin="round" d="m19 1005.4 3-8 3 8"/>
|
||||
<path id="path5816" d="m20 1003.4h4"/>
|
||||
<path id="path5818" stroke-linejoin="round" d="m32 1005.4h-4v-8"/>
|
||||
<g>
|
||||
<path id="path5820" d="m33 997.36h6"/>
|
||||
<path id="path5822" d="m36 997.36v8"/>
|
||||
<path id="path5826" d="m40 1002.4h6"/>
|
||||
<path id="path5828" d="m43 999.36v6"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.5 KiB |
|
@ -0,0 +1,59 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" viewBox="0 0 64 64.000001" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g id="g10378" transform="translate(64 -13.5)">
|
||||
<g id="g6444" transform="translate(9.082 9.0321)">
|
||||
<rect id="rect4151-2-9" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="58" y="996.83" x="-70.082" fill="#eeeeec"/>
|
||||
<g id="g6386" transform="translate(-73.082,4.4677)" stroke="#2e3436" stroke-width="0.4" fill="#2e3436">
|
||||
<path id="path4257-2-3" d="m14.837 999.16q0-0.9521 0.65918-1.6296 0.65918-0.6836 1.593-0.6836 1.2939 0 2.3499 0.3967 0.43945 0.1648 0.43945 0.5066 0 0.4211-0.42114 0.4211-0.177 0-0.55542-0.1464-0.78735-0.3052-1.6785-0.3052-0.80566 0-1.2268 0.5737-0.25635 0.3479-0.25635 0.9155 0 0.7752 0.94604 1.2574l2.2278 1.1291q1.4465 0.7446 1.4465 2.1607 0 1.062-0.75684 1.715-0.68359 0.5921-1.6418 0.5921-1.4526 0-2.7832-0.8728-0.3418-0.2258-0.3418-0.5005 0-0.4211 0.45166-0.4211 0.1648 0 0.43945 0.1953 0.96436 0.6897 2.3132 0.6897 0.39673 0 0.71411-0.1648 0.7019-0.3662 0.7019-1.2635 0-0.8483-0.92163-1.3122l-2.3987-1.2146q-1.3-0.6592-1.3-2.0386z"/>
|
||||
<path id="path4259-9-6" d="m26.568 1001.4h-3.7903v4.1687q0 0.47-0.45166 0.47-0.44556 0-0.44556-0.4639v-8.2336q0-0.5188 0.44556-0.5188 0.45166 0 0.45166 0.5188v3.18h3.7903v-3.2166q0-0.4578 0.43335-0.4578t0.43335 0.4517v8.252q0 0.4883-0.43335 0.4883t-0.43335-0.4761v-4.1626z"/>
|
||||
<path id="path4261-1-0" d="m30.206 1005.5q0 0.5859-0.46387 0.5859t-0.46387-0.5737v-8.0934q0-0.5493 0.46387-0.5493t0.46387 0.5676v8.0628z"/>
|
||||
<path id="path4263-2-6" d="m32.94 1001.4v4.1321q0 0.5005-0.45776 0.5005-0.44556 0-0.44556-0.5066 0 0 0-8.2886 0-0.4272 0.47607-0.4272 0 0 3.6377 0 0.48218 0 0.48218 0.4394 0 0.4395-0.47607 0.4395h-3.2104v2.8198h3.2104q0.47607 0 0.47607 0.4456 0 0.4455-0.48218 0.4455h-3.2104z"/>
|
||||
<path id="path4265-7-2" d="m37.859 997.24q0-0.4211 0.53711-0.4211h4.5227q0.43945 0 0.43945 0.4394 0 0.4456-0.42725 0.4456h-1.8738v7.8796q0 0.4822-0.44556 0.4822t-0.44556-0.47v-7.8918h-1.7822q-0.5249 0-0.5249-0.4639z"/>
|
||||
</g>
|
||||
<g id="g8688-0-6" transform="translate(-25.42,8.1084)" stroke="#2e3436" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826-5" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828-3" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m17.091 1015.3v25.454c0 2.9091 0 2.9091 14.545 2.9091 15.273 0 15.273 0 15.273-2.9091v-25.454c0-2.1819 0-2.1819-15.273-2.1819-14.545 0-14.545 0-14.545 2.1819z" fill-rule="evenodd" stroke-width="1.4545" fill="#fff"/>
|
||||
<path id="path4195" d="m17.818 1034.2c0 6.5454-0.72726 8.7272 1.4545 8.7272h11.636v-8.7272z" fill-rule="evenodd" stroke-width=".36363" fill="#729fcf"/>
|
||||
<path id="path4169" d="m31.636 1033.5v10.182" stroke-width="1.4545" fill="none"/>
|
||||
<path id="path4167" d="m17.091 1033.5h29.818" stroke-width="1.4545" fill="none"/>
|
||||
<path id="path4154" d="m46.182 1034.2c0 7.2727 0.72726 8.7272-1.4545 8.7272h-12.364v-8.7272z" fill-rule="evenodd" stroke-width=".36363" fill="#fff"/>
|
||||
</g>
|
||||
<g id="g4356" transform="matrix(.40802 0 0 -.40644 18.943 1438)" stroke="#eeeeec" stroke-width="2.8574" fill="#729fcf">
|
||||
<g id="g4358" transform="matrix(0.5 0 0 0.5 20.237 506.39)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625 0 0 2.6667 -17.723 791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="g4262" transform="matrix(.49045 0 0 .49045 -15.083 523.61)" fill="none">
|
||||
<path id="path4170-6" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4145" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4477" transform="matrix(.49045 0 0 -.49045 -15.083 1522.9)" fill="none">
|
||||
<path id="path4479" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4481" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4493" transform="matrix(0 .49045 -.49045 0 533.12 976.19)" fill="none">
|
||||
<path id="path4495" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4497" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
<g id="g4499" transform="matrix(0 .49045 .49045 0 -469.12 976.19)" fill="none">
|
||||
<path id="path4501" d="m102 1009.1-6-6.0001-6 6.0001" stroke="#2e3436" stroke-width="4"/>
|
||||
<path id="path4503" d="m101 1008.1-5-5.0001-5 5.0001" stroke="#729fcf" stroke-width="2"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.1 KiB |
28
src/Mod/Tux/Resources/icons/NavigationTouchpad_Select.svg
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5" fill="#729fcf"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1011.9v-16.5" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#fff" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<g fill-rule="evenodd">
|
||||
<rect id="rect4140" style="color:#000000" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<path id="path4144" d="m12 1002.4v35c0 4 0 4 20 4 21 0 21 0 21-4v-35c0-3 0-3-21-3-20-0.00004-20-0.00004-20 3z" stroke="#2e3436" stroke-width="2" fill="#fff"/>
|
||||
<path id="path4195" d="m13 1028.4c0 9-1 12 2 12h16v-12z" stroke="#2e3436" stroke-width=".5" fill="#729fcf"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4169" d="m32 1027.4v14" stroke-width="2" fill="none"/>
|
||||
<path id="path4167" d="m12 1027.4h41" stroke-width="2" fill="none"/>
|
||||
<path id="path4154" d="m52 1028.4c0 10 1 12-2 12h-17v-12z" fill-rule="evenodd" stroke-width=".5" fill="#fff"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
31
src/Mod/Tux/Resources/icons/NavigationTouchpad_Zoom.svg
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 64.000001 64.000001">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)">
|
||||
<rect id="rect4140" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="992.36" x="4" fill="#eeeeec"/>
|
||||
<g fill-rule="evenodd" stroke="#2e3436" fill="#fff">
|
||||
<path id="path4144" d="m16 1027.9v-20c0-8 4-12.5 16-12.5s16 4.5 16 12.5v20c0 8-4 17.5-16 17.5s-16-9.5-16-17.5z" stroke-width="2"/>
|
||||
<path id="path4195" d="m17 1010.9c-0.13863-10 1.4688-14.5 15-14.5v14.5z" stroke-width=".5"/>
|
||||
<path id="path4197" d="m47 1010.9c0.13863-10-1.4688-14.5-15-14.5v14.5z" stroke-width=".5"/>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4167" d="m16 1011.9h32" stroke-width="2" fill="none"/>
|
||||
<rect id="rect4139" height="18" stroke-linecap="round" stroke-width="1.6" fill="#729fcf" style="color:#000000" fill-rule="evenodd" ry="3.5" width="8" y="1002.9" x="28"/>
|
||||
<path id="path4170" d="m38 1000.6-6-6-6 6" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145" d="m37 999.65-5-5-5 5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
<g id="g4260" transform="translate(0 -1.3716)">
|
||||
<path id="path4214" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220" d="m37 1024-5 5-5-5" stroke="#729fcf" stroke-width="2" fill="none"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 1.8 KiB |
51
src/Mod/Tux/Resources/icons/NavigationTouchpad_ZoomAlt.svg
Normal file
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" viewBox="0 0 64 64.000001" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="g4287">
|
||||
<rect id="rect4151" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="4" x="4" fill="#eeeeec"/>
|
||||
<g id="g4173" stroke="#2e3436">
|
||||
<g id="g8688-7-6" transform="matrix(.81244 0 0 .81244 34.288 -796.58)" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826-5-0" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828-6-6" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
<g id="g10" stroke-width="0.6" fill="#2e3436">
|
||||
<path id="path4780" d="m7.3 12.178q0-0.76172 0.52734-1.3037 0.52734-0.54688 1.2744-0.54688 1.0352 0 1.8799 0.31738 0.35156 0.13184 0.35156 0.40527 0 0.33691-0.33691 0.33691-0.1416 0-0.44434-0.11719-0.62988-0.24414-1.3428-0.24414-0.64453 0-0.98145 0.45898-0.20508 0.27832-0.20508 0.73242 0 0.62012 0.75684 1.0059l1.7822 0.90332q1.1572 0.5957 1.1572 1.7285 0 0.84961-0.60547 1.3721-0.547 0.473-1.314 0.473-1.1621 0-2.2266-0.698-0.2734-0.181-0.2734-0.401 0-0.33691 0.36133-0.33691 0.13184 0 0.35156 0.15625 0.77148 0.55176 1.8506 0.55176 0.31738 0 0.57129-0.13184 0.56152-0.29297 0.56152-1.0107 0-0.67871-0.7373-1.0498l-1.919-0.972q-1.04-0.527-1.04-1.63z"/>
|
||||
<path id="path4782" d="m17.05 13.989h-3.0322v3.335q0 0.376-0.362 0.376-0.356 0-0.356-0.371v-6.5869q0-0.41504 0.35645-0.41504 0.36133 0 0.36133 0.41504v2.5439h3.0322v-2.5732q0-0.36621 0.34668-0.36621t0.34668 0.36133v6.6016q0 0.39-0.346 0.39-0.347 0-0.347-0.381v-3.3301z"/>
|
||||
<path id="path4784" d="m20.042 17.231q0 0.469-0.371 0.469t-0.371-0.459v-6.4746q0-0.43945 0.37109-0.43945t0.37109 0.4541v6.4502z"/>
|
||||
<path id="path4786" d="m22.023 13.994v3.3057q0 0.4-0.367 0.4-0.356 0-0.356-0.405 0 0 0-6.6309 0-0.3418 0.38086-0.3418 0 0 2.9102 0 0.38574 0 0.38574 0.35156t-0.38086 0.35156h-2.5684v2.2559h2.5684q0.38086 0 0.38086 0.35645 0 0.35644-0.38574 0.35644h-2.5684z"/>
|
||||
<path id="path4788" d="m26.3 10.639q0-0.33691 0.42969-0.33691h3.6182q0.35156 0 0.35156 0.35156 0 0.35644-0.3418 0.35644h-1.499v6.3037q0 0.38574-0.35644 0.38574t-0.35644-0.37598v-6.3135h-1.4258q-0.42 0.001-0.42-0.371z"/>
|
||||
<path id="path4792" d="m39.107 10.317t1.4941 0q0.36133 0 0.36133 0.36621 0 0.37109-0.39062 0.37109h-1.4697q-0.41016 0-0.7959 0.35644-0.29297 0.27344-0.29297 0.73242v3.7305q0 0.45898 0.30762 0.79102 0.32227 0.3418 0.66895 0.3418h1.6406q0.35156 0 0.35156 0.35644 0 0.33692-0.35644 0.33692h-1.665q-0.67383 0-1.2598-0.64942-0.401-0.445-0.401-1.138v-3.8232q0-0.73242 0.57617-1.2744 0.52734-0.49805 1.2305-0.49805z"/>
|
||||
<path id="path4794" d="m42.3 10.639q0-0.33691 0.42969-0.33691h3.6182q0.35156 0 0.35156 0.35156 0 0.35644-0.3418 0.35644h-1.499v6.3037q0 0.38574-0.35644 0.38574t-0.35644-0.37598v-6.3135h-1.4258q-0.42 0.001-0.42-0.371z"/>
|
||||
<path id="path4796" d="m49.018 14.033t1.5967 0q0.50781 0 1.0156-0.4834 0.39551-0.37598 0.39551-1.0596 0-0.51758-0.42969-0.96191-0.4541-0.47363-0.98633-0.47363h-1.5918v2.9785zm-0.33691-3.6768h1.9287q0.89356 0 1.626 0.80078 0.4834 0.52734 0.4834 1.2061 0 0.6543-0.24414 1.2305-0.26856 0.62988-1.1084 0.98144l1.2744 2.5049q0.07324 0.15137 0.07324 0.24902 0.000002 0.37109-0.36133 0.37109-0.19043 0-0.32715-0.27832l-1.3672-2.6709h-1.6553v2.5635q-0.001 0.385-0.357 0.385-0.347 0-0.347-0.391v-6.5771q0-0.37598 0.38086-0.37598z"/>
|
||||
<path id="path4798" d="m55.008 10.703v6.2891h2.5439q0.44434 0 0.44434 0.35644 0 0.35156-0.45898 0.35156h-2.8906q-0.346 0-0.346-0.435v-6.5625q0-0.37598 0.35156-0.37598 0.35644 0 0.35644 0.37598z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<g id="g20" fill-rule="evenodd" transform="translate(0,-988.36)" fill="#fff">
|
||||
<path id="path4153-9-3" stroke-width="1.3846" d="m20.923 1033.6v-13.846c0-5.5385 2.7692-8.6538 11.077-8.6538 8.3077 0 11.077 3.1153 11.077 8.6538v13.846c0 5.5384-2.7692 12.115-11.077 12.115-8.3077 0-11.077-6.577-11.077-12.115z"/>
|
||||
<path id="path4155-1-6" stroke-width=".34615" d="m21.615 1021.8c-0.09598-6.9231 1.0168-10.038 10.385-10.038v10.038z"/>
|
||||
<path id="path4157-2-0" stroke-width=".34615" d="m42.385 1021.8c0.09597-6.9231-1.0168-10.038-10.385-10.038v10.038z"/>
|
||||
</g>
|
||||
<g id="g25" transform="translate(0,-988.36)">
|
||||
<path id="path4159-7-6" d="m32 1022.5v-11.423" stroke-width="1.3846" fill="none"/>
|
||||
<path id="path4161-0-2" d="m20.923 1022.5h22.154" stroke-width="1.3846" fill="none"/>
|
||||
<rect id="rect4163-9-6" style="color:#000000" fill-rule="evenodd" ry="2.4231" height="12.462" width="5.5385" stroke-linecap="round" y="1016.2" x="29.231" stroke-width="1.1077" fill="#fff"/>
|
||||
</g>
|
||||
<path id="path4170-6-8" d="m36.096 26.993-4.096-4.097-4.096 4.097" stroke-width="2.731" fill="none"/>
|
||||
</g>
|
||||
<path id="path4145-7" d="m35.414 26.31-3.414-3.414-3.414 3.414" stroke="#729fcf" stroke-width="1.3655" fill="none"/>
|
||||
<g id="g4260-2" transform="matrix(.68275 0 0 .68275 10.152 -646.47)">
|
||||
<path id="path4214-0" d="m38 1024.4-6 6-6-6" stroke="#2e3436" stroke-width="4" fill="none"/>
|
||||
</g>
|
||||
<path id="path4220-2" d="m35.414 53.599-3.414 3.414-3.414-3.414" stroke="#729fcf" stroke-width="1.3655" fill="none"/>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
49
src/Mod/Tux/Resources/icons/NavigationTouchpad_ZoomTouch.svg
Normal file
|
@ -0,0 +1,49 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg4199" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" viewBox="0 0 64 64.000001" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<metadata id="metadata4204">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="g4287">
|
||||
<rect id="rect4151" style="color:#000000" fill-rule="evenodd" ry="10" height="56" width="56" y="4" x="4" fill="#eeeeec"/>
|
||||
<g id="g4173" stroke="#2e3436">
|
||||
<g id="g8688-7-6" transform="matrix(.81244 0 0 .81244 34.288 -796.58)" stroke-linecap="round" stroke-width="1.3" fill="none">
|
||||
<path id="path5826-5-0" d="m-4.003 998.36h6"/>
|
||||
<path id="path5828-6-6" d="m-1.003 995.36v6.0001"/>
|
||||
</g>
|
||||
<g stroke-width="0.6" fill="#2e3436">
|
||||
<path id="path4780" d="m7.3 12.178q0-0.76172 0.52734-1.3037 0.52734-0.54688 1.2744-0.54688 1.0352 0 1.8799 0.31738 0.35156 0.13184 0.35156 0.40527 0 0.33691-0.33691 0.33691-0.1416 0-0.44434-0.11719-0.62988-0.24414-1.3428-0.24414-0.64453 0-0.98145 0.45898-0.20508 0.27832-0.20508 0.73242 0 0.62012 0.75684 1.0059l1.7822 0.90332q1.1572 0.5957 1.1572 1.7285 0 0.84961-0.60547 1.3721-0.547 0.473-1.314 0.473-1.1621 0-2.2266-0.698-0.2734-0.181-0.2734-0.401 0-0.33691 0.36133-0.33691 0.13184 0 0.35156 0.15625 0.77148 0.55176 1.8506 0.55176 0.31738 0 0.57129-0.13184 0.56152-0.29297 0.56152-1.0107 0-0.67871-0.7373-1.0498l-1.919-0.972q-1.04-0.527-1.04-1.63z"/>
|
||||
<path id="path4782" d="m17.05 13.989h-3.0322v3.335q0 0.376-0.362 0.376-0.356 0-0.356-0.371v-6.5869q0-0.41504 0.35645-0.41504 0.36133 0 0.36133 0.41504v2.5439h3.0322v-2.5732q0-0.36621 0.34668-0.36621t0.34668 0.36133v6.6016q0 0.39-0.346 0.39-0.347 0-0.347-0.381v-3.3301z"/>
|
||||
<path id="path4784" d="m20.042 17.231q0 0.469-0.371 0.469t-0.371-0.459v-6.4746q0-0.43945 0.37109-0.43945t0.37109 0.4541v6.4502z"/>
|
||||
<path id="path4786" d="m22.023 13.994v3.3057q0 0.4-0.367 0.4-0.356 0-0.356-0.405 0 0 0-6.6309 0-0.3418 0.38086-0.3418 0 0 2.9102 0 0.38574 0 0.38574 0.35156t-0.38086 0.35156h-2.5684v2.2559h2.5684q0.38086 0 0.38086 0.35645 0 0.35644-0.38574 0.35644h-2.5684z"/>
|
||||
<path id="path4788" d="m26.3 10.639q0-0.33691 0.42969-0.33691h3.6182q0.35156 0 0.35156 0.35156 0 0.35644-0.3418 0.35644h-1.499v6.3037q0 0.38574-0.35644 0.38574t-0.35644-0.37598v-6.3135h-1.4258q-0.42 0.001-0.42-0.371z"/>
|
||||
<path id="path4792" d="m39.107 10.317t1.4941 0q0.36133 0 0.36133 0.36621 0 0.37109-0.39062 0.37109h-1.4697q-0.41016 0-0.7959 0.35644-0.29297 0.27344-0.29297 0.73242v3.7305q0 0.45898 0.30762 0.79102 0.32227 0.3418 0.66895 0.3418h1.6406q0.35156 0 0.35156 0.35644 0 0.33692-0.35644 0.33692h-1.665q-0.67383 0-1.2598-0.64942-0.401-0.445-0.401-1.138v-3.8232q0-0.73242 0.57617-1.2744 0.52734-0.49805 1.2305-0.49805z"/>
|
||||
<path id="path4794" d="m42.3 10.639q0-0.33691 0.42969-0.33691h3.6182q0.35156 0 0.35156 0.35156 0 0.35644-0.3418 0.35644h-1.499v6.3037q0 0.38574-0.35644 0.38574t-0.35644-0.37598v-6.3135h-1.4258q-0.42 0.001-0.42-0.371z"/>
|
||||
<path id="path4796" d="m49.018 14.033t1.5967 0q0.50781 0 1.0156-0.4834 0.39551-0.37598 0.39551-1.0596 0-0.51758-0.42969-0.96191-0.4541-0.47363-0.98633-0.47363h-1.5918v2.9785zm-0.33691-3.6768h1.9287q0.89356 0 1.626 0.80078 0.4834 0.52734 0.4834 1.2061 0 0.6543-0.24414 1.2305-0.26856 0.62988-1.1084 0.98144l1.2744 2.5049q0.07324 0.15137 0.07324 0.24902 0.000002 0.37109-0.36133 0.37109-0.19043 0-0.32715-0.27832l-1.3672-2.6709h-1.6553v2.5635q-0.001 0.385-0.357 0.385-0.347 0-0.347-0.391v-6.5771q0-0.37598 0.38086-0.37598z"/>
|
||||
<path id="path4798" d="m55.008 10.703v6.2891h2.5439q0.44434 0 0.44434 0.35644 0 0.35156-0.45898 0.35156h-2.8906q-0.346 0-0.346-0.435v-6.5625q0-0.37598 0.35156-0.37598 0.35644 0 0.35644 0.37598z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g stroke="#2e3436">
|
||||
<path id="path4144" d="m17.091 26.94v25.454c0 2.9091 0 2.9091 14.545 2.9091 15.273 0 15.273 0 15.273-2.9091v-25.454c0-2.1819 0-2.1819-15.273-2.1819-14.545 0-14.545 0-14.545 2.1819z" fill-rule="evenodd" stroke-width="1.4545" fill="#fff"/>
|
||||
<path id="path4195" d="m17.818 45.84c0 6.5454-0.72726 8.7272 1.4545 8.7272h11.636v-8.7272z" fill-rule="evenodd" stroke-width=".36363" fill="#fff"/>
|
||||
<path id="path4169" d="m31.636 45.14v10.182" stroke-width="1.4545" fill="none"/>
|
||||
<path id="path4167" d="m17.091 45.14h29.818" stroke-width="1.4545" fill="none"/>
|
||||
<path id="path4154" d="m46.182 45.84c0 7.2727 0.72726 8.7272-1.4545 8.7272h-12.364v-8.7272z" fill-rule="evenodd" stroke-width=".36363" fill="#fff"/>
|
||||
</g>
|
||||
<g id="g4358" transform="matrix(.20401 0 0 -.20322 27.2 243.82)" stroke="#eeeeec" stroke-width="5.7148" fill="#729fcf">
|
||||
<ellipse id="ellipse4360" rx="5.7143" ry="5.625" stroke="#eeeeec" transform="matrix(2.625,0,0,2.6667,-17.723,791.04)" cy="88.839" cx="15.714" stroke-width="2.16" fill="#729fcf"/>
|
||||
</g>
|
||||
<g fill="none">
|
||||
<path id="path4170-6" d="m34.943 30.163-2.9427-2.9427-2.9427 2.9427" stroke="#2e3436" stroke-width="1.9618"/>
|
||||
<path id="path4145" d="m34.452 29.673-2.452-2.453-2.452 2.453" stroke="#729fcf" stroke-width=".98090"/>
|
||||
<path id="path4479" d="m34.943 39.627-2.9427 2.9427-2.9427-2.9427" stroke="#2e3436" stroke-width="1.9618"/>
|
||||
<path id="path4481" d="m34.452 40.117-2.452 2.453-2.452-2.453" stroke="#729fcf" stroke-width=".98090"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
17
src/Mod/Tux/Resources/icons/NavigationUndefined.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="64" width="64" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 63.999999 63.999999">
|
||||
<metadata id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g id="layer1" transform="translate(0 -988.36)" stroke="#a40000" stroke-width="6" fill="none">
|
||||
<path id="path4144" d="m16 1028.4v-20c0-8 4-12 16-12s16 4 16 12v20c0 8-4 17-16 17s-16-9-16-17z"/>
|
||||
<path id="path4209" d="m32 1004.4v12"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 859 B |