├── .idea ├── misc.xml └── modules.xml ├── LICENSE.md ├── README.md ├── index.html ├── main.js ├── other ├── css │ ├── buttons.css │ └── css1.css ├── example.asar ├── image │ ├── logo.icns │ └── logo.ico ├── jquery-pretty-radio-checkbox │ ├── css │ │ └── jquery-labelauty.css │ ├── images │ │ ├── input-checked.png │ │ └── input-unchecked.png │ ├── index.html │ └── js │ │ ├── jquery-1.8.3.min.js │ │ └── jquery-labelauty.js ├── jquery │ └── jquery-3.3.1.js └── parameter_save.json ├── package.json └── renderer.js /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/main.js -------------------------------------------------------------------------------- /other/css/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/css/buttons.css -------------------------------------------------------------------------------- /other/css/css1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/css/css1.css -------------------------------------------------------------------------------- /other/example.asar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/example.asar -------------------------------------------------------------------------------- /other/image/logo.icns: -------------------------------------------------------------------------------- 1 | icns -------------------------------------------------------------------------------- /other/image/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/image/logo.ico -------------------------------------------------------------------------------- /other/jquery-pretty-radio-checkbox/css/jquery-labelauty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/jquery-pretty-radio-checkbox/css/jquery-labelauty.css -------------------------------------------------------------------------------- /other/jquery-pretty-radio-checkbox/images/input-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/jquery-pretty-radio-checkbox/images/input-checked.png -------------------------------------------------------------------------------- /other/jquery-pretty-radio-checkbox/images/input-unchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/jquery-pretty-radio-checkbox/images/input-unchecked.png -------------------------------------------------------------------------------- /other/jquery-pretty-radio-checkbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/jquery-pretty-radio-checkbox/index.html -------------------------------------------------------------------------------- /other/jquery-pretty-radio-checkbox/js/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/jquery-pretty-radio-checkbox/js/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /other/jquery-pretty-radio-checkbox/js/jquery-labelauty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/jquery-pretty-radio-checkbox/js/jquery-labelauty.js -------------------------------------------------------------------------------- /other/jquery/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/jquery/jquery-3.3.1.js -------------------------------------------------------------------------------- /other/parameter_save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/other/parameter_save.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/package.json -------------------------------------------------------------------------------- /renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyinchigithub/monkeyGUI/HEAD/renderer.js --------------------------------------------------------------------------------