Metadata-Version: 2.4
Name: pygtk-form
Version: 0.0.3
Summary: Create forms very easily for your scripts with GTK !
Home-page: https://github.com/cestoliv/pygtk_form
Author: Olivier Cartier
Author-email: cestoliv@chevro.fr
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary


# PYGTK FORM

Create forms very easily for your scripts with GTK !
Just call a function, with the data you want to recover, and a callback!

![pygtk_form examples](https://github.com/cestoliv/pygtk_form/blob/main/images/presentation.png)

Install the module with:

	pip install pygtk_form
	
## Read the documentation please!
In addition, it takes time to write ...
[The documentation in question](https://cestoliv.github.io/pygtk_form/)

## Example
![pygtk_form examples](https://raw.githubusercontent.com/cestoliv/pygtk_form/main/images/cool_form.png)

And here is the (very simple code) !

	import pygtk_form

	def say_hello(data):
		if data:
			print("Hello " + data["pseudo"] + ", I know you are using " + data["distribution"] + "!")
		else:
			print("Ho no ... You canceled ...")

	pygtk_form.spawn_form({
		"title": "Cool form",
		"default_size": [400, 300],
		"theme": "windows_light",
		"resizable": True,
		"fields": [
			{
				"id": "pseudo",
				"type": "text",
				"text": "",
				"label": "Your username",
				"max_length": 255
			},
			{
				"id": "distribution",
				"type": "combobox",
				"label": "What distribution do you use ?",
				"default": "manjaro",
				"items": [
					{"id": "fedora", "name": "Fedora"},
					{"id": "ubuntu", "name": "Ubuntu"},
					{"id": "debian", "name": "Debian"},
					{"id": "manjaro", "name": "Manjaro"},
					{"id": "arch", "name": "Arch (BTW)"}
				]
			}
		]
	}, say_hello)
