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:
parent
ea520da1c8
commit
3b24b5b74b
pcbnew/python/swig
@ -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. """
|
||||
|
@ -1,7 +1,9 @@
|
||||
|
||||
|
||||
%include pcb_field.h
|
||||
%include template_fieldnames.h
|
||||
%{
|
||||
#include <pcb_field.h>
|
||||
#include <template_fieldnames.h>
|
||||
%}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user