35 lines
744 B
C++
35 lines
744 B
C++
/*****************************************************************************
|
|
* Qwt Examples - Copyright (C) 2002 Uwe Rathmann
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "Settings.h"
|
|
#include <QWidget>
|
|
|
|
class QDateTimeEdit;
|
|
class QSpinBox;
|
|
|
|
class Panel : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Panel( QWidget* parent = NULL );
|
|
|
|
void setSettings( const Settings&);
|
|
Settings settings() const;
|
|
|
|
Q_SIGNALS:
|
|
void edited();
|
|
|
|
private:
|
|
QDateTimeEdit* m_startDateTime;
|
|
QDateTimeEdit* m_endDateTime;
|
|
|
|
QSpinBox* m_maxMajorSteps;
|
|
QSpinBox* m_maxMinorSteps;
|
|
QSpinBox* m_maxWeeks;
|
|
};
|