Development/Architecture/KDE3/KFile Library: Difference between revisions

    From KDE TechBase
    m (Text replace - "</code>" to "</syntaxhighlight>")
     
    (2 intermediate revisions by 2 users not shown)
    Line 36: Line 36:
    are shown as clear text. For example:
    are shown as clear text. For example:


    <code cppqt3>
    <syntaxhighlight lang="cpp-qt">
    KURL u(QDir::homeDirPath());
    KURL u(QDir::homeDirPath());
    QString text = i18n("Home Directory");
    QString text = i18n("Home Directory");
    QPixmap pixmap = KMimeType::pixmapForURL(u, 0, KIcon::Small);
    QPixmap pixmap = KMimeType::pixmapForURL(u, 0, KIcon::Small);
    combobox->addDefaultURL(u, pixmap, text);
    combobox->addDefaultURL(u, pixmap, text);
    </code>
    </syntaxhighlight>


    === KFileFilter ===
    === KFileFilter ===
    Line 51: Line 51:
    of the following form:
    of the following form:


    <code cppqt3>
    <syntaxhighlight lang="cpp-qt">
    combo->setFilter("*.cpp|Implementation files\n*.h|Header files");
    combo->setFilter("*.cpp|Implementation files\n*.h|Header files");
    </code>
    </syntaxhighlight>


    This displays the clear text strings in the popup in order to select the  
    This displays the clear text strings in the popup in order to select the  
    according patterns. The other method is to give a list of MIME types:
    according patterns. The other method is to give a list of MIME types:


    <code cppqt3>
    <syntaxhighlight lang="cpp-qt">
    QStringList mimeTypes;
    QStringList mimeTypes;
    mimeTypes << "image/png";
    mimeTypes << "image/png";
    mimeTypes << "text/html";
    mimeTypes << "text/html";
    combo->setMimeFilter(mimeTypes);
    combo->setMimeFilter(mimeTypes);
    </code>
    </syntaxhighlight>


    == Other widgets ==
    == Other widgets ==
    Line 85: Line 85:
    [http://api.kde.org/3.5-api/kdelibs-apidocs/kdeui/html/classKComboBox.html KComboBox]):
    [http://api.kde.org/3.5-api/kdelibs-apidocs/kdeui/html/classKComboBox.html KComboBox]):


    <code cppqt3>
    <syntaxhighlight lang="cpp-qt">
    KCompletion *completion =
    KCompletion *completion =
         new KURLCompletion(KURLCompletion::ExeCompletion);
         new KURLCompletion(KURLCompletion::ExeCompletion);
    lineEdit->setCompletionObject(completion);
    lineEdit->setCompletionObject(completion);
    lineEdit->setAutoDeleteCompletionObject(true);
    lineEdit->setAutoDeleteCompletionObject(true);
    </code>
    </syntaxhighlight>


    === KURLPixmapProvider ===
    === KURLPixmapProvider ===
    Line 102: Line 102:
    can be easily added:
    can be easily added:


    <code cppqt3>
    <syntaxhighlight lang="cpp-qt">
    KPixmapProver *pixmapProvider = new KURLPixmapProvider();
    KPixmapProver *pixmapProvider = new KURLPixmapProvider();
    comboBox->setPixmapProvider(pixmapProvider);
    comboBox->setPixmapProvider(pixmapProvider);
    </code>
    </syntaxhighlight>


    === KURLRequester ===
    === KURLRequester ===

    Latest revision as of 20:49, 29 June 2011

    KDE's file dialogs are implemented in the kfile library, which also contains other widgets.

    File Dialog

    The classes related to the file dialog are really a file dialog construction set, i.e. the API not only contain the class KFileDialog with its conveniently usable functions to obtain file names for saving or opening, but it also offers the various single widgets that constitute the dialog for separate use.

    KFileDialog widgets

    KDirOperator

    The main view of the file dialog is a KDirOperator. It is a general browser for files and directories. How these lists and trees are actually represented is configurable by the user. All widgets possible for this are derived from the class KFileView. These are the following:

    • KFileIconView: Corresponds to selecting "Short view" and "Single view" from the View submenu.
    • KFileDetailView: Corresponds to selecting "Detailed view" and "Single view" from the View submenu.
    • KCombiView: Corresponds to selecting "Separate directories" from the View submenu. This is a splitter widget which displays a KFileIconView (see above) on the left side and either a KFileIconView (if "Short view" is selected) or a KFileDetailView (if "Detailed view" is selected) on the right side.
    • KFilePreview: Corresponds to selecting "Preview" from the View submenu. This is also a splitter, which shows a KFileIconView (if "Short view" is selected) or a KFileDetailView (if "Detailed view" is selected) on the left side and a widget derived from KPreviewWidgetBase on the right side. By default, the widget on the right side is a KImagePreviewWidget, but this can be changed. This should be very rarely necessary, because the KImagePreviewWidget uses a mechanism for obtaining preview images (also known as thumbnails) which can be extended by installing additional ThumbCreator services. In this way, the same preview images can also be used by Konqueror's icon view.

    KURLComboBox

    This is a combo box for selecting from a number of files and directories. It runs in one of three modes. The KURLComboBox at the top of the file dialog is in "Directories" mode, the one at the bottom in "Files" mode. Items in the popup menu are shown as URLs together with their MIME type icon. Additionally, one can add a number of default items which are shown as clear text. For example:

    KURL u(QDir::homeDirPath());
    QString text = i18n("Home Directory");
    QPixmap pixmap = KMimeType::pixmapForURL(u, 0, KIcon::Small);
    combobox->addDefaultURL(u, pixmap, text);
    

    KFileFilter

    This is a combo box for selecting from a number of file filters or MIME types. There are two ways to populate it with items:

    First, you can give a linebreak-separated list of strings of the following form:

    combo->setFilter("*.cpp|Implementation files\n*.h|Header files");
    

    This displays the clear text strings in the popup in order to select the according patterns. The other method is to give a list of MIME types:

    QStringList mimeTypes;
    mimeTypes << "image/png";
    mimeTypes << "text/html";
    combo->setMimeFilter(mimeTypes);
    

    Other widgets

    Apart from the widgets used in the file dialog, there is a number of related classes (partially contained in the ksycoca library):

    KURLCompletion

    This is a subclass of KCompletion and specifically designed to provide automatic completions for URLs. It can operate in one of two modes: ExeCompletion completes names of executables by searching them in $PATH (if they are not given as absolute file names). FileCompletion completes generic URLs. This works even for remote addresses.

    Completion support can easily be added to line edits (derived from KLineEdit) or combo boxes (derived from KComboBox):

    KCompletion *completion =
        new KURLCompletion(KURLCompletion::ExeCompletion);
    lineEdit->setCompletionObject(completion);
    lineEdit->setAutoDeleteCompletionObject(true);
    

    KURLPixmapProvider

    This is a subclass of KPixmapProvider which resolves pixmaps for URLs.

    Support for URL icons in combo boxes (derived from KComboBox) can be easily added:

    KPixmapProver *pixmapProvider = new KURLPixmapProvider();
    comboBox->setPixmapProvider(pixmapProvider);
    

    KURLRequester

    This is a lineedit combined with a button that invokes a file dialog. It uses the KURLCompletion class described above.

    KURLRequesterDlg

    A simple dialog for letting the user input a file name or URL. It is a very thin wrapper around the KURLRequester widget. For example, this is used when you choose "Location->Open Location" in Konqueror.

    KOpenWithDlg

    The dialog shown by Konqueror when you click on a file with unknown MIME type.

    KPropertiesDialog

    The properties dialog you get when you choose the "Properties" item from Konqueror's context menu or the context menu in the file dialog. The dialog can be extended with more tabs by inserting additional KPropsDlgPlugin) widgets.

    KIconDialog

    A dialog for selecting icons.

    Furthermore, a number of additional IO jobs:

    KDirSize

    This computes the sum of the file sizes in a directory.

    KDiskFreeSp

    A class for finding out the free disk space on a disk.

    KIO::PreviewJob

    A job for creating thumbnails for a set of files.


    Initial Author: Bernd Gehrmann