File: SampleDownloader.hpp

package info (click to toggle)
wsjtx-improved 2.8.0%2B250314%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 81,496 kB
  • sloc: cpp: 104,468; f90: 48,130; python: 27,241; ansic: 13,367; fortran: 2,382; makefile: 197; sh: 133
file content (50 lines) | stat: -rwxr-xr-x 1,428 bytes parent folder | download | duplicates (4)
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
#ifndef SAMPLE_DOWNLOADER_HPP__
#define SAMPLE_DOWNLOADER_HPP__

#include <QObject>

#include "pimpl_h.hpp"

class QSettings;
class QWidget;
class QNetworkAccessManager;
class Configuration;

//
// SampleDownloader - A Dialog to maintain sample files
//
// This  uses a  Qt Dialog  window that  contains a  tree view  of the
// available sample  files on a  web or ftp  server. The files  can be
// installed locally by ticking a check  box or removed from the local
// machine by un-ticking the check boxes.
//
// The class requires a pointer to an open QSettings instance where it
// will save its persistent state, a pointer to a WSJT-X Configuration
// instance that is used to  obtain configuration information like the
// current    file   save    location    and,   a    pointer   to    a
// QNetworkAccessManager instance which is used for network requests.
//
// An instance  of SampleDownloader need  not be destroyed  after use,
// just  call  SampleDownloader::show()  to make  the  dialog  visible
// again.
//
class SampleDownloader final
  : public QObject
{
  Q_OBJECT;

public:
  SampleDownloader (QSettings * settings
                    , Configuration const *
                    , QNetworkAccessManager *
                    , QWidget * parent = nullptr);
  ~SampleDownloader ();

  Q_SLOT void show ();

private:
  class impl;
  pimpl<impl> m_;
};

#endif