qtdmm/src/displayprefs.h

49 lines
1.6 KiB
C++
Executable File

//======================================================================
// File: displayprefs.h
// Author: Matthias Toussaint
// Created: Sun Nov 24 15:08:12 CET 2002
//----------------------------------------------------------------------
// Permission to use, copy, modify, and distribute this software and its
// documentation for any purpose and without fee is hereby granted,
// provided that below copyright notice appear in all copies and that
// both that copyright notice and this permission notice appear in
// supporting documentation.
//
// This file is provided AS IS with no warranties of any kind. The
// author shall have no liability with respect to the infringement of
// copyrights, trade secrets or any patents by this file or any part
// thereof. In no event will the author be liable for any lost revenue
// or profits or other special, indirect and consequential damages.
//----------------------------------------------------------------------
// (c) 2000-2002 Matthias Toussaint
//======================================================================
#ifndef DISPLAYPREFS_HH
#define DISPLAYPREFS_HH
#include <ui_uidisplayprefs.h>
#include <QDialog>
class DisplayPrefs : public PrefWidget, public Ui::UIDisplayPrefs
{
Q_OBJECT
public:
DisplayPrefs( QWidget *parent=0, const char *name=0 );
virtual ~DisplayPrefs();
bool showBar() const;
bool showMinMax() const;
QColor displayBgColor() const;
QColor displayTextColor() const;
public slots:
virtual void defaultsSLOT();
virtual void factoryDefaultsSLOT();
virtual void applySLOT();
};
#endif // DISPLAYPREFS_HH