7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:35:31 +00:00

Fix SWIG QA

This commit is contained in:
Seth Hillbrand 2025-02-24 14:13:36 -08:00
parent ea520da1c8
commit 3b24b5b74b
2 changed files with 10 additions and 11 deletions
pcbnew/python/swig

View File

@ -70,28 +70,25 @@
def GetFieldText(self, key):
""" Returns Field text with a given key if it exists, throws KeyError otherwise. """
if self.HasFieldByName(key):
return self.GetFieldByName(key).GetText()
if self.HasField(key):
return self.GetField(key).GetText()
else:
raise KeyError("Field not found: " + key)
def GetFieldShownText(self, key):
""" Returns Field shown text with a given key if it exists, throws KeyError otherwise. """
if self.HasFieldByName(key):
return self.GetFieldByName(key).GetShownText(False)
if self.HasField(key):
return self.GetField(key).GetShownText(False)
else:
raise KeyError("Field not found: " + key)
def SetField(self, key, value):
if self.HasFieldByName(key):
self.GetFieldByName(key).SetText(value)
if self.HasField(key):
self.GetField(key).SetText(value)
else:
field = PCB_FIELD(self, self.GetNextFieldId(), key)
field = PCB_FIELD(self, FIELD_T_USER, key)
field.SetText(value)
self.AddField(field)
def HasField(self, key):
return self.HasFieldByName(key)
self.Add(field)
def SetFields(self, fields):
""" Sets footprint fields map. """

View File

@ -1,7 +1,9 @@
%include pcb_field.h
%include template_fieldnames.h
%{
#include <pcb_field.h>
#include <template_fieldnames.h>
%}