~ci-train-bot/ubuntu-settings-components/ubuntu-settings-components-ubuntu-zesty-1721

« back to all changes in this revision

Viewing changes to plugins/Ubuntu/Settings/Components/filepickerhelper.h

  • Committer: Bileto Bot
  • Date: 2016-10-19 10:24:24 UTC
  • mfrom: (155.3.9 filepicker)
  • Revision ID: ci-train-bot@canonical.com-20161019102424-6qkyye9d004l3sd9
create file picker component for export 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#ifndef FILEPICKERHELPER_H
 
18
#define FILEPICKERHELPER_H
 
19
 
 
20
#include <QObject>
 
21
#include <QUrl>
 
22
#include <QStringList>
 
23
 
 
24
class FilePickerHelper : public QObject
 
25
{
 
26
    Q_OBJECT
 
27
public:
 
28
    FilePickerHelper(QObject* parent = nullptr);
 
29
    Q_INVOKABLE static QUrl homeDirUrl();
 
30
    Q_INVOKABLE static QString rootPath();
 
31
    Q_INVOKABLE static QString pathFromUrl(const QUrl &url);
 
32
    Q_INVOKABLE static QStringList pathsFromUrl(const QUrl &url);
 
33
    Q_INVOKABLE static QString formatSize(const quint64 &size);
 
34
};
 
35
 
 
36
#endif // FILEPICKERHELPER_H