KiCad Pcbnew Python Scripting
All Classes Namespaces Files Functions Variables Properties
Public Member Functions | Properties | List of all members
pcbnew.PCB_FIELDS Class Reference
Inheritance diagram for pcbnew.PCB_FIELDS:
Inheritance graph
[legend]

Public Member Functions

def iterator (self)
 
def __iter__ (self)
 
def __nonzero__ (self)
 
def __bool__ (self)
 
def __len__ (self)
 
def __getslice__ (self, i, j)
 
def __setslice__ (self, *args)
 
def __delslice__ (self, i, j)
 
def __delitem__ (self, *args)
 
def __getitem__ (self, *args)
 
def __setitem__ (self, *args)
 
def pop (self)
 
def append (self, x)
 
def empty (self)
 
def size (self)
 
def swap (self, v)
 
def begin (self)
 
def end (self)
 
def rbegin (self)
 
def rend (self)
 
def clear (self)
 
def get_allocator (self)
 
def pop_back (self)
 
def erase (self, *args)
 
def __init__ (self, *args)
 
def push_back (self, x)
 
def front (self)
 
def back (self)
 
def assign (self, n, x)
 
def resize (self, *args)
 
def insert (self, *args)
 
def pop_front (self)
 
def push_front (self, x)
 

Properties

property thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
 

Detailed Description

Proxy of C++ std::deque< PCB_FIELD * > class.

Definition at line 13130 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

def pcbnew.PCB_FIELDS.__init__ (   self,
args 
)
    __init__(PCB_FIELDS self) -> PCB_FIELDS
    __init__(PCB_FIELDS self, PCB_FIELDS other) -> PCB_FIELDS
    __init__(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type size) -> PCB_FIELDS
    __init__(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type size, PCB_FIELD value) -> PCB_FIELDS

Definition at line 13246 of file pcbnew.py.

Here is the caller graph for this function:

Member Function Documentation

◆ __bool__()

def pcbnew.PCB_FIELDS.__bool__ (   self)
__bool__(PCB_FIELDS self) -> bool

Definition at line 13146 of file pcbnew.py.

◆ __delitem__()

def pcbnew.PCB_FIELDS.__delitem__ (   self,
args 
)
    __delitem__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i)
    __delitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice)

Definition at line 13169 of file pcbnew.py.

Here is the caller graph for this function:

◆ __delslice__()

def pcbnew.PCB_FIELDS.__delslice__ (   self,
  i,
  j 
)
__delslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j)

Definition at line 13165 of file pcbnew.py.

◆ __getitem__()

def pcbnew.PCB_FIELDS.__getitem__ (   self,
args 
)
    __getitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice) -> PCB_FIELDS
    __getitem__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i) -> PCB_FIELD

Definition at line 13176 of file pcbnew.py.

Here is the caller graph for this function:

◆ __getslice__()

def pcbnew.PCB_FIELDS.__getslice__ (   self,
  i,
  j 
)
__getslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j) -> PCB_FIELDS

Definition at line 13154 of file pcbnew.py.

◆ __iter__()

def pcbnew.PCB_FIELDS.__iter__ (   self)

Definition at line 13139 of file pcbnew.py.

◆ __len__()

def pcbnew.PCB_FIELDS.__len__ (   self)
__len__(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::size_type

Definition at line 13150 of file pcbnew.py.

◆ __nonzero__()

def pcbnew.PCB_FIELDS.__nonzero__ (   self)
__nonzero__(PCB_FIELDS self) -> bool

Definition at line 13142 of file pcbnew.py.

◆ __setitem__()

def pcbnew.PCB_FIELDS.__setitem__ (   self,
args 
)
    __setitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice, PCB_FIELDS v)
    __setitem__(PCB_FIELDS self, SWIGPY_SLICEOBJECT * slice)
    __setitem__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, PCB_FIELD x)

Definition at line 13183 of file pcbnew.py.

Here is the caller graph for this function:

◆ __setslice__()

def pcbnew.PCB_FIELDS.__setslice__ (   self,
args 
)
    __setslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j)
    __setslice__(PCB_FIELDS self, std::deque< PCB_FIELD * >::difference_type i, std::deque< PCB_FIELD * >::difference_type j, PCB_FIELDS v)

Definition at line 13158 of file pcbnew.py.

Here is the caller graph for this function:

◆ append()

def pcbnew.PCB_FIELDS.append (   self,
  x 
)
append(PCB_FIELDS self, PCB_FIELD x)

Definition at line 13195 of file pcbnew.py.

◆ assign()

