KMimeTypeChooserDialog Class Reference

#include <kmimetypechooser.h>

Inherits KDialogBase.

List of all members.

Public Member Functions

 KMimeTypeChooserDialog (const QString &caption=QString::null, const QString &text=QString::null, const QStringList &selectedMimeTypes=QStringList(), const QString &defaultGroup=QString::null, const QStringList &groupsToShow=QStringList(), int visuals=KMimeTypeChooser::Comments|KMimeTypeChooser::Patterns|KMimeTypeChooser::EditButton, QWidget *parent=0, const char *name=0)
 KMimeTypeChooserDialog (const QString &caption, const QString &text, const QStringList &selectedMimeTypes, const QString &defaultGroup, QWidget *parent=0, const char *name=0)
KMimeTypeChooserchooser ()

Detailed Description

A Dialog to choose some mimetypes.

Provides a checkable tree list of mimetypes, with icons and optinally comments and patterns, and an (optional) button to display the KDE mimetype editor.

Here is an example, using the dialog to set the text of two lineedits:

    QString text = i18n("Select the MimeTypes you want for this file type.");
    QStringList list = QStringList::split( QRegExp("\\s*;\\s*"), leMimetypes->text() );
    KMimeTypeChooserDialog *d = new KMimeTypeChooserDialog( this, 0,
                  i18n("Select Mime Types"), text, list, "text" );
    if ( d->exec() == KDialogBase::Accepted ) {
      leWildcards->setText( d->chooser()->patterns().join(";") );
      leMimetypes->setText( d->chooser()->mimeTypes().join(";") );
    }
Author:
Anders Lund (anders at alweb dk) dec 19, 2001

Definition at line 131 of file kmimetypechooser.h.


Constructor & Destructor Documentation

KMimeTypeChooserDialog::KMimeTypeChooserDialog ( const QString caption = QString::null,
const QString text = QString::null,
const QStringList selectedMimeTypes = QStringList(),
const QString defaultGroup = QString::null,
const QStringList groupsToShow = QStringList(),
int  visuals = KMimeTypeChooser::Comments|KMimeTypeChooser::Patterns|KMimeTypeChooser::EditButton,
QWidget parent = 0,
const char *  name = 0 
)

Create a KMimeTypeChooser dialog.

Parameters:
captionThe title of the dialog
textA Text to display above the list
selectedMimeTypesA list of mimetype names, theese will be checked in the list if they exist. patterns will be added to the list view.
visualsA OR'd KMimetypeChooser::Visuals enum to decide which data and buttons to display.
defaultGroupThe group to open when no groups are selected (like "text"). If not provided, no group is opened. If groupsToShow is provided and defaultGroup is not a member of that, it is ignored.
groupsToShowa list of mimetype groups to show. If empty, all groups are shown.
parentThe parent widget to use
nameThe internal name of this object

Definition at line 249 of file kmimetypechooser.cpp.

KMimeTypeChooserDialog::KMimeTypeChooserDialog ( const QString caption,
const QString text,
const QStringList selectedMimeTypes,
const QString defaultGroup,
QWidget parent = 0,
const char *  name = 0 
)

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Definition at line 269 of file kmimetypechooser.cpp.


Member Function Documentation

Returns:
a pointer to the KMimeTypeChooser widget

Definition at line 174 of file kmimetypechooser.h.


The documentation for this class was generated from the following files:
KDE Home | KDE Accessibility Home | Description of Access Keys