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.
tdegraphics/kdvi/optionDialogSpecialWidget.h

38 lines
924 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( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~optionDialogSpecialWidget();
public slots:
void apply();
void slotComboBox(int item);
void slotUserDefdEditorCommand( const TQString &text );
void slotExtraHelpButton( const TQString &anchor);
private:
TQStringList editorNameString, editorCommandString, editorDescriptionString;
TQString EditorCommand;
bool isUserDefdEditor;
TQString usersEditorCommand;
};
#endif // OPTIONDIALOGSPECIALWIDGET_H