mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Addes a simple 'Renumber Dialog', very similar to the GTK one.
This code adds a Renumber Dialog, that's most a copy & paste of the GTK visual, I didn't tried to do anything fance with it, but I still dont like how it looks like. a better management form is needed. :) ( Well, actually my dislike is mostly because it's on a menu and it's on a popup, I think a 'toolbox' should exist to hold all of those widgets that don't belong to the menu - will try that later ) Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
parent
6fd1e32452
commit
272338875d
3 changed files with 50 additions and 3 deletions
|
@ -4,6 +4,14 @@
|
|||
#include <QLabel>
|
||||
#include <QFormLayout>
|
||||
#include <QIcon>
|
||||
#include <QAbstractButton>
|
||||
#include <QSpinBox>
|
||||
#include <QButtonGroup>
|
||||
#include <QDebug>
|
||||
|
||||
#include "../dive.h"
|
||||
|
||||
#include "ui_renumber.h"
|
||||
|
||||
class MinMaxAvgWidgetPrivate{
|
||||
public:
|
||||
|
@ -24,7 +32,7 @@ public:
|
|||
avgValue = new QLabel(owner);
|
||||
minValue = new QLabel(owner);
|
||||
maxValue = new QLabel(owner);
|
||||
|
||||
|
||||
QGridLayout *formLayout = new QGridLayout();
|
||||
formLayout->addWidget(maxIco, 0, 0);
|
||||
formLayout->addWidget(maxValue, 0, 1);
|
||||
|
@ -90,3 +98,23 @@ void MinMaxAvgWidget::setMinimum(const QString& minimum)
|
|||
{
|
||||
d->minValue->setText(minimum);
|
||||
}
|
||||
|
||||
RenumberDialog* RenumberDialog::instance()
|
||||
{
|
||||
static RenumberDialog* self = new RenumberDialog();
|
||||
return self;
|
||||
}
|
||||
|
||||
void RenumberDialog::buttonClicked(QAbstractButton* button)
|
||||
{
|
||||
if (ui->buttonBox->buttonRole(button) == QDialogButtonBox::AcceptRole){
|
||||
qDebug() << "Renumbering.";
|
||||
renumber_dives(ui->spinBox->value());
|
||||
}
|
||||
}
|
||||
|
||||
RenumberDialog::RenumberDialog(): QDialog(), ui( new Ui::RenumberDialog())
|
||||
{
|
||||
ui->setupUi(this);
|
||||
connect(ui->buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(buttonClicked(QAbstractButton*)));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue