blob: ce8c85f30728297f46f56164b23a241e230457ed (
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
|
// -*- C++ -*-
// optionDialogFontsWidget.h
//
// Part of KDVI - A DVI previewer for the KDE desktop environemt
//
// (C) 2003 Stefan Kebekus
// Distributed under the GPL
#ifndef OPTIONDIALOGFONTSWIDGET_H
#define OPTIONDIALOGFONTSWIDGET_H
#include "optionDialogFontsWidget_base.h"
class optionDialogFontsWidget : public optionDialogFontsWidget_base
{
Q_OBJECT
TQ_OBJECT
public:
optionDialogFontsWidget( TQWidget* tqparent = 0, const char* name = 0, WFlags fl = 0 );
~optionDialogFontsWidget();
};
#endif // OPTIONDIALOGFONTSWIDGET_H
|