~lubuntu-dev/lxde/libfm-qt-debian-git

« back to all changes in this revision

Viewing changes to src/utilities.h

  • Committer: Alf Gaida
  • Date: 2015-12-17 15:45:00 UTC
  • Revision ID: git-v1:99d4cf5e0b3761023e2285ffb96a79d050f0bdf4
Tags: upstream/0.10.0+20151214
Adding upstream version 0.10.0+20151214.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 - 2015  Hong Jen Yee (PCMan) <pcman.tw@gmail.com>
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef FM_UTILITIES_H
 
21
#define FM_UTILITIES_H
 
22
 
 
23
#include "libfmqtglobals.h"
 
24
#include <QClipboard>
 
25
#include <QUrl>
 
26
#include <QList>
 
27
#include <libfm/fm.h>
 
28
#include <sys/types.h>
 
29
 
 
30
class QDialog;
 
31
 
 
32
namespace Fm {
 
33
 
 
34
LIBFM_QT_API FmPathList* pathListFromQUrls(QList<QUrl> urls);
 
35
 
 
36
LIBFM_QT_API void pasteFilesFromClipboard(FmPath* destPath, QWidget* parent = 0);
 
37
 
 
38
LIBFM_QT_API void copyFilesToClipboard(FmPathList* files);
 
39
 
 
40
LIBFM_QT_API void cutFilesToClipboard(FmPathList* files);
 
41
 
 
42
LIBFM_QT_API void renameFile(FmFileInfo* file, QWidget* parent = 0);
 
43
 
 
44
enum CreateFileType {
 
45
  CreateNewFolder,
 
46
  CreateNewTextFile,
 
47
  CreateWithTemplate
 
48
};
 
49
 
 
50
LIBFM_QT_API void createFileOrFolder(CreateFileType type, FmPath* parentDir, FmTemplate* templ = NULL, QWidget* parent = 0);
 
51
 
 
52
LIBFM_QT_API uid_t uidFromName(QString name);
 
53
 
 
54
LIBFM_QT_API QString uidToName(uid_t uid);
 
55
 
 
56
LIBFM_QT_API gid_t gidFromName(QString name);
 
57
 
 
58
LIBFM_QT_API QString gidToName(gid_t gid);
 
59
 
 
60
LIBFM_QT_API int execModelessDialog(QDialog* dlg);
 
61
 
 
62
// NOTE: this does not work reliably due to some problems in gio/gvfs
 
63
// Use uriExists() whenever possible.
 
64
LIBFM_QT_API bool isUriSchemeSupported(const char* uriScheme);
 
65
 
 
66
LIBFM_QT_API bool uriExists(const char* uri);
 
67
 
 
68
}
 
69
 
 
70
#endif // FM_UTILITIES_H