/usr/include/KF5/KIOWidgets/kurlrequesterdialog.h is in kio-dev 5.18.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | /* This file is part of the KDE libraries
Copyright (C) 2000 Wilco Greven <greven@kde.org>
library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KURLREQUESTERDIALOG_H
#define KURLREQUESTERDIALOG_H
#include "kiowidgets_export.h"
#include <QDialog>
#include <QUrl>
class KUrlRequester;
class QFileDialog;
class KUrlRequesterDialogPrivate;
/**
* Dialog in which a user can enter a filename or url. It is a dialog
* encapsulating KUrlRequester.
*
* @short Simple dialog to enter a filename/url.
* @author Wilco Greven <greven@kde.org>
*/
class KIOWIDGETS_EXPORT KUrlRequesterDialog : public QDialog
{
Q_OBJECT
public:
/**
* Constructs a KUrlRequesterDialog.
*
* @param url The url of the directory to start in. Use QString()
* to start in the current working directory, or the last
* directory where a file has been selected.
* @param parent The parent object of this widget.
*/
explicit KUrlRequesterDialog(const QUrl &url, QWidget *parent = 0);
/**
* Constructs a KUrlRequesterDialog.
*
* @param url The url of the directory to start in. Use QString()
* to start in the current working directory, or the last
* directory where a file has been selected.
* @param text Text of the label
* @param parent The parent object of this widget.
*/
KUrlRequesterDialog(const QUrl &url, const QString &text,
QWidget *parent);
/**
* Destructs the dialog.
*/
~KUrlRequesterDialog();
/**
* Returns the fully qualified filename.
*/
QUrl selectedUrl() const;
/**
* Creates a modal dialog, executes it and returns the selected URL.
*
* @param url This specifies the initial path of the input line.
* @param parent The widget the dialog will be centered on initially.
* @param caption The caption to use for the dialog.
*/
static QUrl getUrl(const QUrl &url = QUrl(),
QWidget *parent = 0, const QString &caption = QString());
/**
* Returns a pointer to the file dialog used by the KUrlRequester.
* @deprecated since 5.0, use urlRequester() methods instead.
*/
#ifndef KIOWIDGETS_NO_DEPRECATED
KIOWIDGETS_DEPRECATED QFileDialog *fileDialog();
#endif
/**
* Returns a pointer to the KUrlRequester.
*/
KUrlRequester *urlRequester();
private:
friend class KUrlRequesterDialogPrivate;
KUrlRequesterDialogPrivate *const d;
Q_DISABLE_COPY(KUrlRequesterDialog)
Q_PRIVATE_SLOT(d, void _k_slotClear())
Q_PRIVATE_SLOT(d, void _k_slotTextChanged(const QString &))
};
#endif // KURLREQUESTERDIALOG_H
|