-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor/cla 122 unify window and main window and rename it to main p…
…ane (#91) * cla-122: merged window and main_window in main_window * cla-122: renamed demo_window to demo_main_pane to be consistent with main_pane
- Loading branch information
Showing
18 changed files
with
143 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,53 @@ | ||
# CHANGELOG # | ||
|
||
* 20241128 Added captionable_control::set_formatted_text template method | ||
* 20241128 Added clsn::system::get_build_id() and clsn::system::get_version() | ||
* 20241127 Fix crash when resetting parent window and mouse grabbed | ||
* 20241126 Demo website created using the Emscripten binaries | ||
* 20241123 Added support for Emscripten! | ||
* 20241109 Created font_manager | ||
* 20241106 Added use of preferred_size to box layouts | ||
* 20241106 Generalized algorithm for box layouts | ||
* 20241104 Improved theming support | ||
* 20241101 Removed section_name from control | ||
* 20241031 Created theme_manager and removed skins | ||
* 20241029 CLSN_ASSERT macro added | ||
* 20241028 removed region from renderer_base::paint() | ||
* 20241206 renamed `main_window` to `main_pane` | ||
* 20241201 0.1.0-alpha released | ||
* 20241128 added `captionable_control::set_formatted_text` template method | ||
* 20241128 added `clsn::system::get_build_id()` and `clsn::system::get_version()` | ||
* 20241127 fix crash when resetting parent window and mouse grabbed | ||
* 20241126 demo website created using the Emscripten binaries | ||
* 20241123 added support for Emscripten! | ||
* 20241109 created font_manager | ||
* 20241106 added use of preferred_size to box layouts | ||
* 20241106 generalized algorithm for box layouts | ||
* 20241104 improved theming support | ||
* 20241101 removed section_name from control | ||
* 20241031 created theme_manager and removed skins | ||
* 20241029 `CLSN_ASSERT` macro added | ||
* 20241028 removed region from `renderer_base::paint()` | ||
* 20241025 added tab_control | ||
* 20241002 added dynamic and static content panes | ||
* 20240917 added doxygen action in github | ||
* 20240916 created demo app | ||
* 20240904 created clsn::ui::dynamic_pane | ||
* 20240826 Renamed list_container to layout_container | ||
* 20240826 Added layouts and refactored containers | ||
* 20240815 Added mono_container class | ||
* 20240815 Added container class | ||
* 20240809 Added Windows support | ||
* 20240809 Added padding_control | ||
* 20240808 Made all project snake_case | ||
* 20240904 created `clsn::ui::dynamic_pane` | ||
* 20240826 renamed list_container to layout_container | ||
* 20240826 added layouts and refactored containers | ||
* 20240815 added mono_container class | ||
* 20240815 added container class | ||
* 20240809 added Windows support | ||
* 20240809 added padding_control | ||
* 20240808 made all project snake_case | ||
* 20240806 flow_container | ||
* 20240731 Created dual_layout_container | ||
* 20240729 Moved do_layout() from renderer_base to control | ||
* 20240726 Added isValidControl() in layout_container | ||
* 20240724 Moved texture to graphics | ||
* 20240723 Painting on a texture instead of default surface | ||
* 20240722 Support for hovering | ||
* 20240720 Renamed default skin to Amatista | ||
* 20240718 Created base DefaultUITheme | ||
* 20240716 Added support for dynamically change theme | ||
* 20240715 Added ui_theme and implemented Light and Dark themes | ||
* 20240710 Added ui_skin and DefaultUISkin | ||
* 20240710 Improved label rendering | ||
* 20240701 Added xy_container | ||
* 20240627 Improved radio_button renderer | ||
* 20240626 Added radio_button | ||
* 20240625 Added check_box rendering | ||
* 20240624 Starting check_box implementation | ||
* 20240620 Implementing container_renderer base class | ||
* 20240620 Using do_layout to calculate position and size | ||
* 20240619 Fixed crash when out of range | ||
* 20240618 Added toggle_button | ||
* 20240618 Added toggle_control | ||
* 20240618 Added window::grabMouse() and window::release_mouse() | ||
* 20240731 created dual_layout_container | ||
* 20240729 moved `do_layout()` from renderer_base to control | ||
* 20240726 added isValidControl() in layout_container | ||
* 20240724 moved texture to graphics | ||
* 20240723 painting on a texture instead of default surface | ||
* 20240722 support for hovering | ||
* 20240720 renamed default skin to Amatista | ||
* 20240718 created base DefaultUITheme | ||
* 20240716 added support for dynamically change theme | ||
* 20240715 added ui_theme and implemented Light and Dark themes | ||
* 20240710 added ui_skin and DefaultUISkin | ||
* 20240710 improved label rendering | ||
* 20240701 added `xy_container` | ||
* 20240627 improved `radio_button_renderer` | ||
* 20240626 added `radio_button` | ||
* 20240625 added `check_box` rendering | ||
* 20240624 starting `check_box` implementation | ||
* 20240620 implementing `container_renderer` base class | ||
* 20240620 using `do_layout` to calculate position and size | ||
* 20240619 fixed crash when out of range | ||
* 20240618 added `toggle_button` | ||
* 20240618 added `toggle_control` | ||
* 20240618 added `window::grabMouse()` and `window::release_mouse()` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.