/* This file is part of KOrganizer. Copyright (c) 2001 Cornelius Schumacher This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program with any edition of TQt, and distribute the resulting executable, without including the source code for TQt in the source distribution. */ #include #include #include #include #include #include "timespanwidget.h" #include "koglobals.h" #include "kotimespanview.h" #include "kotimespanview.moc" KOTimeSpanView::KOTimeSpanView(Calendar *calendar, TQWidget *tqparent, const char *name) : KOEventView( calendar, tqparent, name ) { TQBoxLayout *topLayout = new TQVBoxLayout( this ); mTimeSpanWidget = new TimeSpanWidget( this ); topLayout->addWidget( mTimeSpanWidget ); connect( mTimeSpanWidget, TQT_SIGNAL( dateRangeChanged() ), TQT_SLOT( updateView() ) ); } KOTimeSpanView::~KOTimeSpanView() { } void KOTimeSpanView::readSettings() { kdDebug(5850) << "KOTimeSpanView::readSettings()" << endl; KConfig config( "korganizerrc", true, false); // Open read-only, no kdeglobals config.setGroup("Views"); TQValueList sizes = config.readIntListEntry("Separator TimeSpanView"); if (sizes.count() == 2) { mTimeSpanWidget->setSplitterSizes(sizes); } } void KOTimeSpanView::writeSettings(KConfig *config) { // kdDebug(5850) << "KOTimeSpanView::writeSettings()" << endl; config->setGroup("Views"); TQValueList list = mTimeSpanWidget->splitterSizes(); config->writeEntry("Separator TimeSpanView",list); } int KOTimeSpanView::maxDatesHint() { return 0; } int KOTimeSpanView::tqcurrentDateCount() { return 0; } Incidence::List KOTimeSpanView::selectedIncidences() { Incidence::List selected; return selected; } void KOTimeSpanView::updateView() { insertItems( mTimeSpanWidget->startDateTime().date(), mTimeSpanWidget->endDateTime().date() ); } void KOTimeSpanView::showDates(const TQDate &start, const TQDate &end) { TQDate s = start.addDays( -2 ); TQDate e = end.addDays( 2 ); insertItems( s, e ); } void KOTimeSpanView::insertItems(const TQDate &start, const TQDate &end) { mTimeSpanWidget->clear(); mTimeSpanWidget->setDateRange( start, end ); Event::List events = calendar()->events( start, end ); Event::List::ConstIterator it; for( it = events.begin(); it != events.end(); ++it ) { mTimeSpanWidget->addItem( *it ); } mTimeSpanWidget->updateView(); } void KOTimeSpanView::showIncidences( const Incidence::List & ) { } void KOTimeSpanView::changeIncidenceDisplay(Incidence *, int) { }