blob: 2c90ded3cb876ec7cca76fa921b45990a6d0972e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// 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
|