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.
tdeedu/kanagram/src/vocabsettings.h

27 lines
453 B

#ifndef VOCABSETTINGS_H
#define VOCABSETTINGS_H
#include "vocabsettingswidget.h"
class VocabSettings : public VocabSettingsWidget
{
Q_OBJECT
public:
VocabSettings(QWidget *parent);
~VocabSettings();
void refreshView();
private:
QStringList m_fileList;
QMap<const QListViewItem*, int> m_itemMap;
private slots:
void slotCreateNew();
void slotEdit();
void slotDelete();
void slotSelectionChanged(QListViewItem *item);
};
#endif