You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

478 lines
24 KiB

10 years ago
7 years ago
10 years ago
10 years ago
9 years ago
7 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
6 years ago
9 years ago
10 years ago
6 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
7 years ago
7 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
6 years ago
9 years ago
6 years ago
9 years ago
6 years ago
9 years ago
9 years ago
6 years ago
9 years ago
6 years ago
9 years ago
6 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
6 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
6 years ago
9 years ago
10 years ago
6 years ago
9 years ago
10 years ago
9 years ago
  1. Gooey (Beta)
  2. =====
  3. Turn (almost) any Python 2 or 3 Console Program into a GUI application with one line
  4. <p align="center">
  5. <img src="https://cloud.githubusercontent.com/assets/1408720/7904381/f54f97f6-07c5-11e5-9bcb-c3c102920769.png" />
  6. </p>
  7. # Gooey now supports Python 3!!
  8. Table of Contents
  9. -----------------
  10. - [Gooey](#gooey)
  11. - [Table of contents](#table-of-contents)
  12. - [Latest Update](#latest-update)
  13. - [Quick Start](#quick-start)
  14. - [Installation Instructions](#installation-instructions)
  15. - [Usage](#usage)
  16. - [Examples](#examples)
  17. - [What It Is](#what-is-it)
  18. - [Why Is It](#why)
  19. - [Who is this for](#who-is-this-for)
  20. - [How does it work](#how-does-it-work)
  21. - [Internationalization](#internationalization)
  22. - [Global Configuration](#global-configuration)
  23. - [Local Configuarion](#local-configuration)
  24. - [Run Modes](#run-modes)
  25. - [Full/Advanced](#advanced)
  26. - [Basic](#basic)
  27. - [No Config](#no-config)
  28. - [Input Validation](#input-validation)
  29. - [Customizing Icons](#customizing-icons)
  30. - [Packaging](#packaging)
  31. - [Screenshots](#screenshots)
  32. - [Contributing](#wanna-help)
  33. - [Image Credits](#image-credits)
  34. ----------------
  35. ## Quick Start
  36. ### Installation instructions
  37. The easiest way to install Gooey is via `pip`
  38. pip install Gooey
  39. Alternatively, you can install Gooey by cloning the project to your local directory
  40. git clone https://github.com/chriskiehl/Gooey.git
  41. run `setup.py`
  42. python setup.py install
  43. **NOTE:** Python 2 users must manually install WxPython! Unfortunately, this cannot be done as part of the pip installation and should be manually downloaded from the [wxPython website](http://www.wxpython.org/download.php).
  44. ### Usage
  45. Gooey is attached to your code via a simple decorator on whichever method has your `argparse` declarations (usually `main`).
  46. from gooey import Gooey
  47. @Gooey <--- all it takes! :)
  48. def main():
  49. parser = ArgumentParser(...)
  50. # rest of code
  51. Different styling and functionality can be configured by passing arguments into the decorator.
  52. # options
  53. @Gooey(advanced=Boolean, # toggle whether to show advanced config or not
  54. language=language_string, # Translations configurable via json
  55. show_config=True, # skip config screens all together
  56. target=executable_cmd, # Explicitly set the subprocess executable arguments
  57. program_name='name', # Defaults to script name
  58. program_description, # Defaults to ArgParse Description
  59. default_size=(610, 530), # starting size of the GUI
  60. required_cols=1, # number of columns in the "Required" section
  61. optional_cols=2, # number of columbs in the "Optional" section
  62. dump_build_config=False, # Dump the JSON Gooey uses to configure itself
  63. load_build_config=None, # Loads a JSON Gooey-generated configuration
  64. monospace_display=False) # Uses a mono-spaced font in the output screen
  65. )
  66. def main():
  67. parser = ArgumentParser(...)
  68. # rest of code
  69. See: [How does it Work](#how-does-it-work) section for details on each option.
  70. Gooey will do its best to choose sensible widget defaults to display in the GUI. However, if more fine tuning is desired, you can use the drop-in replacement `GooeyParser` in place of `ArgumentParser`. This lets you control which widget displays in the GUI. See: [GooeyParser](#gooeyparser)
  71. from gooey import Gooey, GooeyParser
  72. @Gooey
  73. def main():
  74. parser = GooeyParser(description="My Cool GUI Program!")
  75. parser.add_argument('Filename', widget="FileChooser")
  76. parser.add_argument('Date', widget="DateChooser")
  77. ...
  78. ### Examples
  79. Gooey downloaded and installed? Great! Wanna see it in action? Head over the the [Examples Repository](https://github.com/chriskiehl/GooeyExamples) to download a few ready-to-go example scripts. They'll give you a quick tour of all Gooey's various layouts, widgets, and features.
  80. [Direct Download](https://github.com/chriskiehl/GooeyExamples/archive/master.zip)
  81. What is it?
  82. -----------
  83. Gooey converts your Console Applications into end-user-friendly GUI applications. It lets you focus on building robust, configurable programs in a familiar way, all without having to worry about how it will be presented to and interacted with by your average user.
  84. Why?
  85. ---
  86. Because as much as we love the command prompt, the rest of the world looks at it like an ugly relic from the early '80s. On top of that, more often than not programs need to do more than just one thing, and that means giving options, which previously meant either building a GUI, or trying to explain how to supply arguments to a Console Application. Gooey was made to (hopefully) solve those problems. It makes programs easy to use, and pretty to look at!
  87. Who is this for?
  88. ----------------
  89. If you're building utilities for yourself, other programmers, or something which produces a result that you want to capture and pipe over to another console application (e.g. *nix philosophy utils), Gooey probably isn't the tool for you. However, if you're building 'run and done,' around-the-office-style scripts, things that shovel bits from point A to point B, or simply something that's targeted at a non-programmer, Gooey is the perfect tool for the job. It lets you build as complex of an application as your heart desires all while getting the GUI side for free.
  90. How does it work?
  91. -----------------
  92. Gooey is attached to your code via a simple decorator on whichever method has your `argparse` declarations.
  93. @Gooey
  94. def my_run_func():
  95. parser = ArgumentParser(...)
  96. # rest of code
  97. At run-time, it parses your Python script for all references to `ArgumentParser`. (The older `optparse` is currently not supported.) These references are then extracted, assigned a `component type` based on the `'action'` they provide, and finally used to assemble the GUI.
  98. #### Mappings:
  99. Gooey does its best to choose sensible defaults based on the options it finds. Currently, `ArgumentParser._actions` are mapped to the following `WX` components.
  100. | Parser Action | Widget | Example |
  101. |:----------------------|-----------|------|
  102. | store | TextCtrl | <img src="https://cloud.githubusercontent.com/assets/1408720/7904380/f54e9f5e-07c5-11e5-86e5-82f011c538cf.png"/>|
  103. | store_const | CheckBox | <img src="https://cloud.githubusercontent.com/assets/1408720/7904367/f538c850-07c5-11e5-8cbe-864badfa54a9.png"/>|
  104. | store_true| CheckBox | <img src="https://cloud.githubusercontent.com/assets/1408720/7904367/f538c850-07c5-11e5-8cbe-864badfa54a9.png"/>|
  105. | store_False | CheckBox| <img src="https://cloud.githubusercontent.com/assets/1408720/7904367/f538c850-07c5-11e5-8cbe-864badfa54a9.png"/> |
  106. | append | TextCtrl | <img src="https://cloud.githubusercontent.com/assets/1408720/7904380/f54e9f5e-07c5-11e5-86e5-82f011c538cf.png"/> |
  107. | count| DropDown &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | <img src="https://cloud.githubusercontent.com/assets/1408720/7904371/f53ccbe4-07c5-11e5-80e5-510e2aa22922.png"/> |
  108. | Mutually Exclusive Group | RadioGroup | <img src="https://cloud.githubusercontent.com/assets/1408720/7904383/f553feb8-07c5-11e5-9d5b-eaa4772075a9.png"/>
  109. |choice &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;| DropDown | <img src="https://cloud.githubusercontent.com/assets/1408720/7904379/f54e4da6-07c5-11e5-9e66-d8e6d7f18ac6.png"/> |
  110. ### GooeyParser
  111. If the above defaults aren't cutting it, you can control the exact widget type by using the drop-in `ArgumentParser` replacement `GooeyParser`. This gives you the additional keyword argument `widget`, to which you can supply the name of the component you want to display. Best part? You don't have to change any of your `argparse` code to use it. Drop it in, and you're good to go.
  112. **Example:**
  113. from argparse import ArgumentParser
  114. ....
  115. def main():
  116. parser = ArgumentParser(description="My Cool Gooey App!")
  117. parser.add_argument('filename', help="name of the file to process")
  118. Given then above, Gooey would select a normal `TextField` as the widget type like this:
  119. <p align="center">
  120. <img src="https://cloud.githubusercontent.com/assets/1408720/7904368/f5393e20-07c5-11e5-88e9-c153fc3ecfaa.PNG">
  121. </p>
  122. However, by dropping in `GooeyParser` and supplying a `widget` name, you can display a much more user friendly `FileChooser`
  123. from gooey import GooeyParser
  124. ....
  125. def main():
  126. parser = GooeyParser(description="My Cool Gooey App!")
  127. parser.add_argument('filename', help="name of the file to process", widget='FileChooser')
  128. <p align="center"><img src="https://cloud.githubusercontent.com/assets/1408720/7904370/f53ae23e-07c5-11e5-8757-c8aa6f3013b5.PNG"></p>
  129. **Custom Widgets:**
  130. | Widget | Example |
  131. |----------------|------------------------------|
  132. | DirChooser/FileChooser | <p align="center"><img src="https://cloud.githubusercontent.com/assets/1408720/7904377/f5483b28-07c5-11e5-9d01-1935635fc22d.gif" width="400"></p> |
  133. | DateChooser &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;| <p align="center"><img src="https://cloud.githubusercontent.com/assets/1408720/7904376/f544756a-07c5-11e5-86d6-862ac146ad35.gif" width="400"></p> |
  134. | PasswordField | <p align="center"><img src="https://user-images.githubusercontent.com/1408720/28953722-eae72cca-788e-11e7-8fa1-9a1ef332a053.png" width="400"></p> |
  135. | Listbox | ![image](https://user-images.githubusercontent.com/1408720/31590191-fadd06f2-b1c0-11e7-9a49-7cbf0c6d33d1.png) |
  136. Internationalization
  137. --------------------
  138. <img src="https://cloud.githubusercontent.com/assets/1408720/7904365/f52e9f1a-07c5-11e5-8f31-36a8fc14ac02.jpg" align="right" />
  139. Gooey is international ready and easily ported to your host language. Languages are controlled via an argument to the `Gooey` decorator.
  140. @Gooey(language='russian')
  141. def main():
  142. ...
  143. All program text is stored externally in `json` files. So adding new langauge support is as easy as pasting a few key/value pairs in the `gooey/languages/` directory.
  144. Thanks to some awesome [contributers](https://github.com/chriskiehl/Gooey/graphs/contributors), Gooey currently comes pre-stocked with the following language sets:
  145. - English
  146. - Dutch
  147. - French
  148. - Portuguese
  149. Want to add another one? Submit a [pull request!](https://github.com/chriskiehl/Gooey/compare)
  150. -------------------------------------------
  151. Global Configuration
  152. --------------------
  153. Just about everything in Gooey's overall look and feel can be customized by passing arguments to the decorator.
  154. | Parameter | Summary |
  155. |-----------|---------|
  156. | encoding | Text encoding to use when displaying characters (default: 'utf-8') |
  157. | use_legacy_titles | Rewrites the default argparse group name from "Positional" to "Required". This is primarily for retaining backward compatibilty with previous versions of Gooey (which had poor support/awareness of groups and did its own naive bucketing of arguments). |
  158. | advanced | Toggles whether to show the 'full' configuration screen, or a simplified version |
  159. | show_config | Skips the configuration all together and runs the program immediately |
  160. | language | Tells Gooey which language set to load from the `gooey/languages` directory.|
  161. | target | Tells Gooey how to re-invoke itself. By default Gooey will find python, but this allows you to specify the program (and arguments if supplied).|
  162. |program_name | The name displayed in the title bar of the GUI window. If not supplied, the title defaults to the script name pulled from `sys.argv[0]`. |
  163. | program_description | Sets the text displayed in the top panel of the `Settings` screen. Defaults to the description pulled from `ArgumentParser`. |
  164. | default_size | Initial size of the window |
  165. | required_cols | Controls how many columns are in the Required Arguments section <br> :warning: **Deprecation notice:** See [Group Parameters](#group-configuration) for modern layout controls|
  166. | optional_cols | Controls how many columns are in the Optional Arguments section <br> :warning: **Deprecation notice:** See [Group Parameters](#group-configuration) for modern layout controls|
  167. | dump_build_config | Saves a `json` copy of its build configuration on disk for reuse/editing |
  168. | load_build_config | Loads a `json` copy of its build configuration from disk |
  169. | monospace_display | Uses a mono-spaced font in the output screen <br> :warning: **Deprecation notice:** See [Group Parameters](#group-configuration) for modern font configuration|
  170. | image_dir | Path to the directory in which Gooey should look for custom images/icons |
  171. | language_dir | Path to the directory in which Gooey should look for custom languages files |
  172. | disable_stop_button | Disable the `Stop` button when running |
  173. | progress_regex | A text regex used to pattern match runtime progress information. See: [Showing Progress](#showing-progress) for a detailed how-to |
  174. | progress_expr | A python expression applied to any matches found via the `progress_regex`. See: [Showing Progress](#showing-progress) for a detailed how-to |
  175. | disable_progress_bar_animation | Disable the progress bar |
  176. | navigation | Sets the "navigation" style of Gooey's top level window. <br>Options: <table> <thead> <tr><th>TABBED</th><th>SIDEBAR</th></tr></thead> <tbody> <tr> <td><img src="https://user-images.githubusercontent.com/1408720/34464826-2a946ba2-ee47-11e7-92a4-4afeb49dc9ca.png" width="200" height="auto"></td><td><img src="https://user-images.githubusercontent.com/1408720/34464847-9918fbb0-ee47-11e7-8d5f-0d42631c2bc0.png" width="200" height="auto"></td></tr></tbody></table>|
  177. | navigation_title | <img src="https://user-images.githubusercontent.com/1408720/34472159-1bfedbd0-ef10-11e7-8bc3-b6d69febb8c3.png" width="250" height="auto" align="right"> Controls the heading title above the SideBar's navigation pane. Defaults to: "Actions" |
  178. | show_sidebar | Show/Hide the sidebar in when navigation mode == `SIDEBAR` |
  179. | body_bg_color | HEX value of the main Gooey window |
  180. | header_bg_color | HEX value of the header background |
  181. | header_height | height in pixels of the header |
  182. | header_show_title | Show/Hide the header title |
  183. | header_show_subtitle | Show/Hide the header subtitle |
  184. | footer_bg_color | HEX value of the Footer background |
  185. | sidebar_bg_color | HEX value of the Sidebar's background |
  186. | terminal_panel_color | HEX value of the terminal's panel |
  187. | terminal_font_color | HEX value of the font displayed in Gooey's terminal |
  188. | terminal_font_family | Name of the Font Family to use in the terminal |
  189. | terminal_font_weight | Weight of the font (NORMAL|BOLD) |
  190. | terminal_font_size | Point size of the font displayed in the terminal |
  191. | error_color | HEX value of the text displayed when a validation error occurs |
  192. Group Configuration
  193. -------------------
  194. Run Modes
  195. ---------
  196. Gooey has a handful of presentation modes so you can tailor its layout to your content type and user's level or experience.
  197. ### Advanced
  198. The default view is the "full" or "advanced" configuration screen. It has two different layouts depending on the type of command line interface it's wrapping. For most applications, the flat layout will be the one to go with, as its layout matches best to the familiar CLI schema of a primary command followed by many options (e.g. Curl, FFMPEG).
  199. On the other side is the Column Layout. This one is best suited for CLIs that have multiple paths or are made up of multiple little tools each with their own arguments and options (think: git). It displays the primary paths along the left column, and their corresponding arguments in the right. This is a great way to package a lot of varied functionality into a single app.
  200. <p align="center">
  201. <img src="https://cloud.githubusercontent.com/assets/1408720/7927433/f06a36cc-08ad-11e5-843e-9322df96d4d6.png">
  202. </p>
  203. Both views present each action in the `Argument Parser` as a unique GUI component. It makes it ideal for presenting the program to users which are unfamiliar with command line options and/or Console Programs in general. Help messages are displayed along side each component to make it as clear as possible which each widget does.
  204. **Setting the layout style:**
  205. Currently, the layouts can't be explicitely specified via a parameter (on the TODO!). The layouts are built depending on whether or not there are `subparsers` used in your code base. So, if you want to trigger the `Column Layout`, you'll need to add a `subparser` to your `argparse` code.
  206. It can be toggled via the `advanced` parameter in the `Gooey` decorator.
  207. @gooey(advanced=True)
  208. def main():
  209. # rest of code
  210. --------------------------------------------
  211. ### Basic
  212. The basic view is best for times when the user is familiar with Console Applications, but you still want to present something a little more polished than a simple terminal. The basic display is accessed by setting the `advanced` parameter in the `gooey` decorator to `False`.
  213. @gooey(advanced=False)
  214. def main():
  215. # rest of code
  216. <p align="center">
  217. <img src="https://cloud.githubusercontent.com/assets/1408720/7904369/f53a4306-07c5-11e5-8e63-b510d6db9953.png">
  218. </p>
  219. ----------------------------------------------
  220. ### No Config
  221. No Config pretty much does what you'd expect: it doesn't show a configuration screen. It hops right to the `display` section and begins execution of the host program. This is the one for improving the appearance of little one-off scripts.
  222. <p align="center">
  223. <img src="https://cloud.githubusercontent.com/assets/1408720/7904382/f54fe6f2-07c5-11e5-92e4-f72a2ae12862.png">
  224. </p>
  225. ---------------------------------------
  226. ### Input Validation
  227. <img src="https://user-images.githubusercontent.com/1408720/34464861-0e82c214-ee48-11e7-8f4a-a8e00721efef.png" width="400" height="auto" align="right" />
  228. >:warning:
  229. >Note! This functionality is experimental. Its API may be changed or removed alltogether. Feedback/thoughts on this feature is welcome and encouraged!
  230. Gooey can optionally do some basic pre-flight validation on user input. Internally, it uses these validator functions to check for the presence of required arguments. However, by using [GooeyParser](#gooeyparser), you can extend these functions with your own validation rules. This allows Gooey to show much, much more user friendly feedback before it hands control off to your program.
  231. **Writing a validator:**
  232. Validators are specified as part of the `gooey_options` map available to `GooeyParser`. It's a simple map structure made up of a root key named `validator` and two internal pairs:
  233. * `test` The inner body of the validation test you wish to perform
  234. * `message` the error message that should display given a validation failure
  235. e.g.
  236. ```
  237. gooey_options={
  238. 'validator':{
  239. 'test': 'len(user_input) > 3',
  240. 'message': 'some helpful message'
  241. }
  242. }
  243. ```
  244. **The `test` function**
  245. Your test function can be made up of any valid Python expression. It receives the variable `user_input` as an argument against which to perform its validation. Note that all values coming from Gooey are in the form of a string, so you'll have to cast as needed in order to perform your validation.
  246. **Full Code Example**
  247. ```
  248. from gooey.python_bindings.gooey_decorator import Gooey
  249. from gooey.python_bindings.gooey_parser import GooeyParser
  250. @Gooey
  251. def main():
  252. parser = GooeyParser(description='Example validator')
  253. parser.add_argument(
  254. 'secret',
  255. metavar='Super Secret Number',
  256. help='A number specifically between 2 and 14',
  257. gooey_options={
  258. 'validator': {
  259. 'test': '2 <= int(user_input) <= 14',
  260. 'message': 'Must be between 2 and 14'
  261. }
  262. })
  263. args = parser.parse_args()
  264. print("Cool! Your secret number is: ", args.secret)
  265. ```
  266. <img src="https://user-images.githubusercontent.com/1408720/34465024-f011ac3e-ee4f-11e7-80ae-330adb4c47d6.png" width="400" height="auto" align="left" />
  267. With the validator in place, Gooey can present the error messages next to the relevant input field if any validators fail.
  268. ---------------------------------------
  269. ## Customizing Icons
  270. Gooey comes with a set of six default icons. These can be overridden with your own custom images/icons by telling Gooey to search additional directories when initializing. This is done via the `image_dir` argument to the `Goeey` decorator.
  271. @Gooey(program_name='Custom icon demo', image_dir='/path/to/my/image/directory')
  272. def main():
  273. # rest of program
  274. Images are discovered by Gooey based on their _filenames_. So, for example, in order to supply a custom configuration icon, simply place an image with the filename `config_icon.png` in your images directory. These are the filenames which can be overridden:
  275. * program_icon.ico
  276. * success_icon.png
  277. * running_icon.png
  278. * loading_icon.gif
  279. * config_icon.png
  280. * error_icon.png
  281. ## Packaging
  282. Thanks to some [awesome contributers](https://github.com/chriskiehl/Gooey/issues/58), packaging Gooey as an executable is super easy.
  283. The tl;dr [pyinstaller](https://github.com/pyinstaller/pyinstaller) version is to drop this [build.spec](https://github.com/chriskiehl/Gooey/files/29568/build.spec.txt) into the root directory of your application. Edit its contents so that the `application` and `name` are relevant to your project, then execute `pyinstaller build.spec` to bundle your app into a ready-to-go executable.
  284. Detailed step by step instructions can be found [here](http://chriskiehl.com/article/packaging-gooey-with-pyinstaller/).
  285. Screenshots
  286. ------------
  287. | Flat Layout | Column Layout |Success Screen | Error Screen | Warning Dialog |
  288. |-------------|---------------|---------------|--------------|----------------|
  289. | <img src="https://cloud.githubusercontent.com/assets/1408720/7950190/4414e54e-0965-11e5-964b-f717a7adaac6.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950189/4411b824-0965-11e5-905a-3a2b5df0efb3.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950192/44165442-0965-11e5-8edf-b8305353285f.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950188/4410dcce-0965-11e5-8243-c1d832c05887.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950191/4415432c-0965-11e5-9190-17f55460faf3.jpg"> |
  290. | Custom Groups | Tabbed Groups | Tabbed Navigation | Sidebar Navigation | Input Validation |
  291. |-------------|---------------|---------------|--------------|----------------|
  292. | <img src="https://user-images.githubusercontent.com/1408720/34464824-c044d57a-ee46-11e7-9c35-6e701a7c579a.png"> | <img src="https://user-images.githubusercontent.com/1408720/34464826-2a946ba2-ee47-11e7-92a4-4afeb49dc9ca.png"> | <img src="https://user-images.githubusercontent.com/1408720/34464835-5ba9b0e4-ee47-11e7-9561-55e3647c2165.png"> | <img src="https://user-images.githubusercontent.com/1408720/34464847-9918fbb0-ee47-11e7-8d5f-0d42631c2bc0.png"> | <img src="https://user-images.githubusercontent.com/1408720/34464861-0e82c214-ee48-11e7-8f4a-a8e00721efef.png"> |
  293. ----------------------------------------------
  294. Wanna help?
  295. -----------
  296. Code, translation, graphics? Pull requests are welcome.
  297. [1]: http://i.imgur.com/7fKUvw9.png