Add files from zip
This commit is contained in:
34
playground/timescale/Panel.h
Normal file
34
playground/timescale/Panel.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/*****************************************************************************
|
||||
* 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;
|
||||
};
|
||||
Reference in New Issue
Block a user