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.
26 lines
552 B
26 lines
552 B
// -*- 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* parent = 0, const char* name = 0, WFlags fl = 0 );
|
|
~optionDialogFontsWidget();
|
|
};
|
|
|
|
#endif // OPTIONDIALOGFONTSWIDGET_H
|