我想创建一个设置窗口小部件,我可以在其中选择日期
因为用QDate(int year,int month,int day)创建3个QLineEdits来调用QDate-Constructor并不好,所以我认为如果你可以按“show calendar”-Button为例会更好你可以在哪里选择日期
但是我不想在新窗口中显示这个日历,我想把它显示为“弹出窗口”(我不知道如何解释这个),你可能知道例如OpenOffice-Settings 。
你知道如何实现它吗?
答案 0 :(得分:4)
这是类型弹出日历的示例,您必须在按下表单上的按钮时显示日历。可以在代码中的任何位置重用此类。在此示例中,这是在main函数中启动的。
/*
* DatePopup.h
*
* Created on: Aug 29, 2009
* Author: jordenysp
*/
#ifndef DATEPOPUP_H_
#define DATEPOPUP_H_
#include <QDialog>
#include <QDate>
class QCalendarWidget;
class QDialogButtonBox;
class QVBoxLayout;
class DatePopup : public QDialog{
Q_OBJECT
public:
DatePopup(QWidget *parent=0);
QDate selectedDate() const;
private:
QWidget *widget;
QCalendarWidget *calendarWidget;
QDialogButtonBox* buttonBox;
QVBoxLayout *verticalLayout;
};
#endif /* DATEPOPUP_H_ */
/*
* DatePopup.cpp
*
* Created on: Aug 29, 2009
* Author: jordenysp
*/
#include <QtGui>
#include "DatePopup.h"
DatePopup::DatePopup(QWidget *parent)
:QDialog(parent, Qt::Popup)
{
setSizeGripEnabled(false);
resize(260, 230);
widget = new QWidget(this);
widget->setObjectName(QString::fromUtf8("widget"));
widget->setGeometry(QRect(0, 10, 258, 215));
verticalLayout = new QVBoxLayout(widget);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
verticalLayout->setContentsMargins(0, 0, 0, 0);
calendarWidget = new QCalendarWidget(widget);
calendarWidget->setObjectName(QString::fromUtf8("calendarWidget"));
verticalLayout->addWidget(calendarWidget);
buttonBox = new QDialogButtonBox(widget);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
verticalLayout->addWidget(buttonBox);
QObject::connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
}
QDate DatePopup::selectedDate() const{
return calendarWidget->selectedDate();
}
#include <QtGui>
#include <QDate>
#include <QApplication>
#include "DatePopup.h"
#include <iostream>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
DatePopup popup;
int result = popup.exec();
if(result == QDialog::Accepted){
QDate date = popup.selectedDate();
std::cout<< date.year() <<std::endl;
std::cout<< date.month() <<std::endl;
std::cout<< date.day() <<std::endl;
}
return a.exec();
}
答案 1 :(得分:2)
对于备用选项,您是否考虑过使用QDateEdit
?它将允许您的用户以与操作系统其余部分一致的格式编辑日期。