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 12788 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 12904 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 12804 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 12827 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 12823 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 12834 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 12812 of file pcbnew.py.

◆ __iter__() [1/2]

def pcbnew.DRAWINGS.__iter__ (   self)

Definition at line 12797 of file pcbnew.py.

◆ __iter__() [2/2]

def pcbnew.DRAWINGS.__iter__ (   self)

Definition at line 12951 of file pcbnew.py.

◆ __len__()

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

Definition at line 12808 of file pcbnew.py.

◆ __nonzero__()

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

Definition at line 12800 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 12841 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 12816 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 12853 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 12925 of file pcbnew.py.

◆ back()

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

Definition at line 12921 of file pcbnew.py.

◆ begin()

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

Definition at line 12869 of file pcbnew.py.

◆ clear()

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

Definition at line 12885 of file pcbnew.py.

◆ empty()

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

Definition at line 12857 of file pcbnew.py.

◆ end()

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

Definition at line 12873 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 12897 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 12917 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 12889 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 12936 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 12794 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 12849 of file pcbnew.py.

◆ pop_back()

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

Definition at line 12893 of file pcbnew.py.

◆ pop_front()

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

Definition at line 12943 of file pcbnew.py.

◆ push_back()

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

Definition at line 12913 of file pcbnew.py.

◆ push_front()

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

Definition at line 12947 of file pcbnew.py.

◆ rbegin()

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

Definition at line 12877 of file pcbnew.py.

◆ rend()

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

Definition at line 12881 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 12929 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 12861 of file pcbnew.py.

◆ swap()

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

Definition at line 12865 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 12791 of file pcbnew.py.


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