mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
29 lines
507 B
C++
29 lines
507 B
C++
/*
|
|
* Copyright (C) 2010, 2012 Jason A. Donenfeld <Jason@zx2c4.com>
|
|
*/
|
|
|
|
#ifndef DICTIONARYRUNNERCONFIG_H
|
|
#define DICTIONARYRUNNERCONFIG_H
|
|
|
|
|
|
#include <KCModule>
|
|
#include <QLineEdit>
|
|
|
|
static const char CONFIG_TRIGGERWORD[] = "triggerWord";
|
|
|
|
class DictionaryRunnerConfig : public KCModule
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DictionaryRunnerConfig(QWidget* parent = 0, const QVariantList& args = QVariantList());
|
|
|
|
public slots:
|
|
void save();
|
|
void load();
|
|
void defaults();
|
|
|
|
private:
|
|
QLineEdit *m_triggerWord;
|
|
};
|
|
#endif
|