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.
41 lines
1020 B
41 lines
1020 B
// optionDialogSpecialWidget.h |
|
// |
|
// Part of KDVI - A DVI previewer for the KDE desktop environemt |
|
// |
|
// (C) 2003 Stefan Kebekus |
|
// Distributed under the GPL |
|
|
|
#ifndef OPTIONDIALOGSPECIALWIDGET_H |
|
#define OPTIONDIALOGSPECIALWIDGET_H |
|
|
|
// Add header files alphabetically |
|
|
|
#include "optionDialogSpecialWidget_base.h" |
|
|
|
class KConfig; |
|
class KInstance; |
|
|
|
class optionDialogSpecialWidget : public optionDialogSpecialWidget_base |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
optionDialogSpecialWidget( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
|
~optionDialogSpecialWidget(); |
|
|
|
public slots: |
|
void apply(void); |
|
void slotComboBox(int item); |
|
void slotUserDefdEditorCommand( const QString &text ); |
|
void slotExtraHelpButton( const QString &anchor); |
|
|
|
private: |
|
KInstance *instance; |
|
KConfig *config; |
|
QStringList editorNameString, editorCommandString, editorDescriptionString; |
|
QString EditorCommand; |
|
bool isUserDefdEditor; |
|
QString usersEditorCommand; |
|
}; |
|
|
|
#endif // OPTIONDIALOGSPECIALWIDGET_H
|
|
|