mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Implemented add button.
This commit is contained in:
parent
9422a67cf3
commit
3d6a9fb139
1 changed files with 29 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
||||||
#include "georges_typ_dialog.h"
|
#include "georges_typ_dialog.h"
|
||||||
#include "georges.h"
|
#include "georges.h"
|
||||||
|
|
||||||
|
#include <QInputDialog>
|
||||||
|
#include <QMessageBox>
|
||||||
|
|
||||||
class GeorgesTypDialogPvt
|
class GeorgesTypDialogPvt
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -55,6 +58,32 @@ void GeorgesTypDialog::write()
|
||||||
|
|
||||||
void GeorgesTypDialog::onAddClicked()
|
void GeorgesTypDialog::onAddClicked()
|
||||||
{
|
{
|
||||||
|
QString label = QInputDialog::getText( this,
|
||||||
|
tr( "Adding new definition" ),
|
||||||
|
tr( "Please specify the label" ) );
|
||||||
|
if( label.isEmpty() )
|
||||||
|
return;
|
||||||
|
|
||||||
|
QList< QTreeWidgetItem* > l = m_ui.tree->findItems( label, Qt::MatchExactly, 0 );
|
||||||
|
if( !l.isEmpty() )
|
||||||
|
{
|
||||||
|
QMessageBox::information( this,
|
||||||
|
tr( "Failed to add item" ),
|
||||||
|
tr( "You can't add an item with the same label more than once!" ) );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
QTreeWidgetItem *item = new QTreeWidgetItem();
|
||||||
|
item->setFlags( Qt::ItemIsEditable | Qt::ItemIsEnabled );
|
||||||
|
item->setText( 0, label );
|
||||||
|
item->setText( 1, "" );
|
||||||
|
m_ui.tree->addTopLevelItem( item );
|
||||||
|
|
||||||
|
NLGEORGES::CType::CDefinition def;
|
||||||
|
def.Label = label.toUtf8().constData();
|
||||||
|
def.Value = "";
|
||||||
|
m_pvt->typ->Definitions.push_back( def );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void GeorgesTypDialog::onRemoveClicked()
|
void GeorgesTypDialog::onRemoveClicked()
|
||||||
|
|
Loading…
Reference in a new issue