mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-12 05:36:59 -04:00
Add Select All functionality, closes #19
This commit is contained in:
@@ -273,6 +273,16 @@ void KeywordsPanel::doCopy() { CUT_COPY_PASTE(doCopy, return (void), f
|
||||
void KeywordsPanel::doCut() { CUT_COPY_PASTE(doCut, return (void), !list->getKeyword() || list->getKeyword()->fixed) }
|
||||
void KeywordsPanel::doPaste() { CUT_COPY_PASTE(doPaste, return (void), !list->getKeyword() || list->getKeyword()->fixed) }
|
||||
|
||||
// ----------------------------------------------------------------------------- : Text selection
|
||||
|
||||
bool KeywordsPanel::canSelectAll() const {
|
||||
CUT_COPY_PASTE(canSelectAll, return, false)
|
||||
}
|
||||
|
||||
void KeywordsPanel::doSelectAll() {
|
||||
CUT_COPY_PASTE(doSelectAll, return (void), false)
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------- : Events
|
||||
|
||||
void KeywordsPanel::onChangeSet() {
|
||||
|
||||
Reference in New Issue
Block a user