libtdepim

kpimurlrequesterdlg.cpp
1/* This file is part of the KDE libraries
2 Copyright (C) 2000 Wilco Greven <greven@kde.org>
3
4 library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 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 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
18*/
19
20
21#include <kpimurlrequesterdlg.h>
22#include <tderecentdocument.h>
23#include <kurlrequesterdlg.h>
24#include <tdelocale.h>
25
26// KDE3.4 or KDE4.0: FIXME: Move to tdelibs!
27KURL KPimURLRequesterDlg::getURL( const TQString& dir, const TQString &label,
28 TQWidget *parent, const TQString& caption )
29{
30 KURLRequesterDlg dlg(dir, label, parent, "filedialog", true);
31
32 dlg.setCaption(caption.isNull() ? i18n("Open") : caption);
33
34 dlg.exec();
35
36 const KURL& url = dlg.selectedURL();
37 if (url.isValid())
38 TDERecentDocument::add(url);
39
40 return url;
41}