Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-09 | LibGUI+WindowServer: Flash menubar menu when using a keyboard shortcut | bugreport0 | |
Briefly flash the menubar menu containing the keyboard shortcut action to give the user immediate visual feedback on their interaction with the system. | |||
2021-08-19 | LibGUI: Move common action definitions to CommonActions.cpp | sin-ack | |
This makes Action.cpp itself only talk about the Action object, and makes it easier to navigate. | |||
2021-07-21 | LibGfx: Use "try_" prefix for static factory functions | Andreas Kling | |
Also mark them as [[nodiscard]]. | |||
2021-07-14 | Base+LibGUI: Add icon to the Rename action | jakubiakdev | |
2021-07-13 | LibGUI: Add Rename action | Karol Kosek | |
2021-06-25 | LibGUI: Add alternate shortcut F5 to the "reload" common action | Aatos Majava | |
2021-06-25 | LibGUI: Add support for an alternate keyboard shortcut in Action | Aatos Majava | |
This patch adds the alternate_shortcut member to LibGUI::Action, which enables one Action to have two keyboard shortcuts. Note that the string used in menus and tooltips only shows the main shortcut, which is the same behaviour as in Firefox and Chrome. | |||
2021-05-21 | Applications: Use titlecase and distinct underlined characters in menus | Max Wipfli | |
This changes (context) menus across the system to conform to titlecase capitalization and to not underline the same character twice (for accessing actions with Alt). | |||
2021-05-15 | LibGUI: Add CommonActions helpers for "zoom in/out" and "reset zoom" | Andreas Kling | |
2021-05-08 | LibGUI: Make Action::set_text() update any associated menu items | Andreas Kling | |
Now you can change the text of an action and it will actually show up in the menu. :^) | |||
2021-04-23 | AK: Rename adopt() to adopt_ref() | Andreas Kling | |
This makes it more symmetrical with adopt_own() (which is used to create a NonnullOwnPtr from the result of a naked new.) | |||
2021-04-22 | Everything: Move to SPDX license identifiers in all files. | Brian Gianforcaro | |
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt * | |||
2021-04-18 | LibGUI: Add some more status tips to common actions | Andreas Kling | |
2021-04-18 | LibGUI: Rename Action::long_text to Action::status_tip | Andreas Kling | |
This feels a bit more descriptive. | |||
2021-04-17 | LibGUI: Add a "long text" string to GUI::Action | Andreas Kling | |
Actions can now have a longer text description, in addition to its regular UI string. The longer text will soon be used to display a more detailed description of hovered actions in statusbars. | |||
2021-04-09 | LibGUI: Give Alt shortcuts to all the CommonActions :^) | Andreas Kling | |
2021-04-04 | LibGUI: Add GUI::CommonActions::make_properties_action() | Andreas Kling | |
Many apps want a "Properties" action with the same icon and shortcut. | |||
2021-02-20 | LibGUI: Use delegating constructors in GUI::Action | Andreas Kling | |
2021-02-20 | LibGUI: Tidy up Action constructors and factory functions a bit | Andreas Kling | |
2021-01-12 | Libraries: Move to Userland/Libraries/ | Andreas Kling | |