KShare/src/logs/historydialog.hpp

25 lines
386 B
C++
Raw Normal View History

2017-08-21 16:17:20 +02:00
#ifndef HISTORYDIALOG_H
#define HISTORYDIALOG_H
#include <QDialog>
namespace Ui {
2017-10-05 19:21:52 +02:00
class HistoryDialog;
2017-08-21 16:17:20 +02:00
}
class HistoryDialog : public QDialog {
Q_OBJECT
public:
explicit HistoryDialog(QWidget *parent = 0);
~HistoryDialog();
private slots:
void on_treeWidget_doubleClicked(const QModelIndex &);
private:
Ui::HistoryDialog *ui;
};
#endif // HISTORYDIALOG_H