Files
GoldenCheetah/src/IntervalItem.cpp
Mark Liversedge fcd34cbae1 Fixup edit interval
.. now updates the ridefile (via updateRideFileintervals)
.. and uses a QTimeEdit rather than raw seconds
2013-03-17 19:42:38 +00:00

139 lines
4.3 KiB
C++

/*
* Copyright (c) 2009 Mark Liversedge (liversedge@gmail.com)
*
* 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
*/
#include "IntervalItem.h"
#include "RideFile.h"
IntervalItem::IntervalItem(const RideFile *ride, QString name, double start, double stop, double startKM, double stopKM, int displaySequence) : ride(ride), start(start), stop(stop), startKM(startKM), stopKM(stopKM), displaySequence(displaySequence)
{
setText(0, name);
}
/*----------------------------------------------------------------------
* Edit Interval dialog
*--------------------------------------------------------------------*/
EditIntervalDialog::EditIntervalDialog(QWidget *parent, IntervalItem &interval) :
QDialog(parent, Qt::Dialog), interval(interval)
{
setWindowTitle(tr("Edit Interval"));
QVBoxLayout *mainLayout = new QVBoxLayout(this);
// Grid
QGridLayout *grid = new QGridLayout;
QLabel *name = new QLabel("Name");
QLabel *from = new QLabel("From");
QLabel *to = new QLabel("To");
nameEdit = new QLineEdit(this);
nameEdit->setText(interval.text(0));
fromEdit = new QTimeEdit(this);
fromEdit->setDisplayFormat("hh:mm:ss");
fromEdit->setTime(QTime(0,0,0,0).addSecs(interval.start));
toEdit = new QTimeEdit(this);
toEdit->setDisplayFormat("hh:mm:ss");
toEdit->setTime(QTime(0,0,0,0).addSecs(interval.stop));
grid->addWidget(name, 0,0);
grid->addWidget(nameEdit, 0,1);
grid->addWidget(from, 1,0);
grid->addWidget(fromEdit, 1,1);
grid->addWidget(to, 2,0);
grid->addWidget(toEdit, 2,1);
mainLayout->addLayout(grid);
// Buttons
QHBoxLayout *buttonLayout = new QHBoxLayout;
buttonLayout->addStretch();
applyButton = new QPushButton(tr("&OK"), this);
cancelButton = new QPushButton(tr("&Cancel"), this);
buttonLayout->addWidget(cancelButton);
buttonLayout->addWidget(applyButton);
mainLayout->addLayout(buttonLayout);
// connect up slots
connect(applyButton, SIGNAL(clicked()), this, SLOT(applyClicked()));
connect(cancelButton, SIGNAL(clicked()), this, SLOT(cancelClicked()));
}
void
EditIntervalDialog::applyClicked()
{
// get the values back
interval.setText(0, nameEdit->text());
interval.start = QTime(0,0,0).secsTo(fromEdit->time());
interval.stop = QTime(0,0,0).secsTo(toEdit->time());
accept();
}
void
EditIntervalDialog::cancelClicked()
{
reject();
}
/*----------------------------------------------------------------------
* Interval rename dialog
*--------------------------------------------------------------------*/
RenameIntervalDialog::RenameIntervalDialog(QString &string, QWidget *parent) :
QDialog(parent, Qt::Dialog), string(string)
{
setWindowTitle(tr("Renumber Intervals"));
QVBoxLayout *mainLayout = new QVBoxLayout(this);
// Grid
QGridLayout *grid = new QGridLayout;
QLabel *name = new QLabel("Name");
nameEdit = new QLineEdit(this);
nameEdit->setText(string);
grid->addWidget(name, 0,0);
grid->addWidget(nameEdit, 0,1);
mainLayout->addLayout(grid);
// Buttons
QHBoxLayout *buttonLayout = new QHBoxLayout;
buttonLayout->addStretch();
applyButton = new QPushButton(tr("&OK"), this);
cancelButton = new QPushButton(tr("&Cancel"), this);
buttonLayout->addWidget(cancelButton);
buttonLayout->addWidget(applyButton);
mainLayout->addLayout(buttonLayout);
// connect up slots
connect(applyButton, SIGNAL(clicked()), this, SLOT(applyClicked()));
connect(cancelButton, SIGNAL(clicked()), this, SLOT(cancelClicked()));
}
void
RenameIntervalDialog::applyClicked()
{
// get the values back
string = nameEdit->text();
accept();
}
void
RenameIntervalDialog::cancelClicked()
{
reject();
}