You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.0 KiB
102 lines
3.0 KiB
/* This file is part of the KDE project
|
|
Copyright (C) 2004 - 2006 Dag Andersen <danders@get2net.dk>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation;
|
|
version 2 of the License.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "kptintervaledit.h"
|
|
#include "intervalitem.h"
|
|
|
|
#include <qpushbutton.h>
|
|
#include <qcombobox.h>
|
|
#include <qheader.h>
|
|
#include <qlabel.h>
|
|
#include <qlineedit.h>
|
|
#include <qdatetimeedit.h>
|
|
#include <qdatetime.h>
|
|
#include <qlistview.h>
|
|
#include <qpair.h>
|
|
#include <qdatetime.h>
|
|
|
|
#include <klocale.h>
|
|
#include <kdebug.h>
|
|
|
|
namespace KPlato
|
|
{
|
|
|
|
IntervalEdit::IntervalEdit(QWidget *parent, const char *name)
|
|
: IntervalEditImpl(parent)
|
|
{
|
|
//kdDebug()<<k_funcinfo<<endl;
|
|
|
|
}
|
|
|
|
//--------------------------------------------
|
|
IntervalEditImpl::IntervalEditImpl(QWidget *parent)
|
|
: IntervalEditBase(parent) {
|
|
|
|
intervalList->header()->setStretchEnabled(true);
|
|
intervalList->setSortColumn(0);
|
|
|
|
connect(bClear, SIGNAL(clicked()), SLOT(slotClearClicked()));
|
|
connect(bAddInterval, SIGNAL(clicked()), SLOT(slotAddIntervalClicked()));
|
|
connect(intervalList, SIGNAL(selectionChanged(QListViewItem*)), SLOT(slotIntervalSelectionChanged(QListViewItem*)));
|
|
|
|
}
|
|
|
|
void IntervalEditImpl::slotClearClicked() {
|
|
bool c = intervalList->firstChild() != 0;
|
|
intervalList->clear();
|
|
if (c)
|
|
emit changed();
|
|
}
|
|
|
|
void IntervalEditImpl::slotAddIntervalClicked() {
|
|
new IntervalItem(intervalList, startTime->time(), endTime->time());
|
|
emit changed();
|
|
}
|
|
|
|
void IntervalEditImpl::slotIntervalSelectionChanged(QListViewItem *item) {
|
|
IntervalItem *ii = dynamic_cast<IntervalItem *>(item);
|
|
if (!ii)
|
|
return;
|
|
startTime->setTime(ii->interval().first);
|
|
endTime->setTime(ii->interval().second);
|
|
}
|
|
|
|
QPtrList<QPair<QTime, QTime> > IntervalEditImpl::intervals() const {
|
|
QPtrList<QPair<QTime, QTime> > l;
|
|
QListViewItem *i = intervalList->firstChild();
|
|
for (; i; i = i->nextSibling()) {
|
|
IntervalItem *item = dynamic_cast<IntervalItem*>(i);
|
|
if (i)
|
|
l.append(new QPair<QTime, QTime>(item->interval().first, item->interval().second));
|
|
}
|
|
return l;
|
|
}
|
|
|
|
void IntervalEditImpl::setIntervals(const QPtrList<QPair<QTime, QTime> > &intervals) const {
|
|
intervalList->clear();
|
|
QPtrListIterator<QPair<QTime, QTime> > it =intervals;
|
|
for (; it.current(); ++it) {
|
|
new IntervalItem(intervalList, it.current()->first, it.current()->second);
|
|
}
|
|
}
|
|
|
|
} //KPlato namespace
|
|
|
|
#include "kptintervaledit.moc"
|