SYMBOL INDEX (104 symbols across 10 files) FILE: gui/gui.py function btn_clicked (line 28) | def btn_clicked(): function select_path (line 78) | def select_path(): function know_more_clicked (line 86) | def know_more_clicked(event): function make_label (line 93) | def make_label(master, x, y, h, w, *args, **kwargs): FILE: tests/test_utils.py function test_assets_path (line 6) | def test_assets_path(): function test_find_between (line 10) | def test_find_between(): function test_download_image (line 18) | def test_download_image(): FILE: tkdesigner/cli.py function main (line 23) | def main(): FILE: tkdesigner/designer.py class Designer (line 8) | class Designer: method __init__ (line 9) | def __init__(self, token, file_key, output_path: Path): method to_code (line 15) | def to_code(self) -> str: method design (line 29) | def design(self): FILE: tkdesigner/figma/custom_elements.py class Button (line 10) | class Button(Rectangle): method __init__ (line 11) | def __init__(self, node, frame, image_path, *, id_): method to_code (line 17) | def to_code(self): class ButtonHover (line 37) | class ButtonHover(Rectangle): method __init__ (line 38) | def __init__(self, node, frame, image_path): method to_code (line 49) | def to_code(self): class Text (line 72) | class Text(Vector): method __init__ (line 73) | def __init__(self, node, frame): method characters (line 84) | def characters(self) -> str: method style (line 98) | def style(self): method character_style_overrides (line 103) | def character_style_overrides(self): method style_override_table (line 107) | def style_override_table(self): method font_property (line 111) | def font_property(self): method to_code (line 122) | def to_code(self): class Image (line 135) | class Image(Vector): method __init__ (line 136) | def __init__(self, node, frame, image_path, *, id_): method to_code (line 148) | def to_code(self): class TextEntry (line 160) | class TextEntry(Vector): method __init__ (line 161) | def __init__(self, node, frame, image_path, *, id_): method to_code (line 184) | def to_code(self): FILE: tkdesigner/figma/endpoints.py class Files (line 6) | class Files: method __init__ (line 12) | def __init__(self, token, file_key): method __str__ (line 16) | def __str__(self): method get_file (line 19) | def get_file(self) -> dict: method get_image (line 34) | def get_image(self, item_id) -> str: FILE: tkdesigner/figma/frame.py class Frame (line 12) | class Frame(Node): method __init__ (line 13) | def __init__(self, node, figma_file, output_path, frameCount=0): method create_element (line 35) | def create_element(self, element): method children (line 116) | def children(self): method color (line 120) | def color(self) -> str: method size (line 130) | def size(self) -> tuple: method to_code (line 138) | def to_code(self, template): class Group (line 147) | class Group(Frame): method __init__ (line 148) | def __init__(self, node): class Component (line 152) | class Component(Frame): method __init__ (line 153) | def __init__(self, node): class ComponentSet (line 157) | class ComponentSet(Frame): method __init__ (line 158) | def __init__(self, node): class Instance (line 162) | class Instance(Frame): method __init__ (line 163) | def __init__(self, node): method component_id (line 167) | def component_id(self) -> str: FILE: tkdesigner/figma/node.py class Node (line 1) | class Node: method __init__ (line 2) | def __init__(self, node: dict): method id (line 6) | def id(self) -> str: method name (line 10) | def name(self) -> str: method visible (line 14) | def visible(self) -> bool: method type (line 20) | def type(self) -> str: method plugin_data (line 24) | def plugin_data(self): method shared_plugin_data (line 28) | def shared_plugin_data(self): method get (line 31) | def get(self, key, default=None): class Document (line 35) | class Document(Node): method __init__ (line 36) | def __init__(self, node, root="window"): method children (line 41) | def children(self): class Canvas (line 46) | class Canvas(Node): method __init__ (line 47) | def __init__(self, node): method children (line 51) | def children(self): method background_color (line 56) | def background_color(self): method prototype_start_node_id (line 60) | def prototype_start_node_id(self) -> str: method export_settings (line 64) | def export_settings(self): method generate (line 67) | def generate(self): class Slice (line 71) | class Slice(Node): method __init__ (line 72) | def __init__(self, node): method export_settings (line 76) | def export_settings(self): method absolute_bounding_box (line 81) | def absolute_bounding_box(self): method size (line 86) | def size(self): method relative_transform (line 91) | def relative_transform(self): FILE: tkdesigner/figma/vector_elements.py class Vector (line 4) | class Vector(Node): method __init__ (line 5) | def __init__(self, node): method color (line 8) | def color(self) -> str: method size (line 18) | def size(self): method position (line 24) | def position(self, frame): class Star (line 39) | class Star(Vector): method __init__ (line 40) | def __init__(self, node): class Ellipse (line 43) | class Ellipse(Vector): method __init__ (line 44) | def __init__(self, node): class RegularPolygon (line 48) | class RegularPolygon(Vector): method __init__ (line 49) | def __init__(self, node): class Rectangle (line 53) | class Rectangle(Vector): method __init__ (line 54) | def __init__(self, node, frame): method corner_radius (line 61) | def corner_radius(self): method rectangle_corner_radii (line 65) | def rectangle_corner_radii(self): method to_code (line 68) | def to_code(self): class Line (line 80) | class Line(Rectangle): method __init__ (line 81) | def __init__(self, node, frame): method color (line 84) | def color(self) -> str: method size (line 94) | def size(self): method position (line 98) | def position(self, frame): class UnknownElement (line 103) | class UnknownElement(Vector): method __init__ (line 104) | def __init__(self, node, frame): method to_code (line 109) | def to_code(self): FILE: tkdesigner/utils.py function find_between (line 9) | def find_between(s, first, last): function download_image (line 19) | def download_image(url, image_path):