mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 09:23:22 +02:00
* Refactored dialogs in the convenience library to use the 'RDDialog' and 'RDWidget' base classes.
73 lines
1.8 KiB
C++
73 lines
1.8 KiB
C++
// rddatepicker.h
|
|
//
|
|
// A Calendar Widget.
|
|
//
|
|
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Library General Public License
|
|
// version 2 as published by the Free Software Foundation.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#ifndef RDDATEPICKER_H
|
|
#define RDDATEPICKER_H
|
|
|
|
#include <qdatetime.h>
|
|
#include <qlabel.h>
|
|
#include <qcombobox.h>
|
|
#include <qspinbox.h>
|
|
|
|
#include <rdwidget.h>
|
|
|
|
//
|
|
// Display Settings
|
|
//
|
|
#define RDDATEPICKER_X_ORIGIN 20
|
|
#define RDDATEPICKER_X_INTERVAL 25
|
|
#define RDDATEPICKER_Y_ORIGIN 30
|
|
#define RDDATEPICKER_Y_INTERVAL 20
|
|
|
|
class RDDatePicker : public RDWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
RDDatePicker(int low_year,int high_year,QWidget *parent=0);
|
|
~RDDatePicker();
|
|
QSize sizeHint() const;
|
|
QSizePolicy sizePolicy() const;
|
|
QDate date() const;
|
|
bool setDate(QDate date);
|
|
|
|
private slots:
|
|
void monthActivatedData(int id);
|
|
void yearActivatedData(int id);
|
|
void yearChangedData(int year);
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *e);
|
|
|
|
private:
|
|
void PrintDays();
|
|
void PrintDay(int day,int dow_offset);
|
|
void SelectDay(int day,int dow_offset,bool state);
|
|
QComboBox *pick_month_box;
|
|
QComboBox *pick_year_box;
|
|
QSpinBox *pick_year_spin;
|
|
QLabel *pick_date_label[6][7];
|
|
QDate pick_date;
|
|
int pick_low_year;
|
|
int pick_high_year;
|
|
};
|
|
|
|
|
|
#endif // RDDATEPICKER_H
|