goldendict-ng/dictinfo.hh
Tvangeste 7599b8e33e Add "Edit dictionary" and "Open folder" buttons to the Dictionary Info dialog
Note: The "Edit dictionary" is optional an enabled only if the command line
for editor is specified in the config file (manually).
2013-06-11 17:42:24 +02:00

35 lines
566 B
C++

#ifndef DICTINFO_HH
#define DICTINFO_HH
#include <QDialog>
#include "ui_dictinfo.h"
#include "dictionary.hh"
#include "config.hh"
class DictInfo: public QDialog
{
Q_OBJECT
public:
enum Actions
{
REJECTED,
ACCEPTED,
OPEN_FOLDER,
EDIT_DICTIONARY
};
DictInfo( Config::Class &cfg_, QWidget * parent = 0 );
void showInfo( sptr< Dictionary::Class > dict );
private:
Ui::DictInfo ui;
Config::Class &cfg;
private slots:
void savePos( int );
void on_editDictionary_clicked();
void on_openFolder_clicked();
};
#endif // DICTINFO_HH