[go: up one dir, main page]

Menu

[r703]: / mdownloadweb.h  Maximize  Restore  History

Download this file

85 lines (71 with data), 2.5 kB

 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* Marcion
Copyright (C) 2009-2015 Milan Konvicka
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
#ifndef MDOWNLOADWEB_H
#define MDOWNLOADWEB_H
#include <QWidget>
#include <QAbstractButton>
#include <QProcess>
#include <QFileDialog>
#include <QCloseEvent>
#include <QUrl>
#include "filechooser.h"
#include "libbase.h"
namespace Ui {
class MDownloadWeb;
}
class MDownloadWeb : public QWidget {
Q_OBJECT
public:
MDownloadWeb(CMessages * const,QDir const &,
CLibBase & lib,QWidget *parent = 0);
~MDownloadWeb();
QString webLoc() const;
//bool isDirUnchanged() const;
QString targetDir() const;
protected:
void closeEvent(QCloseEvent *event);
private:
Ui::MDownloadWeb *ui;
CMessages * const messages;
QProcess _p;
//QDir const _libdir;
//bool _progress;
bool test;
QString epars;
CLibBase & lib;
bool inProgress() const;
private slots:
void on_textBrowser_anchorClicked(QUrl );
void on_btClose_clicked();
void on_btState_clicked();
void on_btBrowse_clicked();
void on_rbFile_toggled(bool checked);
void on_rbWeb_toggled(bool checked);
void on_treeSites_currentItemChanged(QTreeWidgetItem* current, QTreeWidgetItem* previous);
void on_btRec_clicked(bool checked);
void on_btVersion_clicked();
void on_btDetails_toggled(bool checked);
void on_btDefault_clicked();
void on_btTest_clicked();
//void on_txtDir_textChanged(QString );
//void on_btChooseDir_clicked();
void on_btClear_clicked();
void on_btStop_clicked();
void on_btStart_clicked();
void on_wdgDir_viewInLibrary(QString);
void slot_downloadFinished(int exitCode, QProcess::ExitStatus exitStatus);
void slot_downloadError();
void slot_downloadOutput();
};
#endif // MDOWNLOADWEB_H