gitextract_7y9q4d6t/ ├── .gitignore ├── LICENSE ├── README.md ├── kivystudio/ │ ├── __init__.py │ ├── assembler.py │ ├── behaviors/ │ │ ├── __init__.py │ │ ├── highlightbehavior.py │ │ ├── hoverbehavior.py │ │ └── hoverinfobehavior.py │ ├── components/ │ │ ├── __init__.py │ │ ├── codeplace/ │ │ │ ├── __init__.py │ │ │ ├── code.kv │ │ │ ├── codeplace.py │ │ │ └── tabs/ │ │ │ ├── __init__.py │ │ │ ├── codetab.py │ │ │ ├── errortab.py │ │ │ ├── welcome.kv │ │ │ └── welcometab.py │ │ ├── emulator_area/ │ │ │ ├── __init__.py │ │ │ ├── emulator.kv │ │ │ └── screen_drop.py │ │ ├── screens/ │ │ │ ├── __init__.py │ │ │ ├── screen.kv │ │ │ └── screen_test.py │ │ ├── sibebar/ │ │ │ ├── __init__.py │ │ │ ├── fileexplorer/ │ │ │ │ ├── __init__.py │ │ │ │ └── filewidgets.py │ │ │ ├── generalsearch.py │ │ │ ├── gitmanager.py │ │ │ └── sidebar.kv │ │ ├── terminal/ │ │ │ ├── __init__.py │ │ │ ├── command_terminal.py │ │ │ └── logger_space.py │ │ └── topmenu/ │ │ ├── __init__.py │ │ ├── dropmenu.kv │ │ └── dropmenu.py │ ├── libs/ │ │ ├── __init__.py │ │ └── resizablebehavior/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── modal_cursor.py │ │ └── resize.py │ ├── main.kv │ ├── main.py │ ├── parser/ │ │ └── __init__.py │ ├── resources/ │ │ └── font-awesome.fontd │ ├── settings.py │ ├── tools/ │ │ ├── __init__.py │ │ ├── iconfonts/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── iconfonts.py │ │ │ └── test/ │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.fontd │ │ │ └── main.py │ │ ├── infolabel.py │ │ ├── logger.py │ │ └── quicktools.py │ └── widgets/ │ ├── __init__.py │ ├── codeinput/ │ │ ├── __init__.py │ │ ├── code_extra_behavior.py │ │ ├── code_find.py │ │ ├── codeinput.kv │ │ ├── codeinput.py │ │ ├── styles/ │ │ │ ├── __init__.py │ │ │ └── native_tweak.py │ │ └── tools.py │ ├── dropdown.py │ ├── filemanager/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── filechooserthumbview/ │ │ │ ├── LICENSE │ │ │ └── __init__.py │ │ └── filemanager.kv │ ├── iconlabel.py │ ├── rightclick_drop.py │ ├── searchinput.py │ ├── splitter.py │ └── tabbedpanel.py ├── project/ │ ├── prjtTest1.htm │ └── prjtTest1.js ├── repoTest1.js ├── repoTest2.htm ├── setup.py ├── tests/ │ ├── test_codeplace.py │ └── test_emulator.py └── to-do.txt