-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add Undo/Redo History #7821
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
Open
regulus79
wants to merge
6
commits into
LMMS:master
Choose a base branch
from
regulus79:undo-history
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add Undo/Redo History #7821
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9ebcbb4
Initial Implementation
regulus79 b01a2c3
Fix formatting
regulus79 2a273ad
Rework everything
regulus79 2c6d9de
Fix segfault due to gui signals not being called in sync with the und…
regulus79 04c0c82
Merge branch 'master' into undo-history
regulus79 378106a
Add constexpr journallingObject node name
regulus79 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* UndoRedoMenu.h | ||
* | ||
* Copyright (c) 2004-2022 Tobias Doerffel <tobydox/at/users.sourceforge.net> | ||
* | ||
* This file is part of LMMS - https://lmms.io | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2 of the License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public | ||
* License along with this program (see COPYING); if not, write to the | ||
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||
* Boston, MA 02110-1301 USA. | ||
* | ||
*/ | ||
|
||
#ifndef LMMS_GUI_UNDO_REDO_MENU_H | ||
#define LMMS_GUI_UNDO_REDO_MENU_H | ||
|
||
#include <QMenu> | ||
#include <QTreeWidget> | ||
#include <QTextEdit> | ||
|
||
#include "SideBarWidget.h" | ||
#include "ProjectJournal.h" | ||
|
||
namespace lmms::gui | ||
{ | ||
|
||
class UndoRedoTreeWidget; | ||
|
||
class UndoRedoMenu : public SideBarWidget | ||
{ | ||
Q_OBJECT | ||
public: | ||
UndoRedoMenu(QWidget *parent = nullptr); | ||
private slots: | ||
void reloadTree(); | ||
private: | ||
UndoRedoTreeWidget* m_undoRedoTree; | ||
}; | ||
|
||
class UndoRedoTreeWidget : public QTreeWidget | ||
{ | ||
Q_OBJECT | ||
public: | ||
UndoRedoTreeWidget(QWidget * parent); | ||
~UndoRedoTreeWidget() override = default; | ||
protected: | ||
void contextMenuEvent(QContextMenuEvent * e) override; | ||
private: | ||
void applyUndoRedoEntry(QTreeWidgetItem * item, int column); | ||
}; | ||
|
||
class UndoRedoTreeWidgetItem : public QTreeWidgetItem | ||
{ | ||
public: | ||
UndoRedoTreeWidgetItem(QTreeWidget* parent, ProjectJournal::CheckPoint* cp, int index, bool isUndo); | ||
private: | ||
int m_index; | ||
bool m_isUndo; | ||
ProjectJournal::CheckPoint* m_checkpoint; | ||
friend class UndoRedoTreeWidget; | ||
}; | ||
|
||
class UndoRedoMenuDetailsWindow : public QTextEdit | ||
{ | ||
Q_OBJECT | ||
public: | ||
UndoRedoMenuDetailsWindow(QString text); | ||
}; | ||
|
||
|
||
} // namespace lmms::gui | ||
|
||
#endif // LMMS_GUI_UNDO_REDO_MENU_H |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I do not like the feature necessarily, since you fixed a bug I should give actionable feedback. I would try using
constexpr auto
and storing"journalingObject"
in some kind of constant string expression, something likeconstexpr auto joAttribute = "journalingObject"
. This would pretty much prevent the bug from happening again. All that's left would be using that attribute where necessary.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can if you want, although to be fair that string is only used twice, both times in
JournallingObject.cpp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This disregards the fact that the code can change at any point. Looking at code as a fixed entity at a fixed point in time is not a good idea.
It's also just good practice. You'd be surprised at how small changes like this can add up and help. You generally do not want to use magic string literals.. case in point, bugs like this happen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright, I have added a
constexpr
string for the journallingObject node name in the most recent commit.