qtdmm/src/integrationprefs.h

55 lines
1.8 KiB
C++
Executable File

//======================================================================
// File: integrationprefs.h
// Author: Matthias Toussaint
// Created: Sat Oct 19 15:31:10 CEST 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 INTEGRATIONPREFS_HH
#define INTEGRATIONPREFS_HH
#include <prefwidget.h>
#include <ui_uiintegrationprefs.h>
class IntegrationPrefs : public PrefWidget, public Ui::UIIntegrationPrefs
{
Q_OBJECT
public:
IntegrationPrefs( QWidget *parent=0, const char *name=0 );
virtual ~IntegrationPrefs();
double intScale() const;
double intThreshold() const;
double intOffset() const;
bool showIntegration() const;
QColor intColor() const;
QColor intThresholdColor() const;
int intLineWidth() const;
int intLineMode() const;
int intPointMode() const;
void setThreshold( double );
public slots:
virtual void defaultsSLOT();
virtual void factoryDefaultsSLOT();
virtual void applySLOT();
};
#endif // INTEGRATIONPREFS_HH