├── MANIFEST.in ├── screenshot ├── demo1.png ├── demo2.png ├── demo3.png ├── findgui.png └── SimpleDemo.png ├── FormUI ├── __init__.py ├── BuilderUtil.py ├── WorkThread.py ├── FormUI.py ├── FormControlBase.py ├── ControlBase.py ├── Frame.py ├── Builder.py ├── FormControl.py └── Form.py ├── .idea ├── vcs.xml ├── encodings.xml ├── misc.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── modules.xml └── pyFormUI.iml ├── Demo ├── customcontrol.xml ├── demo_menu.xml ├── SimpleDemo.xml ├── SimpleDemo.py ├── demo_common.xml ├── demo_others.xml ├── findgui.xml ├── CustomControl.py ├── demo.xml ├── FindGui.py └── Demo.py ├── setup.py ├── LICENSE └── Readme.md /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include Demo/*.xml 2 | -------------------------------------------------------------------------------- /screenshot/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffchau1979/pyFormUI/HEAD/screenshot/demo1.png -------------------------------------------------------------------------------- /screenshot/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffchau1979/pyFormUI/HEAD/screenshot/demo2.png -------------------------------------------------------------------------------- /screenshot/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffchau1979/pyFormUI/HEAD/screenshot/demo3.png -------------------------------------------------------------------------------- /screenshot/findgui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffchau1979/pyFormUI/HEAD/screenshot/findgui.png -------------------------------------------------------------------------------- /screenshot/SimpleDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffchau1979/pyFormUI/HEAD/screenshot/SimpleDemo.png -------------------------------------------------------------------------------- /FormUI/__init__.py: -------------------------------------------------------------------------------- 1 | from Builder import Builder 2 | from Form import WindowHandler 3 | from FormUI import FormUI 4 | from FormControlBase import * -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Demo/customcontrol.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 |