You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
500 B
25 lines
500 B
/* This file is part of the KDE libraries |
|
SPDX-FileCopyrightText: 2005 David Faure <faure@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef KSTDACCELTEST_H |
|
#define KSTDACCELTEST_H |
|
|
|
#include <QObject> |
|
|
|
class KStandardShortcutTest : public QObject |
|
{ |
|
Q_OBJECT |
|
private Q_SLOTS: |
|
// KStandardShortcut tests |
|
void testShortcutDefault(); |
|
void testName(); |
|
void testLabel(); |
|
void testShortcut(); |
|
void testFindStdAccel(); |
|
void testFindByName(); |
|
}; |
|
|
|
#endif
|
|
|