mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 16:14:03 +01:00 
			
		
		
		
	* Fixed regressions where vestigal accelerator indicators ('&')
	remained in in-line strings.
Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rddatedialog.cpp
 | 
						|
//
 | 
						|
// A Dialog Box for using an RDDatePicker widget.
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2021 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 <QPushButton>
 | 
						|
 | 
						|
#include "rdconf.h"
 | 
						|
#include "rddatedialog.h"
 | 
						|
 | 
						|
//
 | 
						|
// Global Classes
 | 
						|
//
 | 
						|
RDDateDialog::RDDateDialog(int low_year,int high_year,QWidget *parent)
 | 
						|
  : RDDialog(parent)
 | 
						|
{
 | 
						|
  setWindowTitle(tr("Select Date"));
 | 
						|
 | 
						|
  //
 | 
						|
  // Datepicker
 | 
						|
  //
 | 
						|
  date_picker=new RDDatePicker(low_year,high_year,this);
 | 
						|
  date_picker->setGeometry(10,10,
 | 
						|
			   date_picker->sizeHint().width(),
 | 
						|
			   date_picker->sizeHint().height());
 | 
						|
 | 
						|
  //
 | 
						|
  // OK Button
 | 
						|
  //
 | 
						|
  QPushButton *button=new QPushButton(this);
 | 
						|
  button->setGeometry(sizeHint().width()-130,sizeHint().height()-40,50,30);
 | 
						|
  button->setFont(buttonFont());
 | 
						|
  button->setText(tr("OK"));
 | 
						|
  connect(button,SIGNAL(clicked()),this,SLOT(okData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Cancel Button
 | 
						|
  //
 | 
						|
  button=new QPushButton(this);
 | 
						|
  button->setGeometry(sizeHint().width()-65,sizeHint().height()-40,55,30);
 | 
						|
  button->setFont(buttonFont());
 | 
						|
  button->setText(tr("Cancel"));
 | 
						|
  connect(button,SIGNAL(clicked()),this,SLOT(cancelData()));
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSize RDDateDialog::sizeHint() const
 | 
						|
{
 | 
						|
  return QSize(date_picker->sizeHint().width()+20,
 | 
						|
	       date_picker->sizeHint().height()+60);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSizePolicy RDDateDialog::sizePolicy() const
 | 
						|
{
 | 
						|
  return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int RDDateDialog::exec(QDate *date)
 | 
						|
{
 | 
						|
  date_date=date;
 | 
						|
  date_picker->setDate(*date_date);
 | 
						|
  return QDialog::exec();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void RDDateDialog::okData()
 | 
						|
{
 | 
						|
  *date_date=date_picker->date();
 | 
						|
  done(true);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void RDDateDialog::cancelData()
 | 
						|
{
 | 
						|
  done(false);
 | 
						|
}
 |