Skip to content

Commit abcc384

Browse files
authored
Update README.md
1 parent e476e09 commit abcc384

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,27 @@
33

44
(*the code is probably shit but at least it works :), if you have any code improvments i'll be happy*)
55
## Features
6-
* Support new style
6+
* Support modern style
77
* If you want to disable it change `#define NEW_STYLE 1` to `#define NEW_STYLE 0`
88
* Window
9-
* You can change its minimal size and maximal size
9+
* You can change its minimal size and maximum size
1010
* You can change its title and icon
11-
* You can select whether or not hide on close (inside `MUI.h` change `#define HIDE_ON_CLOSE 0` to `#define HIDE_ON_CLOSE 1`)
12-
* Kind of components based system with callbacks
11+
* You can select whether or not exit when all windows are closed (inside `MUI.h` `#define EXIT_ON_CLOSE 1`)
12+
* Kind of components based system with callbacks `(std::function)`
1313
* Components list:
1414
* Button
1515
* CheckBox
16-
* Grid (you have to explicitly set the grid by using `window->SetGrid(&grid)` as in the demo project)
16+
* Grid (you have to explicitly set the grid by using `window->SetGrid(grid)` as in the demo project)
1717
* Image
1818
* ListView
19+
* ListItem
1920
* RadioGroup
2021
* RadioButton
2122
* TextBlock
2223
* TextBox
24+
* MenuBar
25+
* Menu
26+
* ContextMenu
2327
* Custom coloring of each component type(works best with `#define NEW_STYLE 0` )
2428
## Demo project
2529
*You can find a demo project inside the `Demo` folder, this project is where i test new features and additions*

0 commit comments

Comments
 (0)