kde-extraapps/kdeplasma-addons/runners/dictionary/dictionaryrunner_config.h
Ivailo Monev e166af4e02 generic: replace forward declarations with headers inclusions
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-05-23 00:08:45 +00:00

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