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.
37 lines
915 B
37 lines
915 B
// -*- C++ -*-
|
|
// 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
|
|
|
|
#include "optionDialogSpecialWidget_base.h"
|
|
|
|
|
|
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 slotComboBox(int item);
|
|
void slotUserDefdEditorCommand( const QString &text );
|
|
void slotExtraHelpButton( const QString &anchor);
|
|
|
|
private:
|
|
QStringList editorNameString, editorCommandString, editorDescriptionString;
|
|
QString EditorCommand;
|
|
bool isUserDefdEditor;
|
|
QString usersEditorCommand;
|
|
};
|
|
|
|
#endif // OPTIONDIALOGSPECIALWIDGET_H
|