KiCad Pcbnew Python Scripting
All Classes Namespaces Files Functions Variables Properties
Public Member Functions | Properties | List of all members
pcbnew.DRAWINGS Class Reference
Inheritance diagram for pcbnew.DRAWINGS:
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)
 
def __iter__ (self)
 

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< BOARD_ITEM * > class.

Definition at line 12826 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 12942 of file pcbnew.py.

Here is the caller graph for this function:

Member Function Documentation

◆ __bool__()

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

Definition at line 12842 of file pcbnew.py.

◆ __delitem__()

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

Definition at line 12865 of file pcbnew.py.

Here is the caller graph for this function:

◆ __delslice__()

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

Definition at line 12861 of file pcbnew.py.

◆ __getitem__()

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

Definition at line 12872 of file pcbnew.py.

Here is the caller graph for this function:

◆ __getslice__()

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

Definition at line 12850 of file pcbnew.py.

◆ __iter__() [1/2]

def pcbnew.DRAWINGS.__iter__ (   self)

Definition at line 12835 of file pcbnew.py.

◆ __iter__() [2/2]

def pcbnew.DRAWINGS.__iter__ (   self)

Definition at line 12989 of file pcbnew.py.

◆ __len__()

def pcbnew.DRAWINGS.__len__ (   self)
__len__(DRAWINGS self) -> std::deque< BOARD_ITEM * >::size_type

Definition at line 12846 of file pcbnew.py.

◆ __nonzero__()

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

Definition at line 12838 of file pcbnew.py.

◆ __setitem__()

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

Definition at line 12879 of file pcbnew.py.

Here is the caller graph for this function:

◆ __setslice__()

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

Definition at line 12854 of file pcbnew.py.

Here is the caller graph for this function:

◆ append()

def pcbnew.DRAWINGS.append (   self,
  x 
)
append(DRAWINGS self, BOARD_ITEM x)

Definition at line 12891 of file pcbnew.py.

◆ assign()

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

Definition at line 12963 of file pcbnew.py.

◆ back()

def pcbnew.DRAWINGS.back (   self)
back(DRAWINGS self) -> BOARD_ITEM

Definition at line 12959 of file pcbnew.py.

◆ begin()

def pcbnew.DRAWINGS.begin (   self)
begin(DRAWINGS self) -> std::deque< BOARD_ITEM * >::iterator

Definition at line 12907 of file pcbnew.py.

◆ clear()

def pcbnew.DRAWINGS.clear (   self)
clear(DRAWINGS self)

Definition at line 12923 of file pcbnew.py.

◆ empty()

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

Definition at line 12895 of file pcbnew.py.

◆ end()

def pcbnew.DRAWINGS.end (   self)
end(DRAWINGS self) -> std::deque< BOARD_ITEM * >::iterator

Definition at line 12911 of file pcbnew.py.

◆ erase()

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

Definition at line 12935 of file pcbnew.py.

Here is the caller graph for this function:

◆ front()

def pcbnew.DRAWINGS.front (   self)
front(DRAWINGS self) -> BOARD_ITEM

Definition at line 12955 of file pcbnew.py.

◆ get_allocator()

def pcbnew.DRAWINGS.get_allocator (   self)
get_allocator(DRAWINGS self) -> std::deque< BOARD_ITEM * >::allocator_type

Definition at line 12927 of file pcbnew.py.

◆ insert()

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

Definition at line 12974 of file pcbnew.py.

Here is the caller graph for this function:

◆ iterator()

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

Definition at line 12832 of file pcbnew.py.

Here is the caller graph for this function:

◆ pop()

def pcbnew.DRAWINGS.pop (   self)
pop(DRAWINGS self) -> BOARD_ITEM

Definition at line 12887 of file pcbnew.py.

◆ pop_back()

def pcbnew.DRAWINGS.pop_back (   self)
pop_back(DRAWINGS self)

Definition at line 12931 of file pcbnew.py.

◆ pop_front()

def pcbnew.DRAWINGS.pop_front (   self)
pop_front(DRAWINGS self)

Definition at line 12981 of file pcbnew.py.

◆ push_back()

def pcbnew.DRAWINGS.push_back (   self,
  x 
)
push_back(DRAWINGS self, BOARD_ITEM x)

Definition at line 12951 of file pcbnew.py.

◆ push_front()

def pcbnew.DRAWINGS.push_front (   self,
  x 
)
push_front(DRAWINGS self, BOARD_ITEM x)

Definition at line 12985 of file pcbnew.py.

◆ rbegin()

def pcbnew.DRAWINGS.rbegin (   self)
rbegin(DRAWINGS self) -> std::deque< BOARD_ITEM * >::reverse_iterator

Definition at line 12915 of file pcbnew.py.

◆ rend()

def pcbnew.DRAWINGS.rend (   self)
rend(DRAWINGS self) -> std::deque< BOARD_ITEM * >::reverse_iterator

Definition at line 12919 of file pcbnew.py.

◆ resize()

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

Definition at line 12967 of file pcbnew.py.

Here is the caller graph for this function:

◆ size()

def pcbnew.DRAWINGS.size (   self)
size(DRAWINGS self) -> std::deque< BOARD_ITEM * >::size_type

Definition at line 12899 of file pcbnew.py.

◆ swap()

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

Definition at line 12903 of file pcbnew.py.

Property Documentation

◆ thisown

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

Definition at line 12829 of file pcbnew.py.


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