Skip to content

Commit

Permalink
refactor: [shortcut] Refactor the shortcut settings view
Browse files Browse the repository at this point in the history
as title

Log: code refactor
  • Loading branch information
Kakueeen committed Aug 26, 2024
1 parent fd5597f commit 8c09724
Show file tree
Hide file tree
Showing 32 changed files with 1,519 additions and 1,200 deletions.
4 changes: 3 additions & 1 deletion 3rdparty/unioncode-qscintilla214/src/Qsci/qscicommand.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ class QsciScintilla;
//! Methods are provided to change the keys bound to the command and to remove
//! a key binding. Each command has a user friendly description of the command
//! for use in key mapping dialogs.
class QSCINTILLA_EXPORT QsciCommand
class QSCINTILLA_EXPORT QsciCommand : public QObject
{
Q_OBJECT
public:
//! This enum defines the different commands that can be assigned to a key.
enum Command {
Expand Down Expand Up @@ -343,6 +344,7 @@ class QSCINTILLA_EXPORT QsciCommand
//! Reverse the selected lines.
ReverseLines = QsciScintillaBase::SCI_LINEREVERSE,
};
Q_ENUM(Command)

//! Return the command that will be executed by this instance.
Command command() const {return scicmd;}
Expand Down
Loading

0 comments on commit 8c09724

Please sign in to comment.