1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/***************************************************************************
* Copyright (C) 2003 by *
* Unai Garro ([email protected]) *
* Cyril Bosselut ([email protected]) *
* Jason Kivlighn ([email protected]) *
* *
* 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 "selectunitdialog.h"
#include <tdeconfig.h>
#include <tdeglobal.h>
#include <tdelocale.h>
SelectUnitDialog::SelectUnitDialog( TQWidget* parent, const UnitList &unitList, OptionFlag showEmpty )
: KDialogBase( parent, "SelectUnitDialog", true, i18n( "Choose Unit" ),
KDialogBase::Ok | KDialogBase::Cancel, KDialogBase::Ok ), m_showEmpty(showEmpty)
{
TQVBox *page = makeVBoxMainWidget();
box = new TQGroupBox( page );
box->setTitle( i18n( "Choose Unit" ) );
box->setColumnLayout( 0, TQt::Vertical );
TQVBoxLayout *boxLayout = new TQVBoxLayout( box->layout() );
unitChooseView = new TDEListView( box );
TDEConfig *config = TDEGlobal::config();
config->setGroup( "Advanced" );
bool show_id = config->readBoolEntry( "ShowID", false );
unitChooseView->addColumn( i18n( "Id" ), show_id ? -1 : 0 );
unitChooseView->addColumn( i18n( "Unit" ) );
unitChooseView->setSorting(1);
unitChooseView->setGeometry( TQRect( 5, 30, 180, 250 ) );
unitChooseView->setAllColumnsShowFocus( true );
boxLayout->addWidget( unitChooseView );
resize( TQSize( 200, 350 ) );
loadUnits( unitList );
}
SelectUnitDialog::~SelectUnitDialog()
{}
int SelectUnitDialog::unitID( void )
{
TQListViewItem * it;
if ( ( it = unitChooseView->selectedItem() ) ) {
return ( it->text( 0 ).toInt() );
}
else
return ( -1 );
}
void SelectUnitDialog::loadUnits( const UnitList &unitList )
{
for ( UnitList::const_iterator unit_it = unitList.begin(); unit_it != unitList.end(); ++unit_it ) {
TQString unitName = ( *unit_it ).name;
if ( unitName.isEmpty() ) {
if ( m_showEmpty == ShowEmptyUnit )
unitName = " "+i18n("-No unit-");
else
continue;
}
( void ) new TQListViewItem( unitChooseView, TQString::number( ( *unit_it ).id ), unitName );
}
}
|