summaryrefslogtreecommitdiffstats
path: root/kspread/plugins/insertcalendar/kspread_insertcalendardialog.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kspread/plugins/insertcalendar/kspread_insertcalendardialog.cc
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kspread/plugins/insertcalendar/kspread_insertcalendardialog.cc')
-rw-r--r--kspread/plugins/insertcalendar/kspread_insertcalendardialog.cc150
1 files changed, 150 insertions, 0 deletions
diff --git a/kspread/plugins/insertcalendar/kspread_insertcalendardialog.cc b/kspread/plugins/insertcalendar/kspread_insertcalendardialog.cc
new file mode 100644
index 00000000..541783b8
--- /dev/null
+++ b/kspread/plugins/insertcalendar/kspread_insertcalendardialog.cc
@@ -0,0 +1,150 @@
+ /***************************************************************************
+ * Copyright (C) 2005 by Raphael Langerhorst *
+ * *
+ * Permission is hereby granted, free of charge, to any person obtaining *
+ * a copy of this software and associated documentation files (the *
+ * "Software"), to deal in the Software without restriction, including *
+ * without limitation the rights to use, copy, modify, merge, publish, *
+ * distribute, sublicense, and/or sell copies of the Software, and to *
+ * permit persons to whom the Software is furnished to do so, subject to *
+ * the following conditions: *
+ * *
+ * The above copyright notice and this permission notice shall be *
+ * included in all copies or substantial portions of the Software. *
+ * *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, *
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*
+ * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR *
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, *
+ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR *
+ * OTHER DEALINGS IN THE SOFTWARE. *
+ ***************************************************************************/
+
+#include <kspread_insertcalendardialog.h>
+
+#include <kdatepicker.h>
+#include <kdatewidget.h>
+#include <kdebug.h>
+
+#include <qpushbutton.h>
+
+namespace KSpread
+{
+
+InsertCalendarDialog::InsertCalendarDialog(QWidget* parent, const char* name)
+: InsertCalendarDialogBase(parent,name)
+{
+ this->m_datePicker = NULL;
+
+ //we start with a default calendar for the current month;
+
+ QDate first_day_in_month = QDate::currentDate();
+ first_day_in_month.setYMD(first_day_in_month.year(),first_day_in_month.month(),1);
+
+ QDate last_day_in_month(first_day_in_month.year(),first_day_in_month.month(),first_day_in_month.daysInMonth());
+
+ this->m_startDateWidget->setDate(first_day_in_month);
+ this->m_endDateWidget->setDate(last_day_in_month);
+
+ connect(this->m_selectStartDateButton,SIGNAL(clicked()),this,SLOT(showStartDatePicker()));
+ connect(this->m_selectEndDateButton,SIGNAL(clicked()),this,SLOT(showEndDatePicker()));
+
+ connect(this->m_insertButton,SIGNAL(clicked()),this,SLOT(accept()));
+ connect(this->m_cancelButton,SIGNAL(clicked()),this,SLOT(reject()));
+}
+
+InsertCalendarDialog::~InsertCalendarDialog()
+{
+}
+
+bool InsertCalendarDialog::buildDatePickerFrame()
+{
+ if (m_datePicker)
+ {
+ delete m_datePicker; //destroyed signal is connected to datePickerDeleted()
+ }
+
+ m_datePicker = new KDatePicker(NULL,"date picker");
+
+ Q_ASSERT(m_datePicker);
+
+ if (!m_datePicker)
+ return false;
+
+ connect(m_datePicker,SIGNAL(destroyed()),this,SLOT(datePickerDeleted()));
+
+ m_datePicker->setCloseButton(true);
+ m_datePicker->move(this->x()+this->width(),this->y());
+ m_datePicker->show();
+
+ return true;
+}
+
+void InsertCalendarDialog::datePickerDeleted()
+{
+ kdDebug() << "date picker deleted" << endl;
+ m_datePicker = NULL;
+}
+
+void InsertCalendarDialog::accept()
+{
+ if (m_datePicker)
+ m_datePicker->deleteLater();
+ kdDebug() << "insert calendar dialog accepted (insert button clicked)" << endl;
+ done(QDialog::Accepted);
+ emit insertCalendar(startDate(),endDate());
+}
+
+void InsertCalendarDialog::reject()
+{
+ if (m_datePicker)
+ m_datePicker->deleteLater();
+ kdDebug() << "insert calendar dialog rejected (cancel button clicked)" << endl;
+ done(QDialog::Rejected);
+}
+
+void InsertCalendarDialog::showStartDatePicker()
+{
+ if (buildDatePickerFrame())
+ {
+ connect(m_datePicker,SIGNAL(dateSelected(QDate)),this,SLOT(setStartDate(QDate)));
+ connect(m_datePicker,SIGNAL(dateEntered(QDate)),this,SLOT(setStartDate(QDate)));
+ m_datePicker->setDate(startDate());
+ }
+}
+
+void InsertCalendarDialog::showEndDatePicker()
+{
+ if (buildDatePickerFrame())
+ {
+ connect(m_datePicker,SIGNAL(dateSelected(QDate)),this,SLOT(setEndDate(QDate)));
+ connect(m_datePicker,SIGNAL(dateEntered(QDate)),this,SLOT(setEndDate(QDate)));
+ m_datePicker->setDate(endDate());
+ }
+}
+
+void InsertCalendarDialog::setStartDate(QDate date)
+{
+ this->m_startDateWidget->setDate(date);
+}
+
+void InsertCalendarDialog::setEndDate(QDate date)
+{
+ this->m_endDateWidget->setDate(date);
+}
+
+QDate InsertCalendarDialog::startDate() const
+{
+ return this->m_startDateWidget->date();
+}
+
+QDate InsertCalendarDialog::endDate() const
+{
+ return this->m_endDateWidget->date();
+}
+
+}
+
+#include "kspread_insertcalendardialog.moc"