def pcbnew.PCB_FIELDS.assign (   self,
  n,
  x 
)
assign(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type n, PCB_FIELD x)

Definition at line 13267 of file pcbnew.py.

◆ back()

def pcbnew.PCB_FIELDS.back (   self)
back(PCB_FIELDS self) -> PCB_FIELD

Definition at line 13263 of file pcbnew.py.

◆ begin()

def pcbnew.PCB_FIELDS.begin (   self)
begin(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::iterator

Definition at line 13211 of file pcbnew.py.

◆ clear()

def pcbnew.PCB_FIELDS.clear (   self)
clear(PCB_FIELDS self)

Definition at line 13227 of file pcbnew.py.

◆ empty()

def pcbnew.PCB_FIELDS.empty (   self)
empty(PCB_FIELDS self) -> bool

Definition at line 13199 of file pcbnew.py.

◆ end()

def pcbnew.PCB_FIELDS.end (   self)
end(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::iterator

Definition at line 13215 of file pcbnew.py.

◆ erase()

def pcbnew.PCB_FIELDS.erase (   self,
args 
)
    erase(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator pos) -> std::deque< PCB_FIELD * >::iterator
    erase(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator first, std::deque< PCB_FIELD * >::iterator last) -> std::deque< PCB_FIELD * >::iterator

Definition at line 13239 of file pcbnew.py.

Here is the caller graph for this function:

◆ front()

def pcbnew.PCB_FIELDS.front (   self)
front(PCB_FIELDS self) -> PCB_FIELD

Definition at line 13259 of file pcbnew.py.

◆ get_allocator()

def pcbnew.PCB_FIELDS.get_allocator (   self)
get_allocator(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::allocator_type

Definition at line 13231 of file pcbnew.py.

◆ insert()

def pcbnew.PCB_FIELDS.insert (   self,
args 
)
    insert(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator pos, PCB_FIELD x) -> std::deque< PCB_FIELD * >::iterator
    insert(PCB_FIELDS self, std::deque< PCB_FIELD * >::iterator pos, std::deque< PCB_FIELD * >::size_type n, PCB_FIELD x)

Definition at line 13278 of file pcbnew.py.

Here is the caller graph for this function:

◆ iterator()

def pcbnew.PCB_FIELDS.iterator (   self)
iterator(PCB_FIELDS self) -> SwigPyIterator

Definition at line 13136 of file pcbnew.py.

Here is the caller graph for this function:

◆ pop()

def pcbnew.PCB_FIELDS.pop (   self)
pop(PCB_FIELDS self) -> PCB_FIELD

Definition at line 13191 of file pcbnew.py.

◆ pop_back()

def pcbnew.PCB_FIELDS.pop_back (   self)
pop_back(PCB_FIELDS self)

Definition at line 13235 of file pcbnew.py.

◆ pop_front()

def pcbnew.PCB_FIELDS.pop_front (   self)
pop_front(PCB_FIELDS self)

Definition at line 13285 of file pcbnew.py.

◆ push_back()

def pcbnew.PCB_FIELDS.push_back (   self,
  x 
)
push_back(PCB_FIELDS self, PCB_FIELD x)

Definition at line 13255 of file pcbnew.py.

◆ push_front()

def pcbnew.PCB_FIELDS.push_front (   self,
  x 
)
push_front(PCB_FIELDS self, PCB_FIELD x)

Definition at line 13289 of file pcbnew.py.

◆ rbegin()

def pcbnew.PCB_FIELDS.rbegin (   self)
rbegin(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::reverse_iterator

Definition at line 13219 of file pcbnew.py.

◆ rend()

def pcbnew.PCB_FIELDS.rend (   self)
rend(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::reverse_iterator

Definition at line 13223 of file pcbnew.py.

◆ resize()

def pcbnew.PCB_FIELDS.resize (   self,
args 
)
    resize(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type new_size)
    resize(PCB_FIELDS self, std::deque< PCB_FIELD * >::size_type new_size, PCB_FIELD x)

Definition at line 13271 of file pcbnew.py.

Here is the caller graph for this function:

◆ size()

def pcbnew.PCB_FIELDS.size (   self)
size(PCB_FIELDS self) -> std::deque< PCB_FIELD * >::size_type

Definition at line 13203 of file pcbnew.py.

◆ swap()

def pcbnew.PCB_FIELDS.swap (   self,
  v 
)
swap(PCB_FIELDS self, PCB_FIELDS v)

Definition at line 13207 of file pcbnew.py.

Property Documentation

◆ thisown

property pcbnew.PCB_FIELDS.thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
static

Definition at line 13133 of file pcbnew.py.


The documentation for this class was generated from the following file: