mirror of
https://github.com/vgough/encfs.git
synced 2025-01-05 05:29:33 +01:00
5f0806c5cc
git-vendor-name: easylogging git-vendor-dir: vendor/github.com/muflihun/easyloggingpp git-vendor-repository: https://github.com/muflihun/easyloggingpp git-vendor-ref: master
35 lines
627 B
C++
35 lines
627 B
C++
#ifndef JOINERWIDGET_H
|
|
#define JOINERWIDGET_H
|
|
|
|
#include <QWidget>
|
|
namespace Ui {
|
|
class JoinerWidget;
|
|
}
|
|
class PartProcessor;
|
|
class JoinerCore;
|
|
class JoinerWidget : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit JoinerWidget(QWidget *parent = 0);
|
|
~JoinerWidget();
|
|
|
|
private slots:
|
|
void on_buttonAddParts_clicked();
|
|
|
|
void on_buttonUp_clicked();
|
|
|
|
void on_buttonDown_clicked();
|
|
|
|
void on_buttonStart_clicked();
|
|
void updated(PartProcessor*);
|
|
void finished(PartProcessor*);
|
|
void started(PartProcessor*);
|
|
private:
|
|
Ui::JoinerWidget *ui;
|
|
JoinerCore* core;
|
|
|
|
};
|
|
|
|
#endif // JOINERWIDGET_H
|