├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.zh.md ├── figures └── python_editor.png ├── install.cmd ├── qtpyeditor ├── Utilities │ ├── __init__.py │ └── autocomp.py ├── __init__.py ├── codeedit │ ├── __init__.py │ ├── basecodeedit.py │ └── pythonedit.py ├── codeeditor │ ├── __init__.py │ ├── abstracteditor.py │ ├── baseeditor.py │ └── pythoneditor.py ├── find_gotoline.py ├── highlighters │ ├── __init__.py │ └── python.py ├── icons │ ├── autocomp │ │ ├── class.png │ │ ├── function.png │ │ ├── instance.png │ │ ├── keyword.png │ │ ├── module.png │ │ ├── param.png │ │ ├── path.png │ │ ├── property.png │ │ └── statement.png │ ├── breakpoint.svg │ ├── copy.svg │ ├── debug.svg │ ├── format.svg │ ├── help.svg │ ├── python.svg │ ├── run.svg │ ├── save.svg │ └── spate.svg ├── linenumber.py ├── syntaxana.py ├── translations │ ├── qt_zh_CN.qm │ └── qt_zh_CN.ts └── ui │ ├── __init__.py │ ├── findinpath.py │ ├── formeditor.py │ ├── formeditor.ui │ ├── gotoline.py │ └── gotoline.ui ├── requirements.txt ├── setup.py ├── test.py ├── test_files └── test_file.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/README.zh.md -------------------------------------------------------------------------------- /figures/python_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/figures/python_editor.png -------------------------------------------------------------------------------- /install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/install.cmd -------------------------------------------------------------------------------- /qtpyeditor/Utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/Utilities/__init__.py -------------------------------------------------------------------------------- /qtpyeditor/Utilities/autocomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/Utilities/autocomp.py -------------------------------------------------------------------------------- /qtpyeditor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/__init__.py -------------------------------------------------------------------------------- /qtpyeditor/codeedit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/codeedit/__init__.py -------------------------------------------------------------------------------- /qtpyeditor/codeedit/basecodeedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/codeedit/basecodeedit.py -------------------------------------------------------------------------------- /qtpyeditor/codeedit/pythonedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/codeedit/pythonedit.py -------------------------------------------------------------------------------- /qtpyeditor/codeeditor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/codeeditor/__init__.py -------------------------------------------------------------------------------- /qtpyeditor/codeeditor/abstracteditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/codeeditor/abstracteditor.py -------------------------------------------------------------------------------- /qtpyeditor/codeeditor/baseeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/codeeditor/baseeditor.py -------------------------------------------------------------------------------- /qtpyeditor/codeeditor/pythoneditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/codeeditor/pythoneditor.py -------------------------------------------------------------------------------- /qtpyeditor/find_gotoline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/find_gotoline.py -------------------------------------------------------------------------------- /qtpyeditor/highlighters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/highlighters/__init__.py -------------------------------------------------------------------------------- /qtpyeditor/highlighters/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/highlighters/python.py -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/class.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/function.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/instance.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/keyword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/keyword.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/module.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/param.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/path.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/property.png -------------------------------------------------------------------------------- /qtpyeditor/icons/autocomp/statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/autocomp/statement.png -------------------------------------------------------------------------------- /qtpyeditor/icons/breakpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/breakpoint.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/copy.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/debug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/debug.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/format.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/help.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/python.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/run.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/save.svg -------------------------------------------------------------------------------- /qtpyeditor/icons/spate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/icons/spate.svg -------------------------------------------------------------------------------- /qtpyeditor/linenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/linenumber.py -------------------------------------------------------------------------------- /qtpyeditor/syntaxana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/syntaxana.py -------------------------------------------------------------------------------- /qtpyeditor/translations/qt_zh_CN.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/translations/qt_zh_CN.qm -------------------------------------------------------------------------------- /qtpyeditor/translations/qt_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/translations/qt_zh_CN.ts -------------------------------------------------------------------------------- /qtpyeditor/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/ui/__init__.py -------------------------------------------------------------------------------- /qtpyeditor/ui/findinpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/ui/findinpath.py -------------------------------------------------------------------------------- /qtpyeditor/ui/formeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/ui/formeditor.py -------------------------------------------------------------------------------- /qtpyeditor/ui/formeditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/ui/formeditor.ui -------------------------------------------------------------------------------- /qtpyeditor/ui/gotoline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/ui/gotoline.py -------------------------------------------------------------------------------- /qtpyeditor/ui/gotoline.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/qtpyeditor/ui/gotoline.ui -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | qtpy 2 | jedi 3 | pmgwidgets -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/test.py -------------------------------------------------------------------------------- /test_files/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/test_files/test_file.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h-mole/qtpyeditor/HEAD/tox.ini --------------------------------------------------------------------------------