blob: f82517e9005f28d69ea3671132f60130c39775a8 (
plain)
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "utils_global.h"
QT_BEGIN_NAMESPACE
class QSettings;
class QString;
QT_END_NAMESPACE
namespace Utils {
class QTCREATOR_UTILS_EXPORT UnixUtils
{
public:
static QString defaultFileBrowser();
static QString fileBrowser(const QSettings *settings);
static void setFileBrowser(QSettings *settings, const QString &term);
static QString fileBrowserHelpText();
static QString substituteFileBrowserParameters(const QString &command,
const QString &file);
};
}
|