thatsa workbench
0
freecad/kiconnect/__init__.py
Normal file
44
freecad/kiconnect/api.py
Normal file
|
@ -0,0 +1,44 @@
|
|||
import FreeCAD as App
|
||||
import FreeCADGui as Gui
|
||||
|
||||
from kipy import KiCad
|
||||
|
||||
from . import settings
|
||||
from .bases import BaseObject, BaseViewProvider
|
||||
|
||||
class APIObject(BaseObject):
|
||||
def __init__(self, parent, feature):
|
||||
super(APIObject, self).__init__(parent, feature)
|
||||
|
||||
feature.addProperty('App::PropertyFile', 'Socket', 'KiConnect', 'Path to the KiCAD Socket File').Socket = '/tmp/kicad/api.lock'
|
||||
|
||||
def execute(self, feature):
|
||||
self.parent.ping_connection()
|
||||
|
||||
|
||||
class APIViewProvider(BaseViewProvider):
|
||||
pass
|
||||
|
||||
class API():
|
||||
ICON = 'icon_footprint_browser.svg'
|
||||
TYPE = 'KiConnect::API'
|
||||
|
||||
def __init__(self):
|
||||
self.feature = App.ActiveDocument.addObject('App::FeaturePython', 'API')
|
||||
|
||||
APIObject(self, self.feature)
|
||||
APIViewProvider(self, self.feature.ViewObject)
|
||||
|
||||
self.kicad = KiCad()
|
||||
self.ping_connection()
|
||||
|
||||
@property
|
||||
def is_connected(self):
|
||||
return self._connected
|
||||
|
||||
def ping_connection(self):
|
||||
try:
|
||||
self.kicad.ping()
|
||||
self._connected = True
|
||||
except:
|
||||
self._connected = False
|
35
freecad/kiconnect/bases/BaseObject.py
Normal file
|
@ -0,0 +1,35 @@
|
|||
class BaseObject:
|
||||
def __init__(self, parent, feature):
|
||||
print(self)
|
||||
self.parent = parent
|
||||
self.feature = feature
|
||||
|
||||
feature.Proxy = self
|
||||
|
||||
self.Type = ''
|
||||
|
||||
if hasattr(parent.__class__, 'TYPE'):
|
||||
self.Type = parent.__class__.TYPE
|
||||
|
||||
self.setup_properties()
|
||||
self.setup_extensions()
|
||||
|
||||
def execute(self, feature):
|
||||
print('execute', feature.Label, self.Type)
|
||||
|
||||
def setup_properties(self):
|
||||
pass
|
||||
|
||||
def setup_extensions(self):
|
||||
if hasattr(self.parent.__class__, 'EXTENSIONS'):
|
||||
for ext in self.parent.__class__.EXTENSIONS:
|
||||
self.feature.addExtension(ext)
|
||||
|
||||
def onBeforeChange(self, feature, prop):
|
||||
pass
|
||||
|
||||
def onChanged(self, feature, prop):
|
||||
pass
|
||||
|
||||
def __getstate__(self):
|
||||
return None
|
46
freecad/kiconnect/bases/BaseViewProvider.py
Normal file
|
@ -0,0 +1,46 @@
|
|||
import os
|
||||
import FreeCADGui as Gui
|
||||
from pivy import coin
|
||||
|
||||
from .. import settings
|
||||
|
||||
class BaseViewProvider:
|
||||
def __init__(self, parent, viewprovider):
|
||||
self.parent = parent
|
||||
self.viewprovider = viewprovider
|
||||
|
||||
viewprovider.Proxy = self
|
||||
|
||||
self.Type = ''
|
||||
|
||||
if hasattr(parent.__class__, 'TYPE'):
|
||||
self.Type = parent.__class__.TYPE
|
||||
|
||||
self.setup_extensions()
|
||||
|
||||
def setup_extensions(self):
|
||||
if hasattr(self.parent.__class__, 'VIEWPROVIDER_EXTENSIONS'):
|
||||
for ext in self.parent.__getstate__.VIEWPROVIDER_EXTENSIONS:
|
||||
self.feature.addExtension(ext)
|
||||
|
||||
def attach(self, vobj):
|
||||
self.standard = coin.SoGroup()
|
||||
vobj.addDisplayMode(self.standard, "Standard")
|
||||
|
||||
def doubleClicked(self, vobj):
|
||||
Gui.activateWorkbench("KiConnect")
|
||||
Gui.Selection.clearSelection()
|
||||
|
||||
def getIcon(self):
|
||||
return os.path.join(settings.ICONPATH, self.parent.__class__.ICON)
|
||||
|
||||
def getDisplayModes(self,obj):
|
||||
'''Return a list of display modes.'''
|
||||
return [ 'Standard' ]
|
||||
|
||||
def getDefaultDisplayMode(self):
|
||||
'''Return the name of the default display mode. It must be defined in getDisplayModes.'''
|
||||
return 'Standard'
|
||||
|
||||
def __getstate__(self):
|
||||
return None
|
2
freecad/kiconnect/bases/__init__.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
from .BaseObject import *
|
||||
from .BaseViewProvider import *
|
0
freecad/kiconnect/commands/__init__.py
Normal file
32
freecad/kiconnect/commands/cmd_new_pcb.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
import os
|
||||
import sys
|
||||
import kipy
|
||||
|
||||
import FreeCADGui as Gui
|
||||
import FreeCAD as App
|
||||
|
||||
from .. import settings
|
||||
from ..project import Project
|
||||
|
||||
class New:
|
||||
def GetResources(self):
|
||||
tooltip = '<p>Create new KiCAD Project</p>'
|
||||
iconFile = os.path.join(settings.ICONPATH, 'add_board.svg')
|
||||
|
||||
return {'MenuText': 'New KiCAD Project', 'ToolTip': tooltip, 'Pixmap' : iconFile }
|
||||
|
||||
def Activated(self):
|
||||
if App.ActiveDocument is None:
|
||||
App.newDocument()
|
||||
|
||||
App.ActiveDocument.openTransaction('kiconnect_new')
|
||||
|
||||
kiconnect = Project()
|
||||
|
||||
App.ActiveDocument.recompute()
|
||||
Gui.SendMsgToActiveView("ViewFit")
|
||||
|
||||
App.ActiveDocument.commitTransaction()
|
||||
|
||||
|
||||
Gui.addCommand('kiconn_new', New())
|
40
freecad/kiconnect/commands/cmd_reload.py
Normal file
|
@ -0,0 +1,40 @@
|
|||
import importlib
|
||||
import FreeCADGui as Gui
|
||||
import os
|
||||
import sys
|
||||
|
||||
from .. import settings
|
||||
from ..project import Project
|
||||
|
||||
class Reload:
|
||||
def GetResources(self):
|
||||
tooltip = '<p>Reload KiConnect Workbench for development.</p>'
|
||||
iconFile = os.path.join(settings.ICONPATH, 'kiconnect.svg')
|
||||
|
||||
return {
|
||||
'MenuText': 'Reload KiConnect',
|
||||
'ToolTip': tooltip,
|
||||
'Pixmap' : iconFile
|
||||
}
|
||||
|
||||
def Activated(self):
|
||||
try:
|
||||
Gui.activateWorkbench('Part')
|
||||
print('failed to switch to Part WB')
|
||||
except: pass
|
||||
|
||||
try:
|
||||
Gui.removeWorkbench('KiConnect')
|
||||
except:
|
||||
print('failed to remove KiConnect')
|
||||
pass
|
||||
|
||||
for mod in [mod for mod in sys.modules if 'kicon' in mod]:
|
||||
print(f'Reloading {mod}')
|
||||
|
||||
importlib.reload(sys.modules[mod])
|
||||
|
||||
Gui.activateWorkbench('KiConnect')
|
||||
|
||||
|
||||
Gui.addCommand('kiconn_reload', Reload())
|
29
freecad/kiconnect/commands/cmd_sync_from.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
import importlib
|
||||
import FreeCAD as App
|
||||
import FreeCADGui as Gui
|
||||
import os
|
||||
import sys
|
||||
|
||||
from .. import settings
|
||||
from ..project import Project
|
||||
|
||||
class Sync:
|
||||
def GetResources(self):
|
||||
tooltip = '<p>Reload Board from KiCAD.</p>'
|
||||
iconFile = os.path.join(settings.ICONPATH, 'import_brd_file.svg')
|
||||
|
||||
return {
|
||||
'MenuText': 'Sync from KiCAD',
|
||||
'ToolTip': tooltip,
|
||||
'Pixmap' : iconFile
|
||||
}
|
||||
|
||||
def Activated(self):
|
||||
boards = [ sel for sel in Gui.Selection.getSelection() if sel.Type == 'KiConnect::Board' ]
|
||||
|
||||
for board in boards:
|
||||
board.KiConnBoard.sketch_outline()
|
||||
|
||||
App.ActiveDocument.recompute()
|
||||
|
||||
Gui.addCommand('kiconn_sync_from', Sync())
|
29
freecad/kiconnect/commands/cmd_sync_to.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
import importlib
|
||||
import FreeCADGui as Gui
|
||||
import os
|
||||
import sys
|
||||
|
||||
from .. import settings
|
||||
from ..project import Project
|
||||
|
||||
class Sync:
|
||||
def GetResources(self):
|
||||
tooltip = '<p>Update Board in KiCAD.</p>'
|
||||
iconFile = os.path.join(settings.ICONPATH, 'export_to_pcbnew.svg')
|
||||
|
||||
return {
|
||||
'MenuText': 'Sync to KiCAD',
|
||||
'ToolTip': tooltip,
|
||||
'Pixmap' : iconFile
|
||||
}
|
||||
|
||||
def Activated(self):
|
||||
boards = [ sel for sel in Gui.Selection.getSelection() if sel.Type == 'KiConnect::Board' ]
|
||||
|
||||
for board in boards:
|
||||
board.KiConnBoard.sync()
|
||||
|
||||
|
||||
|
||||
|
||||
Gui.addCommand('kiconn_sync_to', Sync())
|
98
freecad/kiconnect/copper.py
Normal file
|
@ -0,0 +1,98 @@
|
|||
import os
|
||||
import FreeCADGui as Gui
|
||||
import FreeCAD as App
|
||||
import Materials
|
||||
import Part
|
||||
|
||||
from kipy import KiCad
|
||||
from kipy.board_types import Footprint3DModel, BoardPolygon, BoardSegment, PadStackShape
|
||||
from kipy.util.board_layer import BoardLayer
|
||||
|
||||
from . import settings
|
||||
from .bases import BaseObject, BaseViewProvider
|
||||
|
||||
gold_mat_uuid = '85257e2c-be3f-40a1-b03f-0bd4ba58ca08'
|
||||
materials_manager = Materials.MaterialManager()
|
||||
gold = materials_manager.Materials[gold_mat_uuid]
|
||||
|
||||
class CopperObject(BaseObject):
|
||||
pass
|
||||
|
||||
class CopperViewProvider(BaseViewProvider):
|
||||
pass
|
||||
|
||||
class Copper():
|
||||
ICON = 'show_all_copper_layers.svg'
|
||||
TYPE = 'KiConnect::Copper'
|
||||
|
||||
def __init__(self, kicad_board, kiconn_board):
|
||||
self.nets = {}
|
||||
|
||||
self.kicad_board = kicad_board
|
||||
self.kiconn_board = kiconn_board
|
||||
|
||||
feature = App.ActiveDocument.addObject('App::DocumentObjectGroupPython', 'Copper')
|
||||
|
||||
CopperObject(self, feature)
|
||||
CopperViewProvider(self, feature.ViewObject)
|
||||
|
||||
self.feature = feature
|
||||
|
||||
self.create_net_sketches()
|
||||
self.draw_nets()
|
||||
|
||||
feature.recompute()
|
||||
|
||||
def create_net_sketches(self):
|
||||
for net in self.kicad_board.get_nets():
|
||||
# this needs to be handled better, if there is an empty net, it will result
|
||||
# in an empty sketch and an error
|
||||
if net.name == '': continue
|
||||
|
||||
face = App.ActiveDocument.addObject('Part::Face', net.name)
|
||||
face.ShapeMaterial = gold
|
||||
'''
|
||||
if self.feature.HideUnconnected and net.name.startswith('unconnected_'):
|
||||
face.Hidden = True
|
||||
'''
|
||||
|
||||
sketch = App.ActiveDocument.addObject('Sketcher::SketchObject')
|
||||
sketch.Placement.Base.z = settings.BOARD_THICKNESS + 0.01
|
||||
sketch.Visibility = False
|
||||
|
||||
face.Sources = sketch
|
||||
|
||||
self.nets[net.name] = face
|
||||
self.feature.addObject(face)
|
||||
|
||||
def draw_nets(self):
|
||||
# setup or clear net arrays/geometry
|
||||
for net_name in self.nets:
|
||||
self.nets[net_name].Sources[0].Geometry = []
|
||||
|
||||
for pad in self.kicad_board.get_pads():
|
||||
if BoardLayer.BL_F_Cu not in pad.padstack.layers:
|
||||
continue
|
||||
|
||||
f_cu = pad.padstack.copper_layer(BoardLayer.BL_F_Cu)
|
||||
|
||||
center = (App.Vector(pad.position.x, -pad.position.y) / 1000000.0) - self.kiconn_board.offset
|
||||
|
||||
sketch = self.nets[pad.net.name].Sources[0]
|
||||
|
||||
if f_cu.shape in [ PadStackShape.PSS_ROUNDRECT, PadStackShape.PSS_RECTANGLE ]:
|
||||
size = App.Vector(f_cu.size.x, f_cu.size.y) / 1000000.0 / 2
|
||||
|
||||
sketch.addGeometry([
|
||||
Part.LineSegment(App.Vector(center.x + size.x, center.y + size.y), App.Vector(center.x + size.x, center.y - size.y)),
|
||||
Part.LineSegment(App.Vector(center.x + size.x, center.y - size.y), App.Vector(center.x - size.x, center.y - size.y)),
|
||||
Part.LineSegment(App.Vector(center.x - size.x, center.y - size.y), App.Vector(center.x - size.x, center.y + size.y)),
|
||||
Part.LineSegment(App.Vector(center.x - size.x, center.y + size.y), App.Vector(center.x + size.x, center.y + size.y)),
|
||||
])
|
||||
elif f_cu.shape == PadStackShape.PSS_CIRCLE:
|
||||
drill = pad.padstack.drill
|
||||
|
||||
if drill.diameter.x == drill.diameter.y:
|
||||
rad = drill.diameter.x / 1000000.0 / 2
|
||||
sketch.addGeometry(Part.Circle(App.Vector(center.x, center.y), App.Vector(0, 0, 1), rad))
|
||||
|
1
freecad/kiconnect/init.py
Normal file
|
@ -0,0 +1 @@
|
|||
print('init.py')
|
58
freecad/kiconnect/init_gui.py
Normal file
|
@ -0,0 +1,58 @@
|
|||
import os
|
||||
import sys
|
||||
|
||||
# temp hack to run kipy from source until 0.1.0 is looking ~
|
||||
sys.path.insert(1, os.path.join(os.path.dirname(os.path.realpath(__file__)), '..', '..', '.venv', 'lib', 'python3.13', 'site-packages'))
|
||||
|
||||
import FreeCADGui as Gui
|
||||
import FreeCAD as App
|
||||
|
||||
from .commands import cmd_new_pcb, cmd_reload, cmd_sync_from, cmd_sync_to
|
||||
from . import settings
|
||||
|
||||
translate=App.Qt.translate
|
||||
QT_TRANSLATE_NOOP=App.Qt.QT_TRANSLATE_NOOP
|
||||
|
||||
TRANSLATIONSPATH = os.path.join(os.path.dirname(__file__), "resources", "translations")
|
||||
|
||||
# Add translations path
|
||||
Gui.addLanguagePath(TRANSLATIONSPATH)
|
||||
Gui.updateLocale()
|
||||
|
||||
class KiConnect(Gui.Workbench):
|
||||
MenuText = translate("Workbench", "KiConnect")
|
||||
ToolTip = translate("Workbench", "KiConnect PCB Workbench")
|
||||
Icon = os.path.join(settings.ICONPATH, "kiconnect.svg")
|
||||
|
||||
toolbox = [ 'kiconn_new', 'kiconn_reload', 'kiconn_sync_to', 'kiconn_sync_from' ]
|
||||
|
||||
def GetClassName(self):
|
||||
return "Gui::PythonWorkbench"
|
||||
|
||||
def Initialize(self):
|
||||
"""
|
||||
This function is called at the first activation of the workbench.
|
||||
here is the place to import all the commands
|
||||
"""
|
||||
|
||||
print('setting up toolbar')
|
||||
# NOTE: Context for this commands must be "Workbench"
|
||||
self.appendToolbar(QT_TRANSLATE_NOOP("Workbench", "KiConnect"), self.toolbox)
|
||||
self.appendMenu(QT_TRANSLATE_NOOP("Workbench", "KiConnect"), self.toolbox)
|
||||
|
||||
def Activated(self):
|
||||
App.Console.PrintMessage(translate("Log", "Workbench KiConnect activated.") + "\n")
|
||||
|
||||
def Deactivated(self):
|
||||
App.Console.PrintMessage(translate("Log", "Workbench KiConnect de-activated.") + "\n")
|
||||
|
||||
def ContextMenu(self, recipient):
|
||||
boards = [sel for sel in Gui.Selection.getSelection() if sel.Type == 'KiConnect::Board']
|
||||
|
||||
if boards:
|
||||
self.appendContextMenu("", "Separator")
|
||||
self.appendContextMenu("", "kiconn_sync_from")
|
||||
self.appendContextMenu("", "Separator")
|
||||
|
||||
|
||||
Gui.addWorkbench(KiConnect())
|
60
freecad/kiconnect/parts.py
Normal file
|
@ -0,0 +1,60 @@
|
|||
import os
|
||||
import ImportGui
|
||||
import FreeCADGui as Gui
|
||||
import FreeCAD as App
|
||||
import Materials
|
||||
import Part
|
||||
|
||||
from kipy import KiCad
|
||||
from kipy.board_types import Footprint3DModel, BoardPolygon, BoardSegment, PadStackShape
|
||||
from kipy.util.board_layer import BoardLayer
|
||||
|
||||
from . import settings
|
||||
from .bases import BaseObject, BaseViewProvider
|
||||
|
||||
class PartsObject(BaseObject):
|
||||
pass
|
||||
|
||||
class PartsViewProvider(BaseViewProvider):
|
||||
pass
|
||||
|
||||
class Parts():
|
||||
ICON = 'icon_footprint_browser.svg'
|
||||
TYPE = 'KiConnect::Parts'
|
||||
|
||||
def __init__(self, kicad_board, kiconn_board):
|
||||
self.kicad_board = kicad_board
|
||||
self.kiconn_board = kiconn_board
|
||||
|
||||
feature = App.ActiveDocument.addObject('App::DocumentObjectGroupPython', 'Parts')
|
||||
|
||||
PartsObject(self, feature)
|
||||
PartsViewProvider(self, feature.ViewObject)
|
||||
|
||||
self.feature = feature
|
||||
|
||||
self.import_footprints()
|
||||
|
||||
def import_footprints(self):
|
||||
for footprint in self.kicad_board.get_footprints():
|
||||
# NOTE this doesn't handle footprints that have been removed
|
||||
if App.ActiveDocument.getObjectsByLabel(footprint.reference_field.text.value): continue
|
||||
|
||||
for item in [item for item in footprint.definition.items if isinstance(item, Footprint3DModel)]:
|
||||
filename = item.filename.replace('${KICAD9_3DMODEL_DIR}', settings.KICAD9_3DMODEL_DIR).replace('wrl', 'step')
|
||||
ImportGui.insert(filename, App.ActiveDocument.Name)
|
||||
|
||||
# simply grabs the last object in the document, probably need to figure out a safer way to handle
|
||||
model = App.ActiveDocument.findObjects()[-1]
|
||||
model.Label = footprint.reference_field.text.value
|
||||
|
||||
model.addProperty('App::PropertyPlacement', 'BoardOffset', 'Base', 'Internal offset for zeroing out Footprint offset', hidden=True, read_only=True)
|
||||
|
||||
self.feature.addObject(model)
|
||||
|
||||
model.Placement.Base.x = (footprint.position.x / 1000000.0) - self.kiconn_board.offset.x
|
||||
model.Placement.Base.y = (-footprint.position.y / 1000000.0) - self.kiconn_board.offset.y
|
||||
model.Placement.Base.z = 0.8
|
||||
model.Placement.Rotation.Angle = footprint.orientation.to_radians()
|
||||
model.BoardOffset = model.Placement
|
||||
|
43
freecad/kiconnect/project.py
Normal file
|
@ -0,0 +1,43 @@
|
|||
import FreeCADGui as Gui
|
||||
import FreeCAD as App
|
||||
import os
|
||||
import time
|
||||
|
||||
from kipy import KiCad
|
||||
|
||||
from . import settings
|
||||
|
||||
from .api import API
|
||||
from .copper import Copper
|
||||
from .board import Board
|
||||
from .parts import Parts
|
||||
|
||||
class Project:
|
||||
def __init__(self):
|
||||
start_time = time.time()
|
||||
self.board = None
|
||||
self.kicad_api = None
|
||||
self.kicad_project = None
|
||||
self.viewprovider = None
|
||||
|
||||
feature = App.ActiveDocument.addObject('App::Part', 'KiConnect')
|
||||
self.feature = feature
|
||||
|
||||
feature.addProperty('App::PropertyTime', 'ProcessTime', 'KiConnect', 'Time to process Project', hidden=True, read_only=True)
|
||||
|
||||
self.API = API()
|
||||
self.feature.addObject(self.API.feature)
|
||||
|
||||
if self.API.is_connected:
|
||||
kicad_board = self.API.kicad.get_board()
|
||||
|
||||
self.board = Board(kicad_board)
|
||||
self.feature.addObject(self.board.feature)
|
||||
|
||||
self.parts = Parts(kicad_board, self.board)
|
||||
self.board.feature.addObject(self.parts.feature)
|
||||
|
||||
self.copper = Copper(kicad_board, self.board)
|
||||
self.board.feature.addObject(self.copper.feature)
|
||||
|
||||
feature.ProcessTime = time.time() - start_time
|
0
freecad/kiconnect/resources/icons/.gitkeep
Normal file
254
freecad/kiconnect/resources/icons/add_board.svg
Normal file
|
@ -0,0 +1,254 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="add_board.svg"
|
||||
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
|
||||
inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_26/add_board.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1609"
|
||||
inkscape:window-height="1041"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="23.837528"
|
||||
inkscape:cx="12.615729"
|
||||
inkscape:cy="14.623235"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="g952">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs27840">
|
||||
<style
|
||||
id="style27838">.cls-1{fill:#8f8f8f;}.cls-2{fill:#DED3DD;}.cls-3,.cls-6{fill:none;}.cls-3{stroke:#8f8f8f;stroke-miterlimit:10;stroke-width:0.9553px;}.cls-4{fill:#42B8EB;}.cls-5{fill:#f2647e;}.cls-6{stroke:#545454;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath954">
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect956"
|
||||
width="21"
|
||||
height="21"
|
||||
x="-33"
|
||||
y="-2"
|
||||
ry="3.4854646" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<title
|
||||
id="title27842">add_board</title>
|
||||
<g
|
||||
id="g952"
|
||||
clip-path="url(#clipPath954)"
|
||||
transform="translate(33.00181,1.9988756)"
|
||||
style="display:inline">
|
||||
<rect
|
||||
class="cls-1"
|
||||
x="1.4020385e-07"
|
||||
y="0"
|
||||
width="24"
|
||||
height="24"
|
||||
rx="0"
|
||||
id="rect9"
|
||||
style="display:inline;fill:#489648;fill-opacity:1;stroke:none;stroke-width:0.571427;stroke-opacity:1"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)" />
|
||||
<path
|
||||
class="cls-2"
|
||||
d="m 9.7142857,24 v -1.714286 l 4.0000003,-4 V 12.571429 L 14.285714,12 h 4 l 2.285715,1.714286 H 24 V 4.5714286 H 20.571429 L 18.285714,6.2857143 H 16.571429 L 14.5,4 V 0 C 9.9949374,-0.001605 2.029505,0.001245 -0.0020687,0.001285 0,3.25 0,24 0,24 c 1.5,-0.02777 4.0236148,0 9.7142857,0 z"
|
||||
id="path11"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
style="display:inline;fill:#006400;fill-opacity:1;stroke-width:0.571427"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)" />
|
||||
<path
|
||||
style="display:inline;fill:none;stroke:#489648;stroke-width:2.28571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.571429,9.1428571 H 14.857143 L 11.428571,5.7142857 v -6.8571428"
|
||||
id="path2253"
|
||||
sodipodi:nodetypes="cccc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)" />
|
||||
<path
|
||||
style="display:inline;fill:none;stroke:#489648;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -35.37862,10.501124 h 5.87681"
|
||||
id="path892"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="display:inline;fill:none;stroke:#489648;stroke-width:2.85714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.2135977,25.142857 V 21.714286 L 9.7850263,17.142857 V 11.428571 L 5.2135977,6.8571429 v -7.42857147"
|
||||
id="path2265"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-32.561898,-2)" />
|
||||
<rect
|
||||
style="display:inline;fill:#006400;fill-opacity:1;stroke:none;stroke-width:2.65576;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect878"
|
||||
width="6"
|
||||
height="5"
|
||||
x="17"
|
||||
y="14"
|
||||
rx="0"
|
||||
ry="0.80000001"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:1.5333;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect880"
|
||||
width="4"
|
||||
height="3"
|
||||
x="18"
|
||||
y="15"
|
||||
rx="0"
|
||||
ry="1"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<rect
|
||||
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:2.65576;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect882"
|
||||
width="6"
|
||||
height="5"
|
||||
x="17"
|
||||
y="20"
|
||||
rx="0"
|
||||
ry="0.80000001"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:1.5333;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect884"
|
||||
width="4"
|
||||
height="3"
|
||||
x="18"
|
||||
y="21"
|
||||
rx="0"
|
||||
ry="0.96360058"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:1.14285;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18,16.5 H 16"
|
||||
id="path886"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<path
|
||||
style="display:inline;fill:none;stroke:#2cb22c;stroke-width:1.14285;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 24,16.5 H 22"
|
||||
id="path888"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<path
|
||||
style="display:inline;fill:none;stroke:#2cb22c;stroke-width:2.28571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 20,14 v 1"
|
||||
id="path890"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<ellipse
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:#dd8d15;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path936"
|
||||
cx="-28.6875"
|
||||
cy="10.6875"
|
||||
clip-path="none"
|
||||
rx="1.7079376"
|
||||
ry="1.6027977" />
|
||||
<ellipse
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:#dd8d15;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle938"
|
||||
cx="-14.137123"
|
||||
cy="5.9967451"
|
||||
clip-path="none"
|
||||
rx="1.7079376"
|
||||
ry="1.6027977" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
class="cls-8"
|
||||
d="m -24.00181,15.001124 a 8.0000039,7.9999997 0 1 1 8.000003,8.013042 8.0065251,8.006521 0 0 1 -8.000003,-8.013042 z"
|
||||
id="path858"
|
||||
style="display:inline;fill:#ffffff;fill-opacity:1;stroke-width:0.999998" />
|
||||
</g>
|
||||
<g
|
||||
id="g856"
|
||||
style="display:inline">
|
||||
<circle
|
||||
class="cls-5"
|
||||
cx="17"
|
||||
cy="16.9939"
|
||||
r="7"
|
||||
id="circle27864" />
|
||||
<line
|
||||
class="cls-6"
|
||||
x1="16.993999"
|
||||
y1="13.4939"
|
||||
x2="16.993999"
|
||||
y2="20.4939"
|
||||
id="line27866" />
|
||||
<line
|
||||
class="cls-6"
|
||||
x1="20.493999"
|
||||
y1="16.9939"
|
||||
x2="13.494"
|
||||
y2="16.9939"
|
||||
id="line27868" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.1 KiB |
1506
freecad/kiconnect/resources/icons/export_to_pcbnew.svg
Normal file
After Width: | Height: | Size: 51 KiB |
187
freecad/kiconnect/resources/icons/icon_footprint_browser.svg
Normal file
|
@ -0,0 +1,187 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="icon_footprint_browser.svg"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_26/footprint_browser.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1371"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="31.474156"
|
||||
inkscape:cx="20.469944"
|
||||
inkscape:cy="7.983228"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Слой_1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:measure-start="31,12"
|
||||
inkscape:measure-end="0,0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid873" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>module_editor</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs5">
|
||||
<style
|
||||
id="style3">.cls-1{fill:none;stroke:#545454;stroke-linecap:round;stroke-linejoin:round;}.cls-2{fill:#1a81c4;}.cls-3{fill:#bf2641;}.cls-4{fill:#fff;}</style>
|
||||
</defs>
|
||||
<title
|
||||
id="title7">module_editor</title>
|
||||
<polygon
|
||||
class="cls-1"
|
||||
points="21.531,4.063 1.247,4.063 1.247,8.578 2.995,10.153 2.995,12.325 1.247,13.899 1.247,18.922 21.516,18.922 "
|
||||
id="polygon9"
|
||||
transform="matrix(1.1338986,0,0,1.1442747,-0.91662774,-1.1958747)"
|
||||
style="stroke-width:0.877906;stroke:#DED3DD;stroke-opacity:1" />
|
||||
<rect
|
||||
class="cls-2"
|
||||
x="2.9605565"
|
||||
y="0.0042999983"
|
||||
width="5.0280428"
|
||||
height="6.9999995"
|
||||
id="rect19"
|
||||
style="stroke-width:1;fill:#42b8eb;fill-opacity:1" />
|
||||
<rect
|
||||
class="cls-2"
|
||||
x="9.960556"
|
||||
y="0.0042999983"
|
||||
width="5.0280428"
|
||||
height="6.9999995"
|
||||
id="rect875"
|
||||
style="stroke-width:1;fill:#42b8eb;fill-opacity:1" />
|
||||
<rect
|
||||
class="cls-2"
|
||||
x="16.960556"
|
||||
y="0.0042999983"
|
||||
width="5.0280428"
|
||||
height="6.9999995"
|
||||
id="rect877"
|
||||
style="stroke-width:1;fill:#42b8eb;fill-opacity:1" />
|
||||
<rect
|
||||
class="cls-2"
|
||||
x="2.9605565"
|
||||
y="17.004299"
|
||||
width="5.0280428"
|
||||
height="6.9999995"
|
||||
id="rect879"
|
||||
style="stroke-width:1;fill:#42b8eb;fill-opacity:1" />
|
||||
<rect
|
||||
class="cls-2"
|
||||
x="9.960556"
|
||||
y="17.004299"
|
||||
width="5.0280428"
|
||||
height="6.9999995"
|
||||
id="rect881"
|
||||
style="stroke-width:1;fill:#42b8eb;fill-opacity:1" />
|
||||
<rect
|
||||
class="cls-2"
|
||||
x="16.960556"
|
||||
y="17.004299"
|
||||
width="5.0280428"
|
||||
height="6.9999995"
|
||||
id="rect883"
|
||||
style="stroke-width:1;fill:#42b8eb;fill-opacity:1" />
|
||||
<g
|
||||
style="stroke-width:1.00092006"
|
||||
transform="matrix(0.99907229,0,0,0.99907223,16.621326,0.47789045)"
|
||||
id="g2825">
|
||||
<path
|
||||
class="cls-4"
|
||||
d="M 7.1526498,23.347728 C 6.3273371,24.2471 5.0323993,24.090063 4.1543057,23.211933 l -2.1806005,-2.100618 2.8618175,-2.861929 2.1807132,2.100725 c 0.8355341,1.004357 0.9709184,2.08823 0.1364139,2.997617 z"
|
||||
id="path853"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1.00092733"
|
||||
sodipodi:nodetypes="sccccs"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccccs"
|
||||
style="fill:#f2647e;fill-opacity:1;stroke-width:1.00092733"
|
||||
id="path2817"
|
||||
d="M 7.162202,23.370209 C 6.5124046,24.078317 5.4928555,23.954675 4.8015019,23.26329 l -1.7168621,-1.653884 2.2532079,-2.253298 1.7169509,1.653973 c 0.657845,0.790765 0.7644375,1.644134 0.1074034,2.360128 z"
|
||||
class="cls-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#f2647e;stroke-width:2.40223;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2819"
|
||||
d="m 2.8479247,10.859001 a 5.5121114,5.5115045 0 1 1 -7.7917738,0.0037 5.5095163,5.508909 0 0 1 7.7917738,-0.0037 z"
|
||||
class="cls-4" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:0.501961;stroke:#ffffff;stroke-width:0.600557;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2821"
|
||||
d="m 3.90642,9.8067211 a 7.0039124,7.0044519 0 1 1 -9.9050733,0 7.0039124,7.0044519 0 0 1 9.9050733,0 z"
|
||||
class="cls-5" />
|
||||
<g
|
||||
id="g851"
|
||||
transform="matrix(2.3621654,0,0,2.3621656,-8.8058418,6.9577514)"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:0.4509804;stroke:none;stroke-width:1.60298574">
|
||||
<path
|
||||
class="cls-5"
|
||||
d="m 4.5707641,2.0043869 a 1.8322519,1.8324268 0 1 1 -2.5912073,0 1.8322519,1.8324268 0 0 1 2.5912073,0 z"
|
||||
id="path849"
|
||||
style="fill:#ffffff;fill-opacity:0.4509804;stroke:none;stroke-width:0.25424007;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<rect
|
||||
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:1.00092733;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect2815"
|
||||
transform="rotate(-45.000001)"
|
||||
height="3.0027859"
|
||||
width="2.001857"
|
||||
y="15.823131"
|
||||
x="-12.42106"
|
||||
class="cls-3" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
235
freecad/kiconnect/resources/icons/import_brd_file.svg
Normal file
|
@ -0,0 +1,235 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="import_brd_file.svg"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_26/import_brd_file.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1371"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="21.709691"
|
||||
inkscape:cx="11.163373"
|
||||
inkscape:cy="13.845115"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs25341">
|
||||
<style
|
||||
id="style25339">.cls-1{fill:#8f8f8f;}.cls-2{fill:#DED3DD;}.cls-3,.cls-6{fill:none;}.cls-3{stroke:#8f8f8f;stroke-miterlimit:10;stroke-width:0.9551px;}.cls-4{fill:#42B8EB;}.cls-5{fill:#f2647e;}.cls-6{stroke:#545454;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath888">
|
||||
<rect
|
||||
style="display:inline;fill:#f29100;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect890"
|
||||
width="21"
|
||||
height="21"
|
||||
x="0.00181"
|
||||
y="-0.0011243999"
|
||||
ry="3.4854646"
|
||||
rx="3.4854646"
|
||||
sodipodi:insensitive="true" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<title
|
||||
id="title25343">import_brd_file</title>
|
||||
<g
|
||||
id="g886"
|
||||
clip-path="url(#clipPath888)">
|
||||
<rect
|
||||
class="cls-1"
|
||||
x="0.0018101226"
|
||||
y="-0.0011243999"
|
||||
width="21"
|
||||
height="21"
|
||||
rx="0"
|
||||
id="rect9"
|
||||
style="fill:#489648;fill-opacity:1;stroke:none;stroke-width:0.499999;stroke-opacity:1"
|
||||
clip-path="none" />
|
||||
<path
|
||||
class="cls-2"
|
||||
d="m 8.50181,20.998876 v -1.500001 l 3.5,-3.5 v -4.999999 l 0.5,-0.5 h 3.5 l 2,1.5 h 3 V 3.9988756 h -3 l -2,1.5 h -1.5 l -1.8125,-2 v -3.5 C 8.7473802,-0.00252877 1.7776269,-3.5025e-5 -1.125e-7,-2.5e-8 0.00181,2.8426256 0.00181,20.998876 0.00181,20.998876 c 1.3125,-0.0243 3.5206629,0 8.5,0 z"
|
||||
id="path11"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
style="fill:#006400;fill-opacity:1;stroke-width:0.499999"
|
||||
clip-path="none" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 18.00181,7.9988756 h -5 l -3,-3 v -6"
|
||||
id="path2253"
|
||||
sodipodi:nodetypes="cccc"
|
||||
clip-path="none" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:4.47214;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 0.00181,12.611314 h 4.375"
|
||||
id="path892"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 5.00181,21.998875 v -2.999999 l 4,-4.000001 V 9.9988752 l -4,-3.9999996 v -6.5"
|
||||
id="path2265"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
clip-path="none" />
|
||||
<rect
|
||||
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:2.32379;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect878"
|
||||
width="5.25"
|
||||
height="4.375"
|
||||
x="14.87681"
|
||||
y="12.998876"
|
||||
rx="0"
|
||||
ry="0.69999999"
|
||||
clip-path="none" />
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect880"
|
||||
width="3.5"
|
||||
height="2.625"
|
||||
x="15.75181"
|
||||
y="13.873876"
|
||||
rx="0"
|
||||
ry="0.875"
|
||||
clip-path="none" />
|
||||
<rect
|
||||
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:2.32379;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect882"
|
||||
width="5.25"
|
||||
height="4.375"
|
||||
x="14.87681"
|
||||
y="18.248875"
|
||||
rx="0"
|
||||
ry="0.69999999"
|
||||
clip-path="none" />
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:1.34164;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect884"
|
||||
width="3.5"
|
||||
height="2.625"
|
||||
x="15.75181"
|
||||
y="19.123875"
|
||||
rx="0"
|
||||
ry="0.8431505"
|
||||
clip-path="none" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:0.999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 15.75181,15.186376 h -1.75"
|
||||
id="path886"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:0.999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 21.00181,15.186376 h -1.75"
|
||||
id="path888"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 17.50181,12.998876 v 0.875"
|
||||
id="path890"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none" />
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#f29100;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path936"
|
||||
cx="3.8844604"
|
||||
cy="12.579085"
|
||||
r="1.6027977"
|
||||
clip-path="none" />
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#f29100;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle938"
|
||||
cx="18.864687"
|
||||
cy="7.9956207"
|
||||
r="1.6027977"
|
||||
clip-path="none" />
|
||||
<path
|
||||
class="cls-5"
|
||||
d="M 24.999996,16.992578 A 7.9999997,7.9999996 0 1 1 16.999998,9.0000009 7.9962317,7.9962316 0 0 1 24.999996,16.992578 Z"
|
||||
id="path908"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
class="cls-5"
|
||||
d="M 24.0065,17 A 7.0065,7.0065 0 1 1 17,10 a 7.0032,7.0032 0 0 1 7.0065,7 z"
|
||||
id="path25365"
|
||||
style="display:inline" />
|
||||
<line
|
||||
class="cls-6"
|
||||
x1="17"
|
||||
y1="20.4118"
|
||||
x2="17"
|
||||
y2="13.4118"
|
||||
id="line25367"
|
||||
style="display:inline;stroke:#ffffff;stroke-opacity:1" />
|
||||
<polyline
|
||||
class="cls-6"
|
||||
points="20.859 18.879 18.104 21.631 15.349 18.879"
|
||||
id="polyline25369"
|
||||
transform="translate(-1.104,-1)"
|
||||
style="display:inline;stroke:#ffffff;stroke-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 8.5 KiB |
1
freecad/kiconnect/resources/icons/kiconnect.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="512px" height="512px"><path d="M0,0v512h512V0H0z M407.6596069,42.0140381c34.5601196-19.9243164,77.994873,5.116333,77.994873,44.9649658s-43.4346924,64.8892212-77.994873,44.9649048C373.0994873,112.0195923,373.0994873,61.9383545,407.6596069,42.0140381z M223.2701416,455.0969238c4.2844849-18.4424438-3.3591919-28.7300415-18.1851196-51.9573975l-75.0783081-102.355957v103.6549072c-0.0001831,24.0735474,4.8491821,40.9597778,14.5480347,50.6584473H22.4550171C35.1600342,440.8978882,37.3603516,432.7554321,37,404.6981812V118.6731567c-0.0045166-28.401062-1.3139038-35.4966431-14.5449829-50.3987427h122.0997314c-9.6988525,9.6989746-14.5482178,26.4985962-14.5480347,50.3987427v95.3417358l74.5587769-94.3024292c14.6218872-19.0511475,27.1481323-37.5650635,21.5622559-51.4378052h130.1531372c-24.487793,16.2039795-37.1495361,35.071228-58.1921997,60.789978l-97.6798096,121.5802002l116.6442261,160.5480957c13.7973633,18.4342651,29.4298706,37.0852051,39.7473755,43.9039917H223.2701416z M376.5441895,455.0969238c8.7683105-10.3731079,12.4020386-16.0053711,11.9501343-45.7226562v-193.28125c0.5737915-23.6783447-0.8546753-32.6720581-11.6903687-45.2030029c0,0,102.0961304,0,102.0961914,0.0002441v238.4840088c0.2631226,25.4750366,0.3855591,32.1329346,11.9501953,45.7226562H376.5441895z"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
248
freecad/kiconnect/resources/icons/load_module_board.svg
Normal file
|
@ -0,0 +1,248 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="load_module_board.svg"
|
||||
inkscape:version="1.0.2 (1.0.2+r75+1)"
|
||||
inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_26/import_brd_file.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1371"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="21.709691"
|
||||
inkscape:cx="6.1233866"
|
||||
inkscape:cy="15.216777"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs25341">
|
||||
<style
|
||||
id="style25339">.cls-1{fill:#8f8f8f;}.cls-2{fill:#DED3DD;}.cls-3,.cls-6{fill:none;}.cls-3{stroke:#8f8f8f;stroke-miterlimit:10;stroke-width:0.9551px;}.cls-4{fill:#42B8EB;}.cls-5{fill:#f2647e;}.cls-6{stroke:#545454;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath884">
|
||||
<rect
|
||||
style="display:inline;fill:#f29100;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect886"
|
||||
width="21"
|
||||
height="21"
|
||||
x="-33"
|
||||
y="-2"
|
||||
ry="3.4854646"
|
||||
rx="3.4854646" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<title
|
||||
id="title25343">import_brd_file</title>
|
||||
<g
|
||||
id="g952"
|
||||
clip-path="url(#clipPath884)"
|
||||
transform="translate(33.00181,1.9988756)"
|
||||
inkscape:label="g952">
|
||||
<rect
|
||||
class="cls-1"
|
||||
x="1.4020385e-07"
|
||||
y="0"
|
||||
width="24"
|
||||
height="24"
|
||||
rx="0"
|
||||
id="rect9"
|
||||
style="fill:#489648;fill-opacity:1;stroke:none;stroke-width:0.571427;stroke-opacity:1"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)" />
|
||||
<path
|
||||
class="cls-2"
|
||||
d="m 9.7142857,24 v -1.714286 l 4.0000003,-4 V 12.571429 L 14.285714,12 h 4 l 2.285715,1.714286 H 24 V 4.5714286 H 20.571429 L 18.285714,6.2857143 H 16.571429 L 14.5,4 V 0 C 9.9949374,-0.001605 2.029505,0.001245 -0.0020687,0.001285 0,3.25 0,24 0,24 c 1.5,-0.02777 4.0236148,0 9.7142857,0 z"
|
||||
id="path11"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
style="fill:#006400;fill-opacity:1;stroke-width:0.571427"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:2.28571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.571429,9.1428571 H 14.857143 L 11.428571,5.7142857 v -6.8571428"
|
||||
id="path2253"
|
||||
sodipodi:nodetypes="cccc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:3.23249;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0,14.5 H 2"
|
||||
id="path892"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(2.1875,0,0,0.875,-33,-2.0750619)" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:2.85714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.2135977,25.142857 V 21.714286 L 9.7850263,17.142857 V 11.428571 L 5.2135977,6.8571429 v -7.42857147"
|
||||
id="path2265"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-32.561898,-2)" />
|
||||
<rect
|
||||
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:2.65576;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect878"
|
||||
width="6"
|
||||
height="5"
|
||||
x="17"
|
||||
y="14"
|
||||
rx="0"
|
||||
ry="0.80000001"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:1.5333;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect880"
|
||||
width="4"
|
||||
height="3"
|
||||
x="18"
|
||||
y="15"
|
||||
rx="0"
|
||||
ry="1"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<rect
|
||||
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:2.65576;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect882"
|
||||
width="6"
|
||||
height="5"
|
||||
x="17"
|
||||
y="20"
|
||||
rx="0"
|
||||
ry="0.80000001"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:1.5333;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect884"
|
||||
width="4"
|
||||
height="3"
|
||||
x="18"
|
||||
y="21"
|
||||
rx="0"
|
||||
ry="0.96360058"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:1.14285;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18,16.5 H 16"
|
||||
id="path886"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:1.14285;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 24,16.5 H 22"
|
||||
id="path888"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:2.28571;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 20,14 v 1"
|
||||
id="path890"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#dd8d15;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path936"
|
||||
cx="-29.11735"
|
||||
cy="10.58021"
|
||||
r="1.6027977"
|
||||
clip-path="none" />
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#dd8d15;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle938"
|
||||
cx="-14.137123"
|
||||
cy="5.9967451"
|
||||
r="1.6027977"
|
||||
clip-path="none" />
|
||||
<path
|
||||
class="cls-5"
|
||||
d="M -8.0018126,14.993702 A 8.0000004,7.9999996 0 1 1 -16.001813,7.0011253 7.9962324,7.9962316 0 0 1 -8.0018126,14.993702 Z"
|
||||
id="path908"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke-width:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
class="cls-5"
|
||||
d="m 23.999997,16.993507 a 7,6.9999996 0 1 1 -7,-6.993506 6.9967031,6.9967026 0 0 1 7,6.993506 z"
|
||||
id="path25365"
|
||||
style="stroke-width:0.999996" />
|
||||
<line
|
||||
class="cls-6"
|
||||
x1="17"
|
||||
y1="20.4118"
|
||||
x2="17"
|
||||
y2="13.4118"
|
||||
id="line25367"
|
||||
style="stroke:#ffffff;stroke-opacity:1" />
|
||||
<polyline
|
||||
class="cls-6"
|
||||
points="20.859 18.879 18.104 21.631 15.349 18.879"
|
||||
id="polyline25369"
|
||||
transform="translate(-1.104,-1)"
|
||||
style="stroke:#ffffff;stroke-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 9.1 KiB |
204
freecad/kiconnect/resources/icons/options_board.svg
Normal file
|
@ -0,0 +1,204 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="Слой_1"
|
||||
data-name="Слой 1"
|
||||
viewBox="0 0 24 24"
|
||||
version="1.1"
|
||||
sodipodi:docname="options_board.svg"
|
||||
inkscape:version="1.0.1 (c497b03c, 2020-09-10)"
|
||||
inkscape:export-filename="/Users/jeff/kicad_dev/kicad/bitmaps_png/png_26/options_board.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1433"
|
||||
inkscape:window-height="715"
|
||||
id="namedview30"
|
||||
showgrid="true"
|
||||
inkscape:zoom="13.642859"
|
||||
inkscape:cx="18.648203"
|
||||
inkscape:cy="10.806852"
|
||||
inkscape:window-x="127"
|
||||
inkscape:window-y="1103"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="Слой_1"
|
||||
inkscape:snap-nodes="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid_kicad"
|
||||
spacingx="0.5"
|
||||
spacingy="0.5"
|
||||
color="#9999ff"
|
||||
opacity="0.13"
|
||||
empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs158547">
|
||||
<style
|
||||
id="style158545">.cls-1{fill:#8f8f8f;}.cls-2{fill:#DED3DD;}.cls-3{fill:none;stroke:#8f8f8f;stroke-miterlimit:10;stroke-width:0.9553px;}.cls-4{fill:#42B8EB;}.cls-5{fill:#fff;}.cls-6{fill:#f2647e;}</style>
|
||||
<clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath954">
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="rect956"
|
||||
width="21"
|
||||
height="21"
|
||||
x="-33"
|
||||
y="-2"
|
||||
ry="3.4854646" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<title
|
||||
id="title158549">options_board</title>
|
||||
<g
|
||||
id="g952"
|
||||
clip-path="url(#clipPath954)"
|
||||
transform="matrix(1.047619,0,0,1.047619,35.571429,3.0952381)"
|
||||
style="stroke-width:0.954545">
|
||||
<rect
|
||||
class="cls-1"
|
||||
x="1.4020385e-07"
|
||||
y="0"
|
||||
width="24"
|
||||
height="24"
|
||||
rx="0"
|
||||
id="rect9"
|
||||
style="fill:#489648;fill-opacity:1;stroke:none;stroke-width:0.545453;stroke-opacity:1"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)" />
|
||||
<path
|
||||
class="cls-2"
|
||||
d="m 9.7142857,24 v -1.714286 l 4.0000003,-4 V 12.571429 L 14.285714,12 h 4 l 2.285715,1.714286 H 24 V 4.5714286 H 20.571429 L 18.285714,6.2857143 H 16.571429 L 14.5,4 V 0 C 9.9949374,-0.001605 2.029505,0.001245 -0.0020687,0.001285 0,3.25 0,24 0,24 c 1.5,-0.02777 4.0236148,0 9.7142857,0 z"
|
||||
id="path11"
|
||||
sodipodi:nodetypes="ccccccccccccccccc"
|
||||
style="fill:#006400;fill-opacity:1;stroke-width:0.545453"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:2.18182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 20.571429,9.1428571 H 14.857143 L 11.428571,5.7142857 v -6.8571428"
|
||||
id="path2253"
|
||||
sodipodi:nodetypes="cccc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-2)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:3.08556;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0,14.5 H 2"
|
||||
id="path892"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(2.1875,0,0,0.875,-33,-2.0750619)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#489648;stroke-width:2.72727;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 5.2135977,25.142857 V 21.714286 L 9.7850263,17.142857 V 11.428571 L 5.2135977,6.8571429 v -7.42857147"
|
||||
id="path2265"
|
||||
sodipodi:nodetypes="cccccc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-32.561898,-2)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<rect
|
||||
style="fill:#f29100;fill-opacity:1;stroke:none;stroke-width:1.46361;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="rect884"
|
||||
width="4"
|
||||
height="3"
|
||||
x="18"
|
||||
y="21"
|
||||
rx="0.91980052"
|
||||
ry="0.91980052"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:1.0909;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 18,16.5 H 16"
|
||||
id="path886"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:1.0909;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 24,16.5 H 22"
|
||||
id="path888"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#2cb22c;stroke-width:2.18182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 20,14 v 1"
|
||||
id="path890"
|
||||
sodipodi:nodetypes="cc"
|
||||
clip-path="none"
|
||||
transform="matrix(0.875,0,0,0.875,-33,-1.25)"
|
||||
inkscape:connector-curvature="0" />
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ce8a24;stroke-width:0.954545;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path936"
|
||||
cx="-29.296165"
|
||||
cy="10.615973"
|
||||
r="1.6027977"
|
||||
clip-path="none" />
|
||||
<circle
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ce8a24;stroke-width:0.954545;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="circle938"
|
||||
cx="-14.137123"
|
||||
cy="5.9967451"
|
||||
r="1.6027977"
|
||||
clip-path="none" />
|
||||
</g>
|
||||
<path
|
||||
class="cls-9"
|
||||
d="m 23.232353,18.0741 -1.2674,-0.907 -0.015,0.027 c 0.03833,-0.2274 0.06148,-0.4572 0.0693,-0.6877 -0.0073,-0.2452 -0.03199,-0.4896 -0.0738,-0.7314 l 0.0074,0.013 1.2576,-0.92 c 0.275446,-0.2018 0.355047,-0.5785 0.1848,-0.8745 l -1.1327,-1.9683 c -0.170254,-0.296 -0.535927,-0.4167 -0.8489,-0.28 l -1.4277,0.6248 0.0124,0.022 c -0.387558,-0.3119 -0.817708,-0.5668 -1.2774,-0.757 l -0.1694,-1.5386 C 18.514053,9.7571 18.227369,9.5002 17.885953,9.5 h -2.271 c -0.341492,10e-5 -0.628287,0.257 -0.6658,0.5964 l -0.17,1.5453 c -0.477874,0.201 -0.923129,0.4721 -1.3211,0.8044 l 0.018,-0.032 -1.4342,-0.61 c -0.31434,-0.1335 -0.678759,-0.01 -0.846,0.2886 l -1.1118,1.98 c -0.167055,0.2979 -0.08336,0.6737 0.1943,0.8725 l 1.2674,0.907 0.0276,-0.049 c -0.03953,0.2327 -0.06322,0.4678 -0.0709,0.7037 0.0069,0.2554 0.03249,0.51 0.0767,0.7616 l -0.021,-0.037 -1.2576,0.9205 c -0.275495,0.2017 -0.355223,0.5783 -0.1851,0.8744 l 1.1327,1.9684 c 0.170418,0.2959 0.536051,0.4162 0.8489,0.2795 l 1.4279,-0.6249 -0.0293,-0.051 c 0.391248,0.32 0.826895,0.5814 1.2933,0.7762 l 0.17,1.5487 c 0.03751,0.3393 0.324184,0.5962 0.6656,0.5964 h 2.271 c 0.341416,-2e-4 0.628095,-0.2571 0.6656,-0.5964 l 0.1705,-1.5484 c 0.47629,-0.1988 0.920456,-0.4672 1.318,-0.7963 l -0.0154,0.027 1.4344,0.61 c 0.314288,0.1334 0.678633,0.01 0.8459,-0.2885 l 1.1117,-1.98 c 0.167077,-0.2977 0.08356,-0.6735 -0.1939,-0.8724 z m -6.4714,0.4685 c -1.656272,0 -2.371671,-2.145 -1.410892,-3.2684 1.001032,-1.1704 3.291346,-0.4321 3.327109,1.1884 0.107235,0.9522 -0.534865,2.0799 -1.916217,2.08 z"
|
||||
id="path158639"
|
||||
style="fill:#f2647e;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:2.3;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccscc" />
|
||||
</svg>
|
After Width: | Height: | Size: 9.4 KiB |
38
freecad/kiconnect/resources/icons/show_all_copper_layers.svg
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="Слой_1" data-name="Слой 1" viewBox="0 0 24 24" version="1.1" sodipodi:docname="show_all_copper_layers.svg" inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)">
|
||||
<sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1609" inkscape:window-height="1286" id="namedview30" showgrid="true" inkscape:zoom="27.961538" inkscape:cx="3.3259971" inkscape:cy="13" inkscape:window-x="0" inkscape:window-y="37" inkscape:window-maximized="0" inkscape:document-rotation="0" inkscape:current-layer="Слой_1">
|
||||
<inkscape:grid type="xygrid" id="grid_kicad" spacingx="0.5" spacingy="0.5" color="#9999ff" opacity="0.13" empspacing="2" />
|
||||
</sodipodi:namedview>
|
||||
<metadata id="metadata43">
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>add_arc</dc:title>
|
||||
</cc:Work>
|
||||
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs id="defs27183">
|
||||
<style id="style27181">.cls-1{fill:#8f8f8f;}.cls-2{fill:#42B8EB;}.cls-3{fill:#f2647e;}.cls-4{fill:#d8d8d8;}</style>
|
||||
</defs>
|
||||
<title id="title27185">show_all_copper_layers</title>
|
||||
<polygon class="cls-1" points="5,18.5 13,12 21,18.5 13,25 " id="polygon27187" transform="translate(-1,-1)" />
|
||||
<polygon class="cls-2" points="5,14.833 13,8.333 21,14.833 13,21.333 " id="polygon27189" transform="translate(-1,-1)" />
|
||||
<polygon class="cls-3" points="5,11.167 13,4.667 21,11.167 13,17.667 " id="polygon27191" transform="translate(-1,-1)" />
|
||||
<polygon class="cls-4" points="5,7.5 13,1 21,7.5 13,14 " id="polygon27193" transform="translate(-1,-1)" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
1052
freecad/kiconnect/resources/icons/update.svg
Normal file
After Width: | Height: | Size: 37 KiB |
104
freecad/kiconnect/resources/translations/README.md
Normal file
|
@ -0,0 +1,104 @@
|
|||
# About translating kiconnect Workbench
|
||||
|
||||
> [!NOTE]
|
||||
> All commands **must** be run in `./freecad/kiconnect/resources/translations/` directory.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> If you want to update/release the files you need to have installed
|
||||
> `lupdate` and `lrelease` from **Qt6** version. Using the versions from
|
||||
> Qt5 is not advised because they're buggy.
|
||||
|
||||
## Updating translations template file
|
||||
|
||||
To update the template file from source files you should use this command:
|
||||
|
||||
```shell
|
||||
./update_translation.sh -U
|
||||
```
|
||||
|
||||
Once done you can commit the changes and upload the new file to CrowdIn platform
|
||||
at <https://crowdin.com/project/freecad-addons> webpage and find the **kiconnect** project.
|
||||
|
||||
## Creating file for missing locale
|
||||
|
||||
### Using script
|
||||
|
||||
To create a file for a new language with all **kiconnect** translatable strings execute
|
||||
the script with `-u` flag plus your locale:
|
||||
|
||||
```shell
|
||||
./update_translation.sh -u ja
|
||||
```
|
||||
|
||||
### Renaming file
|
||||
|
||||
Also you can rename new `kiconnect.ts` file by appending the locale code,
|
||||
for example, `FreeGrid_ja.ts` for Japanese and change
|
||||
|
||||
```xml
|
||||
<TS version="2.1">
|
||||
```
|
||||
|
||||
to
|
||||
|
||||
```xml
|
||||
<TS version="2.1" language="ja" sourcelanguage="en">
|
||||
```
|
||||
|
||||
As of 13/09/2024 the supported locales on FreeCAD
|
||||
(according to `FreeCADGui.supportedLocales()`) are 43:
|
||||
|
||||
```python
|
||||
{'English': 'en', 'Afrikaans': 'af', 'Arabic': 'ar', 'Basque': 'eu',
|
||||
'Belarusian': 'be', 'Bulgarian': 'bg', 'Catalan': 'ca',
|
||||
'Chinese Simplified': 'zh-CN', 'Chinese Traditional': 'zh-TW', 'Croatian': 'hr',
|
||||
'Czech': 'cs', 'Dutch': 'nl', 'Filipino': 'fil', 'Finnish': 'fi', 'French': 'fr',
|
||||
'Galician': 'gl', 'Georgian': 'ka', 'German': 'de', 'Greek': 'el', 'Hungarian': 'hu',
|
||||
'Indonesian': 'id', 'Italian': 'it', 'Japanese': 'ja', 'Kabyle': 'kab',
|
||||
'Korean': 'ko', 'Lithuanian': 'lt', 'Norwegian': 'no', 'Polish': 'pl',
|
||||
'Portuguese': 'pt-PT', 'Portuguese, Brazilian': 'pt-BR', 'Romanian': 'ro',
|
||||
'Russian': 'ru', 'Serbian': 'sr', 'Serbian, Latin': 'sr-CS', 'Slovak': 'sk',
|
||||
'Slovenian': 'sl', 'Spanish': 'es-ES', 'Spanish, Argentina': 'es-AR',
|
||||
'Swedish': 'sv-SE', 'Turkish': 'tr', 'Ukrainian': 'uk', 'Valencian': 'val-ES',
|
||||
'Vietnamese': 'vi'}
|
||||
```
|
||||
|
||||
## Translating
|
||||
|
||||
To edit your language file open your file in `Qt Linguist` from `qt5-tools`/`qt6-tools`
|
||||
package or in a text editor like `xed`, `mousepad`, `gedit`, `nano`, `vim`/`nvim`,
|
||||
`geany` etc. and translate it.
|
||||
|
||||
Alternatively you can visit the **FreeCAD-addons** project on CrowdIn platform
|
||||
at <https://crowdin.com/project/freecad-addons> webpage and find your language,
|
||||
once done, look for the **kiconnect** project.
|
||||
|
||||
## Compiling translations
|
||||
|
||||
To convert all `.ts` files to `.qm` files (merge) you can use this command:
|
||||
|
||||
```shell
|
||||
./update_translation.sh -R
|
||||
```
|
||||
|
||||
If you are a translator that wants to update only their language file
|
||||
to test it on **FreeCAD** before doing a PR you can use this command:
|
||||
|
||||
```shell
|
||||
./update_translation.sh -r ja
|
||||
```
|
||||
|
||||
This will update the `.qm` file for your language (Japanese in this case).
|
||||
|
||||
## Sending translations
|
||||
|
||||
Now you can contribute your translated `.ts` file to **kiconnect** repository,
|
||||
also include the `.qm` file.
|
||||
|
||||
<https://git.oit.cloud/morgan/kiconnect>
|
||||
|
||||
## More information
|
||||
|
||||
You can read more about translating external workbenches here:
|
||||
|
||||
<https://wiki.freecad.org/Translating_an_external_workbench>
|
20
freecad/kiconnect/resources/translations/kiconnect_es-ES.ts
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.1" language="es_ES" sourcelanguage="en">
|
||||
<context>
|
||||
<name>Log</name>
|
||||
<message>
|
||||
<location filename="../../init_gui.py" line="30"/>
|
||||
<source>Switching to kiconnect</source>
|
||||
<translation>Cambiando a entorno de trabajo kiconnect</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../init_gui.py" line="32"/>
|
||||
<source>Run a numpy function:</source>
|
||||
<translation>Ejecutar una función de numpy</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Workbench</name>
|
||||
</context>
|
||||
</TS>
|
140
freecad/kiconnect/resources/translations/update_translation.sh
Executable file
|
@ -0,0 +1,140 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# --------------------------------------------------------------------------------------------------
|
||||
#
|
||||
# Create, update and release translation files.
|
||||
#
|
||||
# Supported locales on FreeCAD <2024-10-14, FreeCADGui.supportedLocales(), total=44>:
|
||||
# {'English': 'en', 'Afrikaans': 'af', 'Arabic': 'ar', 'Basque': 'eu', 'Belarusian': 'be',
|
||||
# 'Bulgarian': 'bg', 'Catalan': 'ca', 'Chinese Simplified': 'zh-CN',
|
||||
# 'Chinese Traditional': 'zh-TW', 'Croatian': 'hr', 'Czech': 'cs', 'Danish': 'da',
|
||||
# 'Dutch': 'nl', 'Filipino': 'fil', 'Finnish': 'fi', 'French': 'fr', 'Galician': 'gl',
|
||||
# 'Georgian': 'ka', 'German': 'de', 'Greek': 'el', 'Hungarian': 'hu', 'Indonesian': 'id',
|
||||
# 'Italian': 'it', 'Japanese': 'ja', 'Kabyle': 'kab', 'Korean': 'ko', 'Lithuanian': 'lt',
|
||||
# 'Norwegian': 'no', 'Polish': 'pl', 'Portuguese': 'pt-PT', 'Portuguese, Brazilian': 'pt-BR',
|
||||
# 'Romanian': 'ro', 'Russian': 'ru', 'Serbian': 'sr', 'Serbian, Latin': 'sr-CS', 'Slovak': 'sk',
|
||||
# 'Slovenian': 'sl', 'Spanish': 'es-ES', 'Spanish, Argentina': 'es-AR', 'Swedish': 'sv-SE',
|
||||
# 'Turkish': 'tr', 'Ukrainian': 'uk', 'Valencian': 'val-ES', 'Vietnamese': 'vi'}
|
||||
#
|
||||
# NOTE: PREPARATION
|
||||
# - Install Qt tools
|
||||
# Debian-based (e.g., Ubuntu): $ sudo apt-get install qttools5-dev-tools pyqt6-dev-tools
|
||||
# Fedora-based: $ sudo dnf install qt6-linguist qt6-devel
|
||||
# Arch-based: $ sudo pacman -S qt6-tools python-pyqt6
|
||||
# - Make the script executable
|
||||
# $ chmod +x update_translation.sh
|
||||
# - The script has to be executed within the `freecad/freegrid/resources/translations` directory.
|
||||
# Executing the script with no flags invokes the help.
|
||||
# $ ./update_translation.sh
|
||||
#
|
||||
# NOTE: WORKFLOW TRANSLATOR (LOCAL)
|
||||
# - Execute the script passing the `-u` flag plus locale code as argument
|
||||
# Only update the file(s) you're translating!
|
||||
# $ ./update_translation.sh -u es-ES
|
||||
# - Do the translation via Qt Linguist and use `File>Release`
|
||||
# - If releasing with the script execute it passing the `-r` flag
|
||||
# plus locale code as argument
|
||||
# $ ./update_translation.sh -r es-ES
|
||||
#
|
||||
# NOTE: WORKFLOW MAINTAINER (CROWDIN)
|
||||
# - Execute the script passing the '-U' flag
|
||||
# $ ./update_translation.sh -U
|
||||
# - Once done, download the translated files, copy them to `freecad/freegrid/resources/translations`
|
||||
# - Upload the updated file to CrowdIn and wait for translators do their thing ;-)
|
||||
# and release all the files to update the changes
|
||||
# $ ./update_translation.sh -R
|
||||
#
|
||||
# --------------------------------------------------------------------------------------------------
|
||||
|
||||
supported_locales=(
|
||||
"en" "af" "ar" "eu" "be" "bg" "ca" "zh-CN" "zh-TW" "hr"
|
||||
"cs" "da" "nl" "fil" "fi" "fr" "gl" "ka" "de" "el"
|
||||
"hu" "id" "it" "ja" "kab" "ko" "lt" "no" "pl" "pt-PT"
|
||||
"pt-BR" "ro" "ru" "sr" "sr-CS" "sk" "sl" "es-ES" "es-AR" "sv-SE"
|
||||
"tr" "uk" "val-ES" "vi"
|
||||
)
|
||||
|
||||
is_locale_supported() {
|
||||
local locale="$1"
|
||||
for supported_locale in "${supported_locales[@]}"; do
|
||||
[ "$supported_locale" == "$locale" ] && return 0
|
||||
done
|
||||
return 1
|
||||
}
|
||||
|
||||
update_locale() {
|
||||
local locale="$1"
|
||||
local u=${locale:+_} # Conditional underscore
|
||||
FILES="../../*.py ../ui/*.ui"
|
||||
|
||||
# NOTE: Execute the right command depending on:
|
||||
# - if it's a locale file or the main, agnostic one
|
||||
[ ! -f "${WB}${u}${locale}.ts" ] && action="Creating" || action="Updating"
|
||||
echo -e "\033[1;34m\n\t<<< ${action} '${WB}${u}${locale}.ts' file >>>\n\033[m"
|
||||
if [ "$u" == "" ]; then
|
||||
eval $LUPDATE "$FILES" -ts "${WB}.ts" # locale-agnostic file
|
||||
else
|
||||
eval $LUPDATE "$FILES" -source-language en -target-language "${locale//-/_}" \
|
||||
-ts "${WB}_${locale}.ts"
|
||||
fi
|
||||
}
|
||||
|
||||
help() {
|
||||
echo -e "\nDescription:"
|
||||
echo -e "\tCreate, update and release translation files."
|
||||
echo -e "\nUsage:"
|
||||
echo -e "\t./update_translation.sh [-R] [-U] [-r <locale>] [-u <locale>]"
|
||||
echo -e "\nFlags:"
|
||||
echo -e " -R\n\tRelease all locales"
|
||||
echo -e " -U\n\tUpdate main translation file (locale agnostic)"
|
||||
echo -e " -r <locale>\n\tRelease the specified locale"
|
||||
echo -e " -u <locale>\n\tUpdate strings for the specified locale"
|
||||
}
|
||||
|
||||
# Main function ------------------------------------------------------------------------------------
|
||||
|
||||
LUPDATE=/usr/lib/qt6/bin/lupdate # from Qt6
|
||||
# LUPDATE=lupdate # from Qt5
|
||||
LRELEASE=/usr/lib/qt6/bin/lrelease # from Qt6
|
||||
# LRELEASE=lrelease # from Qt5
|
||||
WB="kiconnect"
|
||||
|
||||
# Enforce underscore on locales
|
||||
sed -i '3s/-/_/' ${WB}*.ts
|
||||
|
||||
if [ $# -eq 1 ]; then
|
||||
if [ "$1" == "-R" ]; then
|
||||
find . -type f -name '*_*.ts' | while IFS= read -r file; do
|
||||
# Release all locales
|
||||
$LRELEASE "$file"
|
||||
echo
|
||||
done
|
||||
elif [ "$1" == "-U" ]; then
|
||||
# Update main file (agnostic)
|
||||
update_locale
|
||||
else
|
||||
help
|
||||
fi
|
||||
elif [ $# -eq 2 ]; then
|
||||
LOCALE="$2"
|
||||
if is_locale_supported "$LOCALE"; then
|
||||
if [ "$1" == "-r" ]; then
|
||||
# Release locale (creation of *.qm file from *.ts file)
|
||||
$LRELEASE "${WB}_${LOCALE}.ts"
|
||||
elif [ "$1" == "-u" ]; then
|
||||
# Update main & locale files
|
||||
update_locale
|
||||
update_locale "$LOCALE"
|
||||
fi
|
||||
else
|
||||
echo "Verify your language code. Case sensitive."
|
||||
echo "If it's correct, ask a maintainer to add support for your language on FreeCAD."
|
||||
echo -e "\nSupported locales, '\033[1;34mFreeCADGui.supportedLocales()\033[m': \033[1;33m"
|
||||
for locale in $(printf "%s\n" "${supported_locales[@]}" | sort); do
|
||||
echo -n "$locale "
|
||||
done
|
||||
echo
|
||||
fi
|
||||
else
|
||||
help
|
||||
fi
|
0
freecad/kiconnect/resources/ui/.gitkeep
Normal file
5
freecad/kiconnect/settings.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
import os
|
||||
|
||||
BOARD_THICKNESS = 0.80
|
||||
ICONPATH = os.path.join(os.path.dirname(__file__), "resources", 'icons')
|
||||
KICAD9_3DMODEL_DIR = '/usr/share/kicad/3dmodels/'
|
1
freecad/kiconnect/version.py
Normal file
|
@ -0,0 +1 @@
|
|||
__version__ = "0.1.0"
|