File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 3
3
4
4
(* the code is probably shit but at least it works :), if you have any code improvments i'll be happy* )
5
5
## Features
6
- * Support new style
6
+ * Support modern style
7
7
* If you want to disable it change ` #define NEW_STYLE 1 ` to ` #define NEW_STYLE 0 `
8
8
* Window
9
- * You can change its minimal size and maximal size
9
+ * You can change its minimal size and maximum size
10
10
* 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) `
13
13
* Components list:
14
14
* Button
15
15
* 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)
17
17
* Image
18
18
* ListView
19
+ * ListItem
19
20
* RadioGroup
20
21
* RadioButton
21
22
* TextBlock
22
23
* TextBox
24
+ * MenuBar
25
+ * Menu
26
+ * ContextMenu
23
27
* Custom coloring of each component type(works best with ` #define NEW_STYLE 0 ` )
24
28
## Demo project
25
29
* You can find a demo project inside the ` Demo ` folder, this project is where i test new features and additions*
You can’t perform that action at this time.
0 commit comments