KFileDialog Class Reference
Provides a user (and developer) friendly way to select files and directories. A file selection dialog. More...
#include <kfiledialog.h>
Inheritance diagram for KFileDialog:


Public Types | |
enum | OperationMode { Other = 0, Opening, Saving } |
Signals | |
void | fileSelected (const QString &) |
void | fileHighlighted (const QString &) |
void | selectionChanged () |
void | filterChanged (const QString &filter) |
Public Member Functions | |
KFileDialog (const QString &startDir, const QString &filter, QWidget *parent, const char *name, bool modal) | |
KFileDialog (const QString &startDir, const QString &filter, QWidget *parent, const char *name, bool modal, QWidget *widget) | |
~KFileDialog () | |
KURL | selectedURL () const |
KURL::List | selectedURLs () const |
KURL | baseURL () const |
QString | selectedFile () const |
QStringList | selectedFiles () const |
void | setURL (const KURL &url, bool clearforward=true) |
void | setSelection (const QString &name) |
void | setOperationMode (KFileDialog::OperationMode) |
OperationMode | operationMode () const |
void | setKeepLocation (bool keep) |
bool | keepsLocation () const |
void | setFilter (const QString &filter) |
QString | currentFilter () const |
void | setFilterMimeType (const QString &label, const KMimeType::List &types, const KMimeType::Ptr &defaultType) KDE_DEPRECATED |
KMimeType::Ptr | currentFilterMimeType () |
void | setMimeFilter (const QStringList &types, const QString &defaultType=QString::null) |
QString | currentMimeFilter () const |
void | clearFilter () |
void | setPreviewWidget (const QWidget *w) KDE_DEPRECATED |
void | setPreviewWidget (const KPreviewWidgetBase *w) |
virtual void | show () |
void | setMode (KFile::Mode m) |
void | setMode (unsigned int m) |
KFile::Mode | mode () const |
void | setLocationLabel (const QString &text) |
KToolBar * | toolBar () const |
KPushButton * | okButton () const |
KPushButton * | cancelButton () const |
KURLBar * | speedBar () |
KActionCollection * | actionCollection () const |
int | pathComboIndex () |
Static Public Member Functions | |
QString | getOpenFileName (const QString &startDir=QString::null, const QString &filter=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
QString | getOpenFileNameWId (const QString &startDir, const QString &filter, WId parent_id, const QString &caption) |
QStringList | getOpenFileNames (const QString &startDir=QString::null, const QString &filter=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
KURL | getOpenURL (const QString &startDir=QString::null, const QString &filter=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
KURL::List | getOpenURLs (const QString &startDir=QString::null, const QString &filter=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
QString | getSaveFileName (const QString &startDir=QString::null, const QString &filter=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
QString | getSaveFileNameWId (const QString &dir, const QString &filter, WId parent_id, const QString &caption) |
KURL | getSaveURL (const QString &startDir=QString::null, const QString &filter=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
QString | getExistingDirectory (const QString &startDir=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
KURL | getExistingURL (const QString &startDir=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
KURL | getImageOpenURL (const QString &startDir=QString::null, QWidget *parent=0, const QString &caption=QString::null) |
KURL | getStartURL (const QString &startDir, QString &recentDirClass) |
void | setStartDir (const KURL &directory) |
Protected Slots | |
void | urlEntered (const KURL &) |
void | enterURL (const KURL &url) |
void | enterURL (const QString &url) |
void | locationActivated (const QString &url) |
void | toolbarCallback (int) |
void | pathComboChanged (const QString &) |
void | dirCompletion (const QString &) |
void | slotFilterChanged () |
void | fileHighlighted (const KFileItem *i) |
void | fileSelected (const KFileItem *i) |
void | slotStatResult (KIO::Job *job) |
void | slotLoadingFinished () |
void | fileCompletion (const QString &) |
void | toggleSpeedbar (bool) |
void | toggleBookmarks (bool show) |
virtual void | updateStatusLine (int dirs, int files) |
virtual void | slotOk () |
virtual void | accept () |
virtual void | slotCancel () |
void | slotAutoSelectExtClicked () |
void | addToRecentDocuments () |
void | initSpeedbar () |
Protected Member Functions | |
virtual void | keyPressEvent (QKeyEvent *e) |
void | init (const QString &startDir, const QString &filter, QWidget *widget) |
virtual void | initGUI () |
void | multiSelectionChanged () |
virtual void | readConfig (KConfig *, const QString &group=QString::null) |
virtual void | writeConfig (KConfig *, const QString &group=QString::null) |
virtual void | readRecentFiles (KConfig *) |
virtual void | saveRecentFiles (KConfig *) |
KURL::List | tokenize (const QString &line) const |
KURL | getCompleteURL (const QString &) |
QString | currentFilterExtension () |
void | updateAutoSelectExtension () |
KURL::List & | parseSelectedURLs () const |
virtual void | virtual_hook (int id, void *data) |
Protected Attributes | |
KToolBar * | toolbar |
KURLComboBox * | locationEdit |
KFileFilterCombo * | filterWidget |
KDirOperator * | ops |
bool | autoDirectoryFollowing |
Static Protected Attributes | |
KURL * | lastDirectory |
Detailed Description
Provides a user (and developer) friendly way to select files and directories. A file selection dialog.The widget can be used as a drop in replacement for the QFileDialog widget, but has greater functionality and a nicer GUI.
You will usually want to use one of the static methods getOpenFileName(), getSaveFileName(), getOpenURL() or for multiple files getOpenFileNames() or getOpenURLs().
The dialog has been designed to allow applications to customise it by subclassing. It uses geometry management to ensure that subclasses can easily add children that will be incorporated into the layout.

KDE File Dialog
- Author:
- Richard J. Moore <rich@kde.org>, Carsten Pfeiffer <pfeiffer@kde.org>
Definition at line 77 of file kfiledialog.h.
Member Enumeration Documentation
|
Defines some default behavior of the filedialog.
E.g. in mode
Definition at line 94 of file kfiledialog.h. Referenced by operationMode(). |
Constructor & Destructor Documentation
|
Constructs a file dialog.
Definition at line 168 of file kfiledialog.cpp. References init(), and KFileDialog(). Referenced by KFileDialog(). |
|
Constructs a file dialog. The parameters here are identical to the first constructor except for the addition of a QWidget parameter. Historical note: The original version of KFileDialog did not have this extra parameter. It was added later, and, in order to maintain binary compatibility, it was placed in a new constructor instead of added to the original one.
Definition at line 175 of file kfiledialog.cpp. References init(), and KFileDialog(). |
|
Destructs the file dialog.
Definition at line 183 of file kfiledialog.cpp. References KGlobal::config(), and KConfigBase::sync(). |
Member Function Documentation
|
Definition at line 1428 of file kfiledialog.cpp. References QDialog::result(). Referenced by getImageOpenURL(), getOpenURL(), KEncodingFileDialog::getOpenURLAndEncoding(), getSaveURL(), KEncodingFileDialog::getSaveURLAndEncoding(), and KURLRequester::slotOpenDialog(). |
|
Definition at line 1436 of file kfiledialog.cpp. References QValueList< KURL >::append(), KDirOperator::mode(), and QDialog::result(). Referenced by getOpenURLs(), and KEncodingFileDialog::getOpenURLsAndEncoding(). |
|
Definition at line 1568 of file kfiledialog.cpp. References KDirOperator::url(). |
|
Returns the full path of the selected file in the local filesystem. (Local files only) Definition at line 1529 of file kfiledialog.cpp. References QDialog::result(). Referenced by getOpenFileName(), KEncodingFileDialog::getOpenFileNameAndEncoding(), getOpenFileNameWId(), getSaveFileName(), KEncodingFileDialog::getSaveFileNameAndEncoding(), and getSaveFileNameWId(). |
|
Returns a list of all selected local files.
Definition at line 1544 of file kfiledialog.cpp. References QValueList< KURL >::begin(), QValueList< KURL >::end(), KDirOperator::mode(), and QDialog::result(). Referenced by getOpenFileNames(), and KEncodingFileDialog::getOpenFileNamesAndEncoding(). |
|
Sets the directory to view.
Definition at line 1143 of file kfiledialog.cpp. References KDirOperator::setURL(), and setURL(). Referenced by setSelection(), and setURL(). |
|
Sets the file name to preselect to This takes absolute URLs and relative file names. Definition at line 1206 of file kfiledialog.cpp. References endl(), QFile::exists(), KURL::fileName(), QString::findRev(), getCompleteURL(), KFileItem::isDir(), QString::isEmpty(), KURL::isLocalFile(), KURL::isValid(), kdDebug(), kdWarning(), QComboBox::lineEdit(), KURL::path(), KURL::setFileName(), KURL::setQuery(), setSelection(), setURL(), KDirOperator::url(), and KURL::url(). Referenced by getSaveFileName(), KEncodingFileDialog::getSaveFileNameAndEncoding(), getSaveFileNameWId(), getSaveURL(), KEncodingFileDialog::getSaveURLAndEncoding(), init(), setSelection(), and KURLRequester::slotOpenDialog(). |
|
Sets the operational mode of the filedialog to This will set some flags that are specific to loading or saving files. E.g. setKeepLocation() makes mostly sense for a save-as dialog. So setOperationMode( KFileDialog::Saving ); sets setKeepLocation for example.
The mode
The default mode is Call this method right after instantiating KFileDialog.
Definition at line 1812 of file kfiledialog.cpp. References setOperationMode(), and updateAutoSelectExtension(). Referenced by getImageOpenURL(), getOpenFileName(), getOpenFileNames(), getOpenFileNameWId(), getOpenURL(), getOpenURLs(), getSaveFileName(), getSaveFileNameWId(), getSaveURL(), and setOperationMode(). |
|
Definition at line 1827 of file kfiledialog.cpp. References OperationMode. Referenced by updateAutoSelectExtension(). |
|
Sets whether the filename/url should be kept when changing directories. This is for example useful when having a predefined filename where the full path for that file is searched. This is implicitly set when operationMode() is KFileDialog::Saving getSaveFileName() and getSaveURL() set this to true by default, so that you can type in the filename and change the directory without having to type the name again. Definition at line 1802 of file kfiledialog.cpp. References setKeepLocation(). Referenced by setKeepLocation(). |
|
Definition at line 1807 of file kfiledialog.cpp. |
|
Sets the filter to be used to
You can set more filters for the user to select separated by '
Note: The text to display is not parsed in any way. So, if you want to show the suffix to select by a specific filter, you must repeat it. If the filter contains an unescaped '/', a mimetype-filter is assumed. If you would like a '/' visible in your filter it can be escaped with a '\'. You can specify multiple mimetypes like this (separated with space):
Definition at line 204 of file kfiledialog.cpp. References KDirOperator::clearFilter(), QString::find(), KShortcut::remove(), setFilter(), setMimeFilter(), KDirOperator::setNameFilter(), and updateAutoSelectExtension(). Referenced by init(), KURLRequester::setFilter(), and setFilter(). |
|
Returns the current filter as entered by the user or one of the predefined set via setFilter().
Definition at line 233 of file kfiledialog.cpp. Referenced by updateAutoSelectExtension(). |
|
Sets the filter up to specify the output type.
Definition at line 239 of file kfiledialog.cpp. References QValueList< Ptr >::begin(), QValueList< Ptr >::end(), setFilterMimeType(), and setMimeFilter(). Referenced by setFilterMimeType(). |
|
Returns the mimetype for the desired output format. This is only valid if setFilterMimeType() has been called previously.
Definition at line 292 of file kfiledialog.cpp. References currentMimeFilter(). |
|
Sets the filter up to specify the output type.
Definition at line 253 of file kfiledialog.cpp. References KDirOperator::clearFilter(), QString::isEmpty(), KDirOperator::setMimeFilter(), setMimeFilter(), and updateAutoSelectExtension(). Referenced by setFilter(), setFilterMimeType(), and setMimeFilter(). |
|
The mimetype for the desired output format. This is only valid if setMimeFilter() has been called previously.
Definition at line 281 of file kfiledialog.cpp. Referenced by currentFilterMimeType(). |
|
Clears any mime- or namefilter. Does not reload the directory. Definition at line 270 of file kfiledialog.cpp. References KDirOperator::clearFilter(), and updateAutoSelectExtension(). |
|
Ownership is transferred to KFileDialog. You need to create the preview-widget with "new", i.e. on the heap. Definition at line 297 of file kfiledialog.cpp. References KDirOperator::clearHistory(), KDirOperator::setPreviewWidget(), and setPreviewWidget(). Referenced by getImageOpenURL(), and setPreviewWidget(). |
|
Adds a preview widget and enters the preview mode. In this mode the dialog is split and the right part contains your preview widget. Ownership is transferred to KFileDialog. You need to create the preview-widget with "new", i.e. on the heap.
Definition at line 303 of file kfiledialog.cpp. References KDirOperator::clearHistory(), KDirOperator::setPreviewWidget(), and setPreviewWidget(). |
|
Creates a modal file dialog and return the selected filename or an empty string if none was chosen. Note that with this method the user must select an existing filename.
Definition at line 1300 of file kfiledialog.cpp. References KDirOperator::clearHistory(), QDialog::exec(), getOpenFileName(), QString::isNull(), ops, selectedFile(), KDialog::setCaption(), setMode(), and setOperationMode(). Referenced by getOpenFileName(). |
|
Use this version only if you have no QWidget available as parent widget. This can be the case if the parent widget is a widget in another process or if the parent widget is a non-Qt widget. For example, in a GTK program.
Definition at line 1316 of file kfiledialog.cpp. References KDirOperator::clearHistory(), QDialog::exec(), getOpenFileNameWId(), QString::isNull(), ops, selectedFile(), KDialog::setCaption(), setMode(), and setOperationMode(). Referenced by getOpenFileNameWId(). |
|
Creates a modal file dialog and returns the selected filenames or an empty list if none was chosen. Note that with this method the user must select an existing filename.
Definition at line 1340 of file kfiledialog.cpp. References KDirOperator::clearHistory(), QDialog::exec(), getOpenFileNames(), QString::isNull(), ops, selectedFiles(), KDialog::setCaption(), setMode(), and setOperationMode(). Referenced by getOpenFileNames(). |
|
Creates a modal file dialog and returns the selected URL or an empty string if none was chosen. Note that with this method the user must select an existing URL.
Definition at line 1356 of file kfiledialog.cpp. References KDirOperator::clearHistory(), QDialog::exec(), getOpenURL(), QString::isNull(), ops, selectedURL(), KDialog::setCaption(), setMode(), and setOperationMode(). Referenced by getOpenURL(). |
|
Creates a modal file dialog and returns the selected URLs or an empty list if none was chosen. Note that with this method the user must select an existing filename.
Definition at line 1370 of file kfiledialog.cpp. References KDirOperator::clearHistory(), QDialog::exec(), getOpenURLs(), QString::isNull(), ops, selectedURLs(), KDialog::setCaption(), setMode(), and setOperationMode(). Referenced by getOpenURLs(). |
|
Creates a modal file dialog and returns the selected filename or an empty string if none was chosen. Note that with this method the user need not select an existing filename.
Definition at line 1573 of file kfiledialog.cpp. References QString::at(), QDialog::exec(), getSaveFileName(), QString::isEmpty(), QString::isNull(), selectedFile(), KDialog::setCaption(), setOperationMode(), and setSelection(). Referenced by getSaveFileName(). |
|
This function accepts the window id of the parent window, instead of QWidget*. It should be used only when necessary.
Definition at line 1594 of file kfiledialog.cpp. References QString::at(), QDialog::exec(), getSaveFileNameWId(), QString::isEmpty(), QString::isNull(), selectedFile(), KDialog::setCaption(), setOperationMode(), and setSelection(). Referenced by getSaveFileNameWId(). |
|
Creates a modal file dialog and returns the selected filename or an empty string if none was chosen. Note that with this method the user need not select an existing filename.
Definition at line 1623 of file kfiledialog.cpp. References QString::at(), QDialog::exec(), getSaveURL(), QString::isNull(), KURL::isValid(), selectedURL(), KDialog::setCaption(), setOperationMode(), and setSelection(). Referenced by getSaveURL(). |
|
Creates a modal file dialog and returns the selected directory or an empty string if none was chosen.
Definition at line 1393 of file kfiledialog.cpp. References getExistingDirectory(), KURL::isValid(), and KURL::path(). Referenced by getExistingDirectory(). |
|
Creates a modal file dialog and returns the selected directory or an empty string if none was chosen. Contrary to getExistingDirectory(), this method allows the selection of a remote directory.
Definition at line 1386 of file kfiledialog.cpp. References getExistingURL(). Referenced by getExistingURL(). |
|
Creates a modal file dialog with an image previewer and returns the selected url or an empty string if none was chosen.
Definition at line 1410 of file kfiledialog.cpp. References QDialog::exec(), getImageOpenURL(), QString::isNull(), QStringList::join(), selectedURL(), KDialog::setCaption(), setMode(), setOperationMode(), and setPreviewWidget(). Referenced by getImageOpenURL(). |
|
Convenient overload of the other setMode(unsigned int) method.
Definition at line 1654 of file kfiledialog.cpp. References KDirOperator::dirOnlyMode(), KDirOperator::setMode(), setMode(), and updateAutoSelectExtension(). Referenced by KURLRequester::fileDialog(), getImageOpenURL(), getOpenFileName(), KEncodingFileDialog::getOpenFileNameAndEncoding(), getOpenFileNames(), KEncodingFileDialog::getOpenFileNamesAndEncoding(), getOpenFileNameWId(), getOpenURL(), KEncodingFileDialog::getOpenURLAndEncoding(), getOpenURLs(), KEncodingFileDialog::getOpenURLsAndEncoding(), and setMode(). |
|
Sets the mode of the dialog. The mode is defined as (in kfile.h): You can OR the values, e.g.
Definition at line 1667 of file kfiledialog.cpp. References setMode(). |
|
Returns the mode of the filedialog.
Definition at line 1672 of file kfiledialog.cpp. References KDirOperator::mode(). Referenced by KURLRequester::slotOpenDialog(), and updateAutoSelectExtension(). |
|
Sets the text to be displayed in front of the selection. The default is "Location". Most useful if you want to make clear what the location is used for. Definition at line 199 of file kfiledialog.cpp. References setLocationLabel(). Referenced by setLocationLabel(). |
|
Returns a pointer to the toolbar. You can use this to insert custom items into it, e.g.:
Definition at line 722 of file kfiledialog.h. Referenced by KEncodingFileDialog::KEncodingFileDialog(). |
|
Definition at line 1776 of file kfiledialog.cpp. |
|
Definition at line 1781 of file kfiledialog.cpp. |
|
Definition at line 1786 of file kfiledialog.cpp. |
|
Definition at line 2157 of file kfiledialog.cpp. References KDirOperator::actionCollection(). Referenced by toggleBookmarks(), and toggleSpeedbar(). |
|
Definition at line 2244 of file kfiledialog.cpp. |
|
This method implements the logic to determine the user's default directory to be listed. E.g. the documents direcory, home directory or a recently used directory.
Definition at line 2259 of file kfiledialog.cpp. References QDir::currentDirPath(), getStartURL(), QDir::homeDirPath(), KURL::isEmpty(), QString::isEmpty(), KURL::path(), and KURL::setPath(). Referenced by getStartURL(), and init(). |
|
Emitted when the user selects a file. It is only emitted in single- selection mode. The best way to get notified about selected file(s) is to connect to the okClicked() signal inherited from KDialogBase and call selectedFile(), selectedFiles(), selectedURL() or selectedURLs(). Referenced by init(). |
|
Emitted when the user highlights a file.
Referenced by init(). |
|
Emitted when the user hilights one or more files in multiselection mode. Note: fileHighlighted() or fileSelected() are not emitted in multiselection mode. You may use selectedItems() to ask for the current highlighted items.
|
|
Emitted when the filter changed, i.e. the user entered an own filter or chose one of the predefined set via setFilter().
Referenced by init(). |
|
Reimplemented to animate the cancel button.
Reimplemented from KDialogBase. Definition at line 2162 of file kfiledialog.cpp. References QKeyEvent::accept(), QKeyEvent::key(), and keyPressEvent(). Referenced by keyPressEvent(). |
|
|
rebuild geometry management.
Definition at line 1055 of file kfiledialog.cpp. References QGridLayout::addWidget(), and QGridLayout::setColStretch(). Referenced by init(). |
|
called when an item is highlighted/selected in multiselection mode. handles setting the locationEdit. Definition at line 737 of file kfiledialog.cpp. References QString::append(), QComboBox::clearEdit(), QPtrListIterator::current(), QComboBox::lineEdit(), KFileItem::name(), KDirOperator::selectedItems(), and QString::stripWhiteSpace(). |
|
Reads configuration and applies it (size, recent directories, ...).
Definition at line 1678 of file kfiledialog.cpp. References KGlobalSettings::completionMode(), KConfigBase::group(), QString::isEmpty(), KConfigBase::readBoolEntry(), KDirOperator::readConfig(), readConfig(), KConfigBase::readNumEntry(), KConfigBase::readPathListEntry(), KCompletionBase::setCompletionMode(), KConfigBase::setGroup(), KURLComboBox::setMaxItems(), KURLComboBox::setURL(), KURLComboBox::setURLs(), KToolBar::sizeHint(), toggleBookmarks(), toggleSpeedbar(), updateAutoSelectExtension(), KDirOperator::url(), and QSize::width(). Referenced by init(), and readConfig(). |
|
Saves the current configuration.
Definition at line 1729 of file kfiledialog.cpp. References KCompletionBase::completionMode(), KConfigBase::group(), QString::isEmpty(), KConfigBase::setGroup(), KDirOperator::writeConfig(), writeConfig(), KConfigBase::writeEntry(), and KConfigBase::writePathEntry(). Referenced by writeConfig(). |
|
Reads the recent used files and inserts them into the location combobox.
Definition at line 1751 of file kfiledialog.cpp. References KConfigBase::group(), QComboBox::insertItem(), KConfigBase::readNumEntry(), KConfigBase::readPathListEntry(), readRecentFiles(), KComboBox::setCurrentItem(), KConfigBase::setGroup(), KURLComboBox::setMaxItems(), and KURLComboBox::setURLs(). Referenced by init(), and readRecentFiles(). |
|
Saves the entries from the location combobox.
Definition at line 1766 of file kfiledialog.cpp. References KConfigBase::group(), saveRecentFiles(), KConfigBase::setGroup(), KURLComboBox::urls, and KConfigBase::writePathEntry(). Referenced by saveRecentFiles(). |
|
Parses the string "line" for files. If line doesn't contain any ", the whole line will be interpreted as one file. If the number of " is odd, an empty list will be returned. Otherwise, all items enclosed in " " will be returned as correct urls. Definition at line 1483 of file kfiledialog.cpp. References QValueList< KURL >::append(), QString::contains(), QString::find(), KURL::isValid(), QString::mid(), KURL::setFileName(), tokenize(), and KDirOperator::url(). Referenced by tokenize(). |
|
Returns the absolute version of the URL specified in locationEdit.
Definition at line 309 of file kfiledialog.cpp. References KURL::addPath(), KURL::cleanPath(), getCompleteURL(), QString::isEmpty(), KURL::setPath(), KShell::tildeExpand(), and KDirOperator::url(). Referenced by getCompleteURL(), and setSelection(). |
|
Returns the filename extension associated with the currentFilter(). QString::null is returned if an extension is not available or if operationMode() != Saving.
Definition at line 1886 of file kfiledialog.cpp. |
|
Updates the currentFilterExtension and the availability of the Automatically Select Extension Checkbox (visible if operationMode() == Saving and enabled if an extension _will_ be associated with the currentFilter(), _after_ this call). You should call this after filterWidget->setCurrentItem().
Definition at line 1891 of file kfiledialog.cpp. References QString::arg(), QString::at(), currentFilter(), endl(), QString::find(), QString::isEmpty(), kdDebug(), QString::lower(), mode(), and operationMode(). Referenced by clearFilter(), readConfig(), setFilter(), setMimeFilter(), setMode(), and setOperationMode(). |
|
Definition at line 1197 of file kfiledialog.cpp. References toolbarCallback(). Referenced by toolbarCallback(). |
|
Definition at line 1275 of file kfiledialog.cpp. References pathComboChanged(). Referenced by pathComboChanged(). |
|
Definition at line 1278 of file kfiledialog.cpp. References dirCompletion(). Referenced by dirCompletion(). |
|
Definition at line 2173 of file kfiledialog.cpp. References KActionCollection::action(), actionCollection(), KDirOperator::actionCollection(), KURL::equals(), KAction::isPlugged(), KAction::plug(), KURL::setPath(), toggleSpeedbar(), KAction::unplug(), and KURLBarItem::url(). Referenced by init(), readConfig(), and toggleSpeedbar(). |
|
Definition at line 2209 of file kfiledialog.cpp. References KActionCollection::action(), actionCollection(), KToolBar::getButton(), KToolBar::insertButton(), KToolBar::removeItem(), KToolBarButton::setPopup(), and toggleBookmarks(). Referenced by init(), readConfig(), and toggleBookmarks(). |
|
Definition at line 1295 of file kfiledialog.cpp. References endl(), kdWarning(), and updateStatusLine(). Referenced by updateStatusLine(). |
The documentation for this class was generated from the following files: