summaryrefslogtreecommitdiffstats
path: root/kdvi/optionDialogSpecialWidget.h
blob: b7772107a392e071b352bdb9e3ecaaeb618ad1d0 (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
37
// -*- 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