├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report_ja.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── LICENSE ├── Makefile ├── README-ja.md ├── README-ko.md ├── README-zh.md ├── README.md ├── TkEasyGUI ├── __init__.py ├── dialogs.py ├── icon_default.py ├── locale_easy.py ├── utils.py ├── version.py ├── widgets.py ├── widgets_framescrollable.py ├── widgets_image.py └── widgets_window.py ├── docs ├── README.md ├── TkEasyGUI │ ├── README.md │ ├── dialogs-py.md │ ├── locale_easy-py.md │ ├── utils-py.md │ ├── version-py.md │ ├── widgets-py.md │ ├── widgets_image-py.md │ └── widgets_window-py.md ├── custom_events.md ├── dev.md ├── image │ ├── icon256.png │ ├── icon64.png │ ├── logo-button.jpg │ ├── sample1.png │ ├── sample2.png │ ├── sample3.png │ ├── tkeasygui-shot.png │ ├── tkeasygui-shot1000.jpg │ └── tkeasygui-shot640.jpg ├── installation_trouble.md └── scripts │ ├── elements.json │ ├── icon │ ├── .DS_Store │ ├── icon.ico │ ├── make_icon.py │ └── tkeasygui-org.png │ ├── readme_maker.py │ └── template │ └── README.md ├── element2json.py ├── makedoc.py ├── mypy.ini ├── pyproject.toml ├── requirements.txt ├── tests ├── README.md ├── a.jpg ├── b.jpg ├── basic_app │ ├── cells.py │ ├── circle_drawer.py │ ├── counter.py │ ├── crud_test.py │ ├── flight_booker.py │ ├── temperature_converter.py │ └── timer.py ├── browse │ ├── calendar_browse.py │ └── file_browse.py ├── calc.py ├── canvas_test.py ├── clock.py ├── clock_post_event_after.py ├── column_test.py ├── combo_readonly_test.py ├── contextmenu_test.py ├── element_justification_test.py ├── event_hooks.py ├── event_loop_test.py ├── file_viewer.py ├── filebrowse_test.py ├── fontlist.py ├── framescrollable.py ├── graph_image.py ├── image_screenshot.py ├── image_size_test.py ├── image_test.py ├── input │ ├── input_cursor.py │ ├── input_test.py │ ├── input_validation.py │ └── input_width.py ├── keep_on_top.py ├── layout_test.py ├── lifegame.py ├── listbox │ └── list_test.py ├── listbrowse_test.py ├── localize_test.py ├── login_password.py ├── many_buttons.py ├── many_change_test.py ├── menu_test.py ├── multiline │ ├── multiline_cursor.py │ ├── multiline_right.py │ └── multiline_test.py ├── nokey.py ├── notepad.py ├── opencv_camera.py ├── paint_compatible.py ├── paint_eg.py ├── popup │ ├── ask_name.py │ ├── buttons.py │ ├── get_file_n_dir.py │ ├── hello_popup.py │ ├── input_text.py │ ├── popup_get_file_sp_file_types.py │ ├── popup_icon_test.py │ ├── popup_input.py │ ├── popup_memo_text.py │ ├── popup_ok_cancel_test.py │ └── popup_yes_no_test.py ├── popup_get_form_test.py ├── popup_test.py ├── progressbar │ ├── progressbar_indeterminate.py │ ├── progressbar_n_slider.py │ └── progressbar_test.py ├── push_test.py ├── radio_n_checkbox.py ├── set_readonly.py ├── simple_dialog.py ├── simple_text.py ├── slider_test.py ├── table │ ├── fruits.csv │ ├── many_cols_table.py │ └── table_test.py ├── text │ ├── text_click_test.py │ ├── text_clock.py │ └── text_color_change_test.py ├── thread_start_test.py ├── ui_test.py ├── utils │ └── popup_screenshot_samples.py ├── version_info.py ├── vpush_test.py └── window_key_events.py └── update_version.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/.github/ISSUE_TEMPLATE/bug_report_ja.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/Makefile -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/README-ja.md -------------------------------------------------------------------------------- /README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/README-ko.md -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/README.md -------------------------------------------------------------------------------- /TkEasyGUI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/__init__.py -------------------------------------------------------------------------------- /TkEasyGUI/dialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/dialogs.py -------------------------------------------------------------------------------- /TkEasyGUI/icon_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/icon_default.py -------------------------------------------------------------------------------- /TkEasyGUI/locale_easy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/locale_easy.py -------------------------------------------------------------------------------- /TkEasyGUI/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/utils.py -------------------------------------------------------------------------------- /TkEasyGUI/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/version.py -------------------------------------------------------------------------------- /TkEasyGUI/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/widgets.py -------------------------------------------------------------------------------- /TkEasyGUI/widgets_framescrollable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/widgets_framescrollable.py -------------------------------------------------------------------------------- /TkEasyGUI/widgets_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/widgets_image.py -------------------------------------------------------------------------------- /TkEasyGUI/widgets_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/TkEasyGUI/widgets_window.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/README.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/dialogs-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/dialogs-py.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/locale_easy-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/locale_easy-py.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/utils-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/utils-py.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/version-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/version-py.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/widgets-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/widgets-py.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/widgets_image-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/widgets_image-py.md -------------------------------------------------------------------------------- /docs/TkEasyGUI/widgets_window-py.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/TkEasyGUI/widgets_window-py.md -------------------------------------------------------------------------------- /docs/custom_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/custom_events.md -------------------------------------------------------------------------------- /docs/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/dev.md -------------------------------------------------------------------------------- /docs/image/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/icon256.png -------------------------------------------------------------------------------- /docs/image/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/icon64.png -------------------------------------------------------------------------------- /docs/image/logo-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/logo-button.jpg -------------------------------------------------------------------------------- /docs/image/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/sample1.png -------------------------------------------------------------------------------- /docs/image/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/sample2.png -------------------------------------------------------------------------------- /docs/image/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/sample3.png -------------------------------------------------------------------------------- /docs/image/tkeasygui-shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/tkeasygui-shot.png -------------------------------------------------------------------------------- /docs/image/tkeasygui-shot1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/tkeasygui-shot1000.jpg -------------------------------------------------------------------------------- /docs/image/tkeasygui-shot640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/image/tkeasygui-shot640.jpg -------------------------------------------------------------------------------- /docs/installation_trouble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/installation_trouble.md -------------------------------------------------------------------------------- /docs/scripts/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/scripts/elements.json -------------------------------------------------------------------------------- /docs/scripts/icon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/scripts/icon/.DS_Store -------------------------------------------------------------------------------- /docs/scripts/icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/scripts/icon/icon.ico -------------------------------------------------------------------------------- /docs/scripts/icon/make_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/scripts/icon/make_icon.py -------------------------------------------------------------------------------- /docs/scripts/icon/tkeasygui-org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/scripts/icon/tkeasygui-org.png -------------------------------------------------------------------------------- /docs/scripts/readme_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/scripts/readme_maker.py -------------------------------------------------------------------------------- /docs/scripts/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/docs/scripts/template/README.md -------------------------------------------------------------------------------- /element2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/element2json.py -------------------------------------------------------------------------------- /makedoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/makedoc.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/a.jpg -------------------------------------------------------------------------------- /tests/b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/b.jpg -------------------------------------------------------------------------------- /tests/basic_app/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/basic_app/cells.py -------------------------------------------------------------------------------- /tests/basic_app/circle_drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/basic_app/circle_drawer.py -------------------------------------------------------------------------------- /tests/basic_app/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/basic_app/counter.py -------------------------------------------------------------------------------- /tests/basic_app/crud_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/basic_app/crud_test.py -------------------------------------------------------------------------------- /tests/basic_app/flight_booker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/basic_app/flight_booker.py -------------------------------------------------------------------------------- /tests/basic_app/temperature_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/basic_app/temperature_converter.py -------------------------------------------------------------------------------- /tests/basic_app/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/basic_app/timer.py -------------------------------------------------------------------------------- /tests/browse/calendar_browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/browse/calendar_browse.py -------------------------------------------------------------------------------- /tests/browse/file_browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/browse/file_browse.py -------------------------------------------------------------------------------- /tests/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/calc.py -------------------------------------------------------------------------------- /tests/canvas_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/canvas_test.py -------------------------------------------------------------------------------- /tests/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/clock.py -------------------------------------------------------------------------------- /tests/clock_post_event_after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/clock_post_event_after.py -------------------------------------------------------------------------------- /tests/column_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/column_test.py -------------------------------------------------------------------------------- /tests/combo_readonly_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/combo_readonly_test.py -------------------------------------------------------------------------------- /tests/contextmenu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/contextmenu_test.py -------------------------------------------------------------------------------- /tests/element_justification_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/element_justification_test.py -------------------------------------------------------------------------------- /tests/event_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/event_hooks.py -------------------------------------------------------------------------------- /tests/event_loop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/event_loop_test.py -------------------------------------------------------------------------------- /tests/file_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/file_viewer.py -------------------------------------------------------------------------------- /tests/filebrowse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/filebrowse_test.py -------------------------------------------------------------------------------- /tests/fontlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/fontlist.py -------------------------------------------------------------------------------- /tests/framescrollable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/framescrollable.py -------------------------------------------------------------------------------- /tests/graph_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/graph_image.py -------------------------------------------------------------------------------- /tests/image_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/image_screenshot.py -------------------------------------------------------------------------------- /tests/image_size_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/image_size_test.py -------------------------------------------------------------------------------- /tests/image_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/image_test.py -------------------------------------------------------------------------------- /tests/input/input_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/input/input_cursor.py -------------------------------------------------------------------------------- /tests/input/input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/input/input_test.py -------------------------------------------------------------------------------- /tests/input/input_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/input/input_validation.py -------------------------------------------------------------------------------- /tests/input/input_width.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/input/input_width.py -------------------------------------------------------------------------------- /tests/keep_on_top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/keep_on_top.py -------------------------------------------------------------------------------- /tests/layout_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/layout_test.py -------------------------------------------------------------------------------- /tests/lifegame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/lifegame.py -------------------------------------------------------------------------------- /tests/listbox/list_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/listbox/list_test.py -------------------------------------------------------------------------------- /tests/listbrowse_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/listbrowse_test.py -------------------------------------------------------------------------------- /tests/localize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/localize_test.py -------------------------------------------------------------------------------- /tests/login_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/login_password.py -------------------------------------------------------------------------------- /tests/many_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/many_buttons.py -------------------------------------------------------------------------------- /tests/many_change_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/many_change_test.py -------------------------------------------------------------------------------- /tests/menu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/menu_test.py -------------------------------------------------------------------------------- /tests/multiline/multiline_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/multiline/multiline_cursor.py -------------------------------------------------------------------------------- /tests/multiline/multiline_right.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/multiline/multiline_right.py -------------------------------------------------------------------------------- /tests/multiline/multiline_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/multiline/multiline_test.py -------------------------------------------------------------------------------- /tests/nokey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/nokey.py -------------------------------------------------------------------------------- /tests/notepad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/notepad.py -------------------------------------------------------------------------------- /tests/opencv_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/opencv_camera.py -------------------------------------------------------------------------------- /tests/paint_compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/paint_compatible.py -------------------------------------------------------------------------------- /tests/paint_eg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/paint_eg.py -------------------------------------------------------------------------------- /tests/popup/ask_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/ask_name.py -------------------------------------------------------------------------------- /tests/popup/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/buttons.py -------------------------------------------------------------------------------- /tests/popup/get_file_n_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/get_file_n_dir.py -------------------------------------------------------------------------------- /tests/popup/hello_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/hello_popup.py -------------------------------------------------------------------------------- /tests/popup/input_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/input_text.py -------------------------------------------------------------------------------- /tests/popup/popup_get_file_sp_file_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/popup_get_file_sp_file_types.py -------------------------------------------------------------------------------- /tests/popup/popup_icon_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/popup_icon_test.py -------------------------------------------------------------------------------- /tests/popup/popup_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/popup_input.py -------------------------------------------------------------------------------- /tests/popup/popup_memo_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/popup_memo_text.py -------------------------------------------------------------------------------- /tests/popup/popup_ok_cancel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/popup_ok_cancel_test.py -------------------------------------------------------------------------------- /tests/popup/popup_yes_no_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup/popup_yes_no_test.py -------------------------------------------------------------------------------- /tests/popup_get_form_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup_get_form_test.py -------------------------------------------------------------------------------- /tests/popup_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/popup_test.py -------------------------------------------------------------------------------- /tests/progressbar/progressbar_indeterminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/progressbar/progressbar_indeterminate.py -------------------------------------------------------------------------------- /tests/progressbar/progressbar_n_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/progressbar/progressbar_n_slider.py -------------------------------------------------------------------------------- /tests/progressbar/progressbar_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/progressbar/progressbar_test.py -------------------------------------------------------------------------------- /tests/push_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/push_test.py -------------------------------------------------------------------------------- /tests/radio_n_checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/radio_n_checkbox.py -------------------------------------------------------------------------------- /tests/set_readonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/set_readonly.py -------------------------------------------------------------------------------- /tests/simple_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/simple_dialog.py -------------------------------------------------------------------------------- /tests/simple_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/simple_text.py -------------------------------------------------------------------------------- /tests/slider_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/slider_test.py -------------------------------------------------------------------------------- /tests/table/fruits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/table/fruits.csv -------------------------------------------------------------------------------- /tests/table/many_cols_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/table/many_cols_table.py -------------------------------------------------------------------------------- /tests/table/table_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/table/table_test.py -------------------------------------------------------------------------------- /tests/text/text_click_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/text/text_click_test.py -------------------------------------------------------------------------------- /tests/text/text_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/text/text_clock.py -------------------------------------------------------------------------------- /tests/text/text_color_change_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/text/text_color_change_test.py -------------------------------------------------------------------------------- /tests/thread_start_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/thread_start_test.py -------------------------------------------------------------------------------- /tests/ui_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/ui_test.py -------------------------------------------------------------------------------- /tests/utils/popup_screenshot_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/utils/popup_screenshot_samples.py -------------------------------------------------------------------------------- /tests/version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/version_info.py -------------------------------------------------------------------------------- /tests/vpush_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/vpush_test.py -------------------------------------------------------------------------------- /tests/window_key_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/tests/window_key_events.py -------------------------------------------------------------------------------- /update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kujirahand/tkeasygui-python/HEAD/update_version.py --------------------------------------------------------------------------------