Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Undostack: Introduce undostack #133

Merged
merged 3 commits into from
Dec 2, 2023

Commits on Nov 30, 2023

  1. UndoStack: Introduce undostack

    Right now we're using QUndoStack which is from Qt library, although it
    has limited usage which we want to expand since we want to handle errors
    in a proper way without any hacks regarding QUndoStack, so these series
    of patches will introduce customly made Undostack, as well as Command
    class which will replace QUndoCommand/QUndoStack classes.
    tetektoza committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    94a7055 View commit details
    Browse the repository at this point in the history
  2. Undostack: Add documentation for existing methods

    Added documentation for existing methods in UndoStack class.
    tetektoza committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    e1fc4a0 View commit details
    Browse the repository at this point in the history
  3. Command: Add documentation to existing methods

    Added documentation to existing methods in Command class.
    tetektoza committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    ef83a3b View commit details
    Browse the repository at this point in the history