File: ObjectConsole.h

package info (click to toggle)
qcalcfilehash 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 272 kB
  • sloc: cpp: 862; xml: 26; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 613 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef OBJECTCONSOLE_H
#define OBJECTCONSOLE_H

#include <QObject>

class ObjectConsole : public QObject{
    Q_OBJECT
    public:
        explicit ObjectConsole(QObject *parent = nullptr,int gostSupport=0);

        void calcHash(QStringList listPositionalArguments, bool showProgress, bool showlistOption, QString compareHash);

    private:
        int _gostSupport;

        int current_progress;

        bool _showProgress;
        QString _compareHash;

    signals:

    private slots:
        void calcHashChangeValue(int value);
        void calcHashResult(QString hash);
};

#endif // OBJECTCONSOLE_H