File: owncloudsync.h

package info (click to toggle)
lomiri-cloudsync-app 0.8.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,560 kB
  • sloc: cpp: 1,053; python: 67; javascript: 25; makefile: 21; sh: 9
file content (33 lines) | stat: -rw-r--r-- 644 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
29
30
31
32
33
#ifndef OWNCLOUDSYNC_H
#define OWNCLOUDSYNC_H

#include <QObject>
#include <QStringList>
#include <QVariant>

class OwncloudSync : public QObject
{
    Q_OBJECT
    Q_PROPERTY(bool networkAvailable READ networkAvailable NOTIFY networkAvailableChanged)
public:
    explicit OwncloudSync(QObject *parent = 0);
    Q_INVOKABLE QString homePath();
    Q_INVOKABLE bool newFolder(QString folderPath);
    Q_INVOKABLE QVariantList logPath();
    Q_INVOKABLE void removeAllConfigs();

    bool networkAvailable();


signals:

    void networkAvailableChanged();

public slots:

private:
    void deleteAll(QString path);

};

#endif // OWNCLOUDSYNC_H