mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-18 15:09:39 +02:00
* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
349 lines
9.5 KiB
C++
349 lines
9.5 KiB
C++
// rddatepicker.cpp
|
|
//
|
|
// A Qt-based application for testing General Purpose Outputs (GPO).
|
|
//
|
|
// (C) Copyright 2002-2003,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.
|
|
//
|
|
|
|
|
|
#include <qwidget.h>
|
|
#include <qstring.h>
|
|
#include <qlabel.h>
|
|
#include <qpalette.h>
|
|
|
|
#include <rddatepicker.h>
|
|
|
|
//
|
|
// Global Classes
|
|
//
|
|
RDDatePicker::RDDatePicker(int low_year,int high_year,QWidget *parent)
|
|
:QWidget(parent)
|
|
{
|
|
pick_low_year=low_year;
|
|
pick_high_year=high_year;
|
|
|
|
//
|
|
// Generate Fonts
|
|
//
|
|
QFont font=QFont("Helvetica",12,QFont::Normal);
|
|
font.setPixelSize(12);
|
|
QFont header_font=QFont("Helvetica",12,QFont::Bold);
|
|
header_font.setPixelSize(12);
|
|
|
|
//
|
|
// Month
|
|
//
|
|
pick_month_box=new QComboBox(this,"pick_month_box");
|
|
pick_month_box->setGeometry(0,0,120,26);
|
|
for(int i=1;i<13;i++) {
|
|
pick_month_box->insertItem(QDate::longMonthName(i));
|
|
}
|
|
connect(pick_month_box,SIGNAL(activated(int)),
|
|
this,SLOT(monthActivatedData(int)));
|
|
|
|
//
|
|
// Year
|
|
//
|
|
if((high_year-low_year)<=10) {
|
|
pick_year_box=new QComboBox(this,"pick_year_box");
|
|
pick_year_box->setGeometry(130,0,90,26);
|
|
for(int i=low_year;i<(high_year+1);i++) {
|
|
pick_year_box->insertItem(QString().sprintf("%04d",i));
|
|
}
|
|
connect(pick_year_box,SIGNAL(activated(int)),
|
|
this,SLOT(yearActivatedData(int)));
|
|
pick_year_spin=NULL;
|
|
}
|
|
else {
|
|
pick_year_spin=new QSpinBox(this,"pick_year_spin");
|
|
pick_year_spin->setGeometry(160,0,60,26);
|
|
pick_year_spin->setRange(low_year,high_year);
|
|
pick_year_box=NULL;
|
|
connect(pick_year_spin,SIGNAL(valueChanged(int)),
|
|
this,SLOT(yearChangedData(int)));
|
|
}
|
|
|
|
//
|
|
// Date Labels
|
|
//
|
|
QPalette weekend_palette=palette();
|
|
weekend_palette.setColor(QPalette::Active,QColorGroup::Background,
|
|
palette().color(QPalette::Active,
|
|
QColorGroup::Mid));
|
|
weekend_palette.setColor(QPalette::Inactive,QColorGroup::Background,
|
|
palette().color(QPalette::Active,
|
|
QColorGroup::Mid));
|
|
|
|
QLabel *label=new QLabel(tr("Mo"),this,"monday_label");
|
|
label->setGeometry(RDDATEPICKER_X_ORIGIN,30,30,30);
|
|
label->setFont(header_font);
|
|
label->setAlignment(AlignCenter);
|
|
|
|
label=new QLabel(tr("Tu"),this,"tuesday_label");
|
|
label->setGeometry(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL,
|
|
RDDATEPICKER_Y_ORIGIN,30,30);
|
|
label->setFont(header_font);
|
|
label->setAlignment(AlignCenter);
|
|
|
|
label=new QLabel(tr("We"),this,"wednesday_label");
|
|
label->setGeometry(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL*2,
|
|
RDDATEPICKER_Y_ORIGIN,30,30);
|
|
label->setFont(header_font);
|
|
label->setAlignment(AlignCenter);
|
|
|
|
label=new QLabel(tr("Th"),this,"thursday_label");
|
|
label->setGeometry(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL*3,
|
|
RDDATEPICKER_Y_ORIGIN,30,30);
|
|
label->setFont(header_font);
|
|
label->setAlignment(AlignCenter);
|
|
|
|
label=new QLabel(tr("Fr"),this,"friday_label");
|
|
label->setGeometry(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL*4,
|
|
RDDATEPICKER_Y_ORIGIN,30,30);
|
|
label->setFont(header_font);
|
|
label->setAlignment(AlignCenter);
|
|
|
|
label=new QLabel(tr("Sa"),this,"saturday_label");
|
|
label->setGeometry(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL*5,
|
|
RDDATEPICKER_Y_ORIGIN,30,30);
|
|
label->setFont(header_font);
|
|
label->setAlignment(AlignCenter);
|
|
label->setPalette(weekend_palette);
|
|
|
|
label=new QLabel(tr("Su"),this,"sunday_label");
|
|
label->setGeometry(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL*6,
|
|
RDDATEPICKER_Y_ORIGIN,30,30);
|
|
label->setFont(header_font);
|
|
label->setAlignment(AlignCenter);
|
|
label->setPalette(weekend_palette);
|
|
|
|
|
|
for(int i=0;i<6;i++) {
|
|
for(int j=0;j<7;j++) {
|
|
pick_date_label[i][j]=new QLabel(this,"date_label");
|
|
pick_date_label[i][j]->
|
|
setGeometry(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL*j,
|
|
RDDATEPICKER_Y_ORIGIN+20+RDDATEPICKER_Y_INTERVAL*i,30,30);
|
|
pick_date_label[i][j]->setAlignment(Qt::AlignTop|Qt::AlignHCenter);
|
|
}
|
|
}
|
|
PrintDays();
|
|
}
|
|
|
|
|
|
RDDatePicker::~RDDatePicker()
|
|
{
|
|
}
|
|
|
|
|
|
QSize RDDatePicker::sizeHint() const
|
|
{
|
|
return QSize(220,175);
|
|
}
|
|
|
|
|
|
QSizePolicy RDDatePicker::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
QDate RDDatePicker::date() const
|
|
{
|
|
return pick_date;
|
|
}
|
|
|
|
|
|
bool RDDatePicker::setDate(QDate date)
|
|
{
|
|
if(!date.isValid()) {
|
|
date=QDate::currentDate();
|
|
}
|
|
if((date.year()<pick_low_year)||(date.year()>pick_high_year)) {
|
|
return false;
|
|
}
|
|
pick_date=date;
|
|
pick_month_box->setCurrentItem(date.month()-1);
|
|
if(pick_year_box!=NULL) {
|
|
pick_year_box->setCurrentItem(date.year()-pick_low_year);
|
|
}
|
|
else {
|
|
pick_year_spin->setValue(date.year());
|
|
}
|
|
PrintDays();
|
|
return true;
|
|
}
|
|
|
|
|
|
void RDDatePicker::monthActivatedData(int id)
|
|
{
|
|
QDate date=QDate(pick_date.year(),id+1,1);
|
|
if(pick_date.day()<=date.daysInMonth()) {
|
|
pick_date=QDate(pick_date.year(),id+1,pick_date.day());
|
|
}
|
|
else {
|
|
pick_date=QDate(pick_date.year(),id+1,date.daysInMonth());
|
|
}
|
|
PrintDays();
|
|
}
|
|
|
|
|
|
void RDDatePicker::yearActivatedData(int id)
|
|
{
|
|
QDate date=QDate(pick_low_year+pick_year_box->currentItem(),
|
|
pick_date.month(),1);
|
|
if(pick_date.day()<=date.daysInMonth()) {
|
|
pick_date=QDate(pick_low_year+pick_year_box->currentItem(),
|
|
pick_date.month(),pick_date.day());
|
|
}
|
|
else {
|
|
pick_date=QDate(pick_low_year+pick_year_box->currentItem(),
|
|
pick_date.month(),date.daysInMonth());
|
|
}
|
|
PrintDays();
|
|
}
|
|
|
|
|
|
void RDDatePicker::yearChangedData(int year)
|
|
{
|
|
QDate date=QDate(pick_year_spin->value(),pick_date.month(),1);
|
|
if(pick_date.day()<=date.daysInMonth()) {
|
|
pick_date=QDate(pick_year_spin->value(),
|
|
pick_date.month(),pick_date.day());
|
|
}
|
|
else {
|
|
pick_date=QDate(pick_year_spin->value(),
|
|
pick_date.month(),date.daysInMonth());
|
|
}
|
|
PrintDays();
|
|
}
|
|
|
|
|
|
void RDDatePicker::mousePressEvent(QMouseEvent *e)
|
|
{
|
|
if((e->pos().x()<RDDATEPICKER_X_ORIGIN)||
|
|
(e->pos().x()>(RDDATEPICKER_X_ORIGIN+RDDATEPICKER_X_INTERVAL*7))||
|
|
(e->pos().y()<RDDATEPICKER_Y_ORIGIN)||
|
|
(e->pos().y()>(RDDATEPICKER_Y_ORIGIN+RDDATEPICKER_Y_INTERVAL*7))) {
|
|
QWidget::mousePressEvent(e);
|
|
return;
|
|
}
|
|
int dow=(e->pos().x()-RDDATEPICKER_X_ORIGIN)/RDDATEPICKER_X_INTERVAL;
|
|
int week=(e->pos().y()-RDDATEPICKER_Y_ORIGIN)/RDDATEPICKER_Y_INTERVAL-1;
|
|
if((dow<0)||(dow>6)||(week<0)||(week>6)) {
|
|
return;
|
|
}
|
|
if(pick_date_label[week][dow]->text().isEmpty()) {
|
|
return;
|
|
}
|
|
pick_date=QDate(pick_date.year(),pick_date.month(),
|
|
pick_date_label[week][dow]->text().toInt());
|
|
PrintDays();
|
|
}
|
|
|
|
|
|
void RDDatePicker::PrintDays()
|
|
{
|
|
QDate top_date;
|
|
|
|
//
|
|
// Clear Days
|
|
//
|
|
QPalette weekend_palette=palette();
|
|
weekend_palette.setColor(QPalette::Active,QColorGroup::Background,
|
|
palette().color(QPalette::Active,
|
|
QColorGroup::Mid));
|
|
weekend_palette.setColor(QPalette::Inactive,QColorGroup::Background,
|
|
palette().color(QPalette::Active,
|
|
QColorGroup::Mid));
|
|
for(int i=0;i<6;i++) {
|
|
for(int j=0;j<5;j++) {
|
|
pick_date_label[i][j]->clear();
|
|
pick_date_label[i][j]->setPalette(palette());
|
|
}
|
|
}
|
|
for(int i=0;i<6;i++) {
|
|
for(int j=5;j<7;j++) {
|
|
pick_date_label[i][j]->clear();
|
|
pick_date_label[i][j]->setPalette(weekend_palette);
|
|
}
|
|
}
|
|
|
|
//
|
|
// Get Top of Month
|
|
//
|
|
if(pick_year_box!=NULL) {
|
|
top_date=QDate(pick_low_year+pick_year_box->currentItem(),
|
|
pick_month_box->currentItem()+1,1);
|
|
}
|
|
else {
|
|
top_date=QDate(pick_year_spin->value(),pick_month_box->currentItem()+1,1);
|
|
}
|
|
|
|
//
|
|
// Print Days
|
|
//
|
|
int dow_offset=top_date.dayOfWeek()-1;
|
|
for(int i=1;i<(top_date.daysInMonth()+1);i++) {
|
|
PrintDay(i,dow_offset);
|
|
if(pick_date.day()==i) {
|
|
SelectDay(i,dow_offset,true);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void RDDatePicker::PrintDay(int day,int dow_offset)
|
|
{
|
|
int slot=day+dow_offset-1;
|
|
int week=slot/7;
|
|
int dow=slot-7*week;
|
|
pick_date_label[week][dow]->setText(QString().sprintf("%d",day));
|
|
}
|
|
|
|
|
|
void RDDatePicker::SelectDay(int day,int dow_offset,bool state)
|
|
{
|
|
int slot=day+dow_offset-1;
|
|
int week=slot/7;
|
|
int dow=slot-7*week;
|
|
QPalette pal=palette();
|
|
if(state) {
|
|
pal.setColor(QPalette::Active,QColorGroup::Foreground,
|
|
palette().
|
|
color(QPalette::Active,QColorGroup::HighlightedText));
|
|
pal.setColor(QPalette::Active,QColorGroup::Background,
|
|
palette().color(QPalette::Active,QColorGroup::Highlight));
|
|
pal.setColor(QPalette::Inactive,QColorGroup::Foreground,
|
|
palette().
|
|
color(QPalette::Active,QColorGroup::HighlightedText));
|
|
pal.setColor(QPalette::Inactive,QColorGroup::Background,
|
|
palette().color(QPalette::Active,QColorGroup::Highlight));
|
|
}
|
|
else {
|
|
pal.setColor(QPalette::Active,QColorGroup::Foreground,
|
|
palette().color(QPalette::Active,QColorGroup::Text));
|
|
pal.setColor(QPalette::Active,QColorGroup::Background,
|
|
palette().color(QPalette::Active,QColorGroup::Background));
|
|
pal.setColor(QPalette::Inactive,QColorGroup::Foreground,
|
|
palette().color(QPalette::Active,QColorGroup::Text));
|
|
pal.setColor(QPalette::Inactive,QColorGroup::Background,
|
|
palette().color(QPalette::Active,QColorGroup::Background));
|
|
}
|
|
pick_date_label[week][dow]->setPalette(pal);
|
|
}
|
|
|