You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/kcontrol/filetypes/filetypedetails.h

65 lines
1.6 KiB

#ifndef _FILETYPEDETAILS_H
#define _FILETYPEDETAILS_H
#include <qtabwidget.h>
class TypesListItem;
class KIconButton;
class QLineEdit;
class QListBox;
class QButtonGroup;
class QCheckBox;
class QRadioButton;
class QPushButton;
class KServiceListWidget;
/**
* This widget contains the right part of the file type configuration
* dialog, that shows the details for a file type.
* It is implemented as a separate class so that it can be used by
* the keditfiletype program to show the details of a single mimetype.
*/
class FileTypeDetails : public QTabWidget
{
Q_OBJECT
public:
FileTypeDetails(QWidget *parent = 0, const char *name = 0);
void setTypeItem( TypesListItem * item );
protected:
void updateRemoveButton();
void updateAskSave();
signals:
void embedMajor(const QString &major, bool &embed); // To adjust whether major type is being embedded
void changed(bool);
protected slots:
void updateIcon(QString icon);
void updateDescription(const QString &desc);
void addExtension();
void removeExtension();
void enableExtButtons(int index);
void slotAutoEmbedClicked(int button);
void slotAskSaveToggled(bool);
private:
TypesListItem * m_item;
// First tab - General
KIconButton *iconButton;
QListBox *extensionLB;
QPushButton *addExtButton, *removeExtButton;
QLineEdit *description;
KServiceListWidget *serviceListWidget;
// Second tab - Embedding
QButtonGroup *m_autoEmbed;
KServiceListWidget *embedServiceListWidget;
QRadioButton *m_rbOpenSeparate;
QCheckBox *m_chkAskSave;
QRadioButton *m_rbGroupSettings;
};
#endif