okular/optiondialog.h
Stefan Kebekus bc3b74b17a make the option dialog more modular, for future interaction with kviewshell
svn path=/trunk/kdegraphics/kdvi/; revision=203637
2003-01-29 21:23:55 +00:00

30 lines
479 B
C++

// optiondialog.h
//
// Part of KDVI - A DVI previewer for the KDE desktop environemt
//
// (C) 2003 Stefan Kebekus
// Distributed under the GPL
#ifndef OPTIONDIALOG
#define OPTIONDIALOG
#include <kdialogbase.h>
class OptionDialog : public KDialogBase
{
Q_OBJECT
public:
OptionDialog( QWidget *parent=0, const char *name=0, bool modal=true);
protected slots:
void slotOk(void);
void slotApply(void);
signals:
void preferencesChanged();
};
#endif