Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add tab tooltip text | Mansur Isaev | 2024-04-23 | 1 | -0/+16 |
| | |||||
* | Use black for font outlines by default instead of white | Hugo Locurcio | 2024-02-28 | 1 | -1/+1 |
| | | | | | This makes font outlines more usable out of the box, as black is one of the most commonly used colors for font outlines. | ||||
* | Allow tab deselection | kit | 2024-01-29 | 1 | -2/+5 |
| | |||||
* | Fix disabled tabs being selected when removing the current one | Michael Alexsander | 2023-10-25 | 1 | -1/+1 |
| | |||||
* | Make hovered tabs be drawn with the unselected's width at minimum | Michael Alexsander | 2023-09-26 | 1 | -0/+1 |
| | |||||
* | Allow to focus individual tabs in TabBar/TabContainer | Arkadiusz Marcin Kołek | 2023-09-17 | 1 | -0/+16 |
| | |||||
* | Doctool: Remove version attribute from XML header | Rémi Verschelde | 2023-07-06 | 1 | -1/+1 |
| | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb). | ||||
* | Bump version to 4.2-dev | Rémi Verschelde | 2023-07-05 | 1 | -1/+1 |
| | | | | Keep on waitin' | ||||
* | Overhaul the top sections of the class reference (GUI classes) | VolTer | 2023-05-28 | 1 | -2/+2 |
| | |||||
* | Merge pull request #74632 from davthedev/tabs-hover | Rémi Verschelde | 2023-04-24 | 1 | -0/+6 |
|\ | | | | | | | Add theming support for hovered tabs | ||||
| * | Add theming support for hovered tabs | David Giardi | 2023-04-19 | 1 | -0/+6 |
| | | | | | | | | Tabs can now be styled differently when hovered by the mouse pointer. | ||||
* | | Merge pull request #75960 from ShadyChibinko/tab_metadata | Rémi Verschelde | 2023-04-22 | 1 | -0/+15 |
|\ \ | |/ |/| | | | Add tab Metadata to TabBar & TabContainer | ||||
| * | Add Tab Metadata | ShadyChibinko | 2023-04-11 | 1 | -0/+15 |
| | | |||||
* | | Remove double thes from documentation | Paweł | 2023-04-17 | 1 | -1/+1 |
|/ | |||||
* | Make icons of scripted and custom classes fit the editor UI | Yuri Sizov | 2023-03-31 | 1 | -2/+20 |
| | | | | | | | | | | | Also: - Add an option to limit the icon size in PopupMenu. This is similar to how this works in Tree and TreeItem. - Add the same option to TabBar. - Add a theme constant for Tree, PopupMenu, Button, and TabBar to apply this limit on the control level. Co-authored-by: Daylily-Zeleen <daylily-zeleen@foxmail.com> | ||||
* | Bump version to 4.1-dev | Rémi Verschelde | 2023-03-01 | 1 | -1/+1 |
| | | | | Can't stop, won't stop, they said, huh? | ||||
* | Expose TabBar::clear_tabs to GDScript | Stanislav Labzyuk | 2023-01-08 | 1 | -0/+6 |
| | |||||
* | Document MDSF font outlines may require `msdf_pixel_range` adjustments | Hugo Locurcio | 2022-12-19 | 1 | -0/+1 |
| | |||||
* | [doc] Use "param" instead of "code" to refer to parameters | Andy Maloney | 2022-08-11 | 1 | -13/+13 |
| | |||||
* | Rename the argument tag to param in XML documentation | Yuri Sizov | 2022-08-08 | 1 | -37/+37 |
| | |||||
* | Refactor Font configuration and import UI, and Font resources. | bruvzg | 2022-07-06 | 1 | -24/+0 |
| | |||||
* | Rename theme properties to include underscores | FireForge | 2022-04-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | - check_vadjust -> check_v_adjust - close_h_ofs -> close_h_offset - close_v_ofs -> close_v_offset - commentfocus -> comment_focus - hseparation -> h_separation - ofs -> offset - selectedframe -> selected_frame - state_machine_selectedframe -> state_machine_selected_frame - table_hseparation -> table_h_separation - table_vseparation -> table_v_separation - vseparation -> v_separation | ||||
* | Add visual marker when dragging and dropping tabs | Michael Alexsander | 2022-03-21 | 1 | -0/+6 |
| | |||||
* | Make `TabBar/Container` default their alignments to the left instead of center | Michael Alexsander | 2022-03-17 | 1 | -1/+1 |
| | |||||
* | Replace `TabBar`'s `min_width` with `max_tab_width` and expose it | Michael Alexsander | 2022-03-09 | 1 | -0/+3 |
| | |||||
* | Change tabs_rearrange_group to property | kobewi | 2022-03-05 | 1 | -13/+4 |
| | |||||
* | Make `TabContainer` use `TabBar` internally | Michael Alexsander | 2022-03-03 | 1 | -0/+7 |
| | |||||
* | Add an XML schema for documentation | Hugo Locurcio | 2022-02-15 | 1 | -1/+1 |
| | | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions. | ||||
* | Bring `TabBar` to full parity with the `TabContainer` implementation. | Michael Alexsander | 2022-01-31 | 1 | -11/+51 |
| | |||||
* | Improve the default project theme | Hugo Locurcio | 2022-01-19 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | The new default project theme uses StyleBoxFlat extensively for a more modern design and better scalability to multiple resolutions. SVG icons are now used in place of PNG icons. While this does not allow for true vector-based icon drawing (icons are still rasterized at load-time), this makes the design work easier for contributors and opens the door to vector drawing in the future (e.g. with polygons or SDFs). Like for editor icons, the SVG header file is now built automatically when a SVG file is changed. This removing the need for running `make_header.py` manually (TODO). The "Use Hidpi" project setting has been removed in favor of a "Default Theme Scale" project setting, which allows creating the default theme at a higher/lower scale than the default. This can be used when designing GUIs with a high base resolution to ensure crisp visuals. Co-authored-by: Yuri Sizov <yuris@humnom.net> | ||||
* | i18n: Sync classref translations with current 3.x codebase | Rémi Verschelde | 2022-01-07 | 1 | -1/+1 |
| | | | | (cherry picked from commit defb8011200f3ff908dd432cdbc095e4665677ef) | ||||
* | Inspector property array for `TabBar` | rafallus | 2022-01-05 | 1 | -13/+10 |
| | |||||
* | align to horizontal_alignment, valign to vertical_alignment, related | Nathan Franke | 2021-12-09 | 1 | -10/+5 |
| | |||||
* | Sort and group theme properties in docs, improve formatting for theme and enums | Yuri Sizov | 2021-12-01 | 1 | -23/+23 |
| | |||||
* | Rename `TabBar`'s `tab_closed` signal to `tab_close_pressed` | Michael Alexsander | 2021-10-28 | 1 | -2/+11 |
| | |||||
* | Rename `Tabs` to `TabBar` | Michael Alexsander | 2021-10-19 | 1 | -0/+339 |