diff options
-rw-r--r-- | keylist.cpp | 8 | ||||
-rw-r--r-- | keylist.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/keylist.cpp b/keylist.cpp index 77155e6..fd45c47 100644 --- a/keylist.cpp +++ b/keylist.cpp @@ -227,3 +227,11 @@ void KeyList::dragEnterEvent(QDragEnterEvent *event) event->acceptProposedAction(); } +/** set background color for Keys and put them to top + * + */ +void KeyList::markKeys(QStringList *keyIds) { + foreach(QString id, *keyIds) { + qDebug() << id; + } +} @@ -44,6 +44,7 @@ public: void setChecked(QStringList *keyIds); //QStringList *getPrivateChecked(); QStringList *getSelected(); + void markKeys(QStringList *keyIds); public slots: void refresh(); |