├── .gitignore ├── LICENSE ├── example.png ├── examples ├── bool_example.py ├── color_example.py ├── date_example.py ├── files_example.py ├── float_example.py ├── folder_example.py ├── image_return_example.py ├── int_example.py ├── list_example.py ├── password_example.py ├── selected_example.py ├── str_example.py └── time_example.py ├── functogui ├── __init__.py ├── core │ ├── __init__.py │ ├── app.py │ ├── inspect_fuction.py │ ├── main_layout.py │ └── ui_types.py ├── main.kv ├── return.kv ├── return_widgets │ ├── __init__.py │ ├── image_return.py │ └── str_return.py ├── styles.kv ├── styles.py ├── ui_widgets.kv └── ui_widgets │ ├── __init__.py │ ├── ui_base.py │ ├── ui_bool.py │ ├── ui_color.py │ ├── ui_date.py │ ├── ui_list.py │ ├── ui_numeric.py │ ├── ui_os.py │ ├── ui_seleted.py │ ├── ui_str.py │ └── ui_time.py ├── install.bat ├── readme.md ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/example.png -------------------------------------------------------------------------------- /examples/bool_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/bool_example.py -------------------------------------------------------------------------------- /examples/color_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/color_example.py -------------------------------------------------------------------------------- /examples/date_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/date_example.py -------------------------------------------------------------------------------- /examples/files_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/files_example.py -------------------------------------------------------------------------------- /examples/float_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/float_example.py -------------------------------------------------------------------------------- /examples/folder_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/folder_example.py -------------------------------------------------------------------------------- /examples/image_return_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/image_return_example.py -------------------------------------------------------------------------------- /examples/int_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/int_example.py -------------------------------------------------------------------------------- /examples/list_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/list_example.py -------------------------------------------------------------------------------- /examples/password_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/password_example.py -------------------------------------------------------------------------------- /examples/selected_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/selected_example.py -------------------------------------------------------------------------------- /examples/str_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/str_example.py -------------------------------------------------------------------------------- /examples/time_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/examples/time_example.py -------------------------------------------------------------------------------- /functogui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/__init__.py -------------------------------------------------------------------------------- /functogui/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functogui/core/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/core/app.py -------------------------------------------------------------------------------- /functogui/core/inspect_fuction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/core/inspect_fuction.py -------------------------------------------------------------------------------- /functogui/core/main_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/core/main_layout.py -------------------------------------------------------------------------------- /functogui/core/ui_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/core/ui_types.py -------------------------------------------------------------------------------- /functogui/main.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/main.kv -------------------------------------------------------------------------------- /functogui/return.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/return.kv -------------------------------------------------------------------------------- /functogui/return_widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/return_widgets/__init__.py -------------------------------------------------------------------------------- /functogui/return_widgets/image_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/return_widgets/image_return.py -------------------------------------------------------------------------------- /functogui/return_widgets/str_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/return_widgets/str_return.py -------------------------------------------------------------------------------- /functogui/styles.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/styles.kv -------------------------------------------------------------------------------- /functogui/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/styles.py -------------------------------------------------------------------------------- /functogui/ui_widgets.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets.kv -------------------------------------------------------------------------------- /functogui/ui_widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/__init__.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_base.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_bool.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_color.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_date.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_list.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_numeric.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_os.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_seleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_seleted.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_str.py -------------------------------------------------------------------------------- /functogui/ui_widgets/ui_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/functogui/ui_widgets/ui_time.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/install.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | kivy 2 | plyer -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offerrall/FuncToGUI/HEAD/setup.py --------------------------------------------------------------------------------