okular/optionDialogSpecialWidget.h
Wilfried Huss 934522d43a Include cleanups
Patch by Angus Leeming

svn path=/trunk/KDE/kdegraphics/kdvi/; revision=462681
2005-09-21 18:10:56 +00:00

37 lines
919 B
C++

// -*- 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, Qt::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