summaryrefslogtreecommitdiffstats
path: root/kio/kfile/kurlrequesterdlg.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch)
tree5ac38a06f3dde268dc7927dc155896926aaf7012 /kio/kfile/kurlrequesterdlg.h
downloadtdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz
tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kfile/kurlrequesterdlg.h')
-rw-r--r--kio/kfile/kurlrequesterdlg.h114
1 files changed, 114 insertions, 0 deletions
diff --git a/kio/kfile/kurlrequesterdlg.h b/kio/kfile/kurlrequesterdlg.h
new file mode 100644
index 000000000..a4f2cf0f3
--- /dev/null
+++ b/kio/kfile/kurlrequesterdlg.h
@@ -0,0 +1,114 @@
+/* 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 <kdialogbase.h>
+#include <kurl.h>
+
+class KURLCompletion;
+class KURLRequester;
+class KFileDialog;
+/**
+ * Dialog in which a user can enter a filename or url. It is a dialog
+ * encapsulating KURLRequester. The API is derived from
+ * KFileDialog.
+ *
+ * @short Simple dialog to enter a filename/url.
+ * @author Wilco Greven <greven@kde.org>
+ */
+class KIO_EXPORT KURLRequesterDlg : public KDialogBase
+{
+ Q_OBJECT
+
+public:
+ /**
+ * Constructs a KURLRequesterDlg.
+ *
+ * @param url The url of the directory to start in. Use QString::null
+ * 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.
+ * @param name The name of this widget.
+ * @param modal Specifies whether the dialog should be opened as modal
+ * or not.
+ */
+ KURLRequesterDlg( const QString& url, QWidget *parent,
+ const char *name, bool modal = true );
+
+ /**
+ * Constructs a KURLRequesterDlg.
+ *
+ * @param url The url of the directory to start in. Use QString::null
+ * 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.
+ * @param name The name of this widget.
+ * @param modal Specifies whether the dialog should be opened as modal
+ * or not.
+ */
+ KURLRequesterDlg( const QString& url, const QString& text,
+ QWidget *parent, const char *name, bool modal=true );
+ /**
+ * Destructs the dialog.
+ */
+ ~KURLRequesterDlg();
+
+ /**
+ * Returns the fully qualified filename.
+ */
+ KURL 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 KURL getURL(const QString& url = QString::null,
+ QWidget *parent= 0, const QString& caption = QString::null);
+
+ /**
+ * Returns a pointer to the file dialog used by the KURLRequester.
+ */
+ KFileDialog * fileDialog();
+ /**
+ * Returns a pointer to the KURLRequester.
+ */
+ KURLRequester *urlRequester();
+
+private slots:
+ void slotClear();
+ void slotTextChanged(const QString &);
+private:
+ void initDialog(const QString &text, const QString &url);
+ KURLRequester *urlRequester_;
+
+ class KURLRequesterDlgPrivate;
+ KURLRequesterDlgPrivate *d;
+
+};
+
+#endif // KURLREQUESTERDIALOG_H
+
+// vim:ts=4:sw=4:tw=78