mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-29 16:53:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // rddatepicker.h
 | |
| //
 | |
| // A Calendar Widget.
 | |
| //
 | |
| //   (C) Copyright 2002-2004,2016 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 <qwidget.h>
 | |
| #include <qsize.h>
 | |
| #include <qsizepolicy.h>
 | |
| #include <qpushbutton.h>
 | |
| #include <qcolor.h>
 | |
| #include <qstring.h>
 | |
| #include <qdatetime.h>
 | |
| #include <qlabel.h>
 | |
| #include <qcombobox.h>
 | |
| #include <qspinbox.h>
 | |
| //Added by qt3to4:
 | |
| #include <QMouseEvent>
 | |
| 
 | |
| //
 | |
| // 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 QWidget
 | |
| {
 | |
|   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
 |