Metadata-Version: 2.1
Name: PySimpleGUIDesigner
Version: 0.0.2
Summary: PySimpleGUI designer, that uses transpiler to produce code from Qt Designer xml file.
Home-page: https://github.com/nngogol/PySimpleGUI_designer
Author: Nikolay Gogol
Author-email: nngogol09@gmail.com
License: GNU-GPL
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Multimedia :: Graphics
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: PySide2
Requires-Dist: click (>=7.0)
Requires-Dist: PySimpleGUI

# PySimeplGUI Designer

## Install:
```bash
pip install PySimpleGUIDesigner
```

## Usage
Run GUI:
```bash
PySimpleGUIDesigner
```

Use options:
```bash
PySimpleGUIDesigner --xmlfile="~/folder1/test.ui" --objname="somegroupBox"
```

Help:
```bash
PySimpleGUIDesigner --help
```
Output:
```
Usage: main.py [OPTIONS]

Options:
  -x, --run              just run gui example
  -xmlfile PATH          abs path to ui file
  -objname TEXT          object name of target container
  -nobadwidgets          forget about bad widgets. Default - True
  -o, --outputfile PATH  file to output compiled PySimpleGUI ui
  -pp_mouse              compile++ option - do the mouse clicks events
  -pp_keys               compile++ option - do the keys events
  --help                 Show this message and exit.


```
---
## Usage (source code)

Download this repo, cd into directory.

Run gui:
```bash
python3 main.py
```

Compile by using options:
```bash
python3 main.py --xmlfile="~/folder1/test.ui" --objname="somegroupBox"
```


