summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/createunitdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/dialogs/createunitdialog.cpp')
-rw-r--r--krecipes/src/dialogs/createunitdialog.cpp116
1 files changed, 116 insertions, 0 deletions
diff --git a/krecipes/src/dialogs/createunitdialog.cpp b/krecipes/src/dialogs/createunitdialog.cpp
new file mode 100644
index 0000000..7f35862
--- /dev/null
+++ b/krecipes/src/dialogs/createunitdialog.cpp
@@ -0,0 +1,116 @@
+/***************************************************************************
+* Copyright (C) 2003-2004 by *
+* Unai Garro (ugarro@users.sourceforge.net) *
+* Cyril Bosselut (bosselut@b1project.com) *
+* Jason Kivlighn (jkivlighn@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. *
+***************************************************************************/
+
+#include "createunitdialog.h"
+
+#include <qlabel.h>
+
+#include <klocale.h>
+#include <klineedit.h>
+#include <kcombobox.h>
+
+CreateUnitDialog::CreateUnitDialog( QWidget *parent, const QString &name, const QString &plural, const QString &name_abbrev, const QString &plural_abbrev, bool newUnit )
+ : KDialogBase( parent, "createElementDialog", true, (newUnit)?i18n( "New Unit" ):i18n("Unit"),
+ KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok )
+{
+ QVBox *page = makeVBoxMainWidget();
+
+ box = new QGroupBox( page );
+ box->setColumnLayout( 0, Qt::Vertical );
+ box->layout() ->setSpacing( 6 );
+ box->layout() ->setMargin( 11 );
+ QGridLayout *gridLayout = new QGridLayout( box->layout() );
+ gridLayout->setAlignment( Qt::AlignTop );
+
+ box->setTitle( (newUnit)?i18n( "New Unit" ):i18n("Unit") );
+
+ QLabel *nameLabel = new QLabel( i18n( "Singular:" ), box );
+ nameEdit = new KLineEdit( name, box );
+
+ gridLayout->addWidget( nameLabel, 0, 0 );
+ gridLayout->addWidget( nameEdit, 0, 1 );
+
+ QLabel *nameAbbrevLabel = new QLabel( i18n( "Abbreviation:" ), box );
+ nameAbbrevEdit = new KLineEdit( name_abbrev, box );
+
+ gridLayout->addWidget( nameAbbrevLabel, 0, 2 );
+ gridLayout->addWidget( nameAbbrevEdit, 0, 3 );
+
+ QLabel *pluralLabel = new QLabel( i18n( "Plural:" ), box );
+ pluralEdit = new KLineEdit( plural, box );
+
+ gridLayout->addWidget( pluralLabel, 1, 0 );
+ gridLayout->addWidget( pluralEdit, 1, 1 );
+
+ QLabel *pluralAbbrevLabel = new QLabel( i18n( "Abbreviation:" ), box );
+ pluralAbbrevEdit = new KLineEdit( plural_abbrev, box );
+
+ gridLayout->addWidget( pluralAbbrevLabel, 1, 2 );
+ gridLayout->addWidget( pluralAbbrevEdit, 1, 3 );
+
+ QLabel *typeLabel = new QLabel( i18n( "Type:" ), box );
+ typeComboBox = new KComboBox( false, box );
+ typeComboBox->insertItem(i18n("Other"));
+ typeComboBox->insertItem(i18n("Mass"));
+ typeComboBox->insertItem(i18n("Volume"));
+
+ gridLayout->addWidget( typeLabel, 2, 0 );
+ gridLayout->addMultiCellWidget( typeComboBox, 2, 2, 1, 3 );
+
+ adjustSize();
+ setFixedSize( size() ); //we've got all the widgets put in, now let's keep it this size
+
+ connect( nameAbbrevEdit, SIGNAL(textChanged(const QString&)), SLOT(nameAbbrevTextChanged(const QString &)) );
+
+ if ( name.isEmpty() )
+ nameEdit->setFocus();
+ else if ( plural.isEmpty() )
+ pluralEdit->setFocus();
+}
+
+
+CreateUnitDialog::~CreateUnitDialog()
+{}
+
+Unit CreateUnitDialog::newUnit( void )
+{
+ QString name = nameEdit->text();
+ QString plural = pluralEdit->text();
+
+ if ( name.isEmpty() )
+ name = plural;
+ if ( plural.isEmpty() )
+ plural = name;
+
+ Unit new_unit = Unit( name, plural );
+ new_unit.name_abbrev = nameAbbrevEdit->text();
+ new_unit.plural_abbrev = pluralAbbrevEdit->text();
+
+ new_unit.type = (Unit::Type)typeComboBox->currentItem();
+
+ return new_unit;
+}
+
+void CreateUnitDialog::nameAbbrevTextChanged(const QString &newText)
+{
+ //appending
+ if ( newText.left( newText.length()-1 ) == pluralAbbrevEdit->text() ) {
+ pluralAbbrevEdit->setText( newText );
+ }
+
+ //truncating
+ if ( newText.left( newText.length()-1 ) == pluralAbbrevEdit->text().left( newText.length()-1 ) ) {
+ pluralAbbrevEdit->setText( newText );
+ }
+}
+
+#include "createunitdialog.moc"