You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.2 KiB
67 lines
2.2 KiB
/***************************************************************************
|
|
userinfo.cpp
|
|
-------------------
|
|
begin : Fri Jun 1 2007
|
|
copyright : (C) 2007 Thomas Baumgart
|
|
email : Thomas Baumgart <ipwizard@users.sourceforge.net>
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
#include <klocale.h>
|
|
#include <klistview.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include "currency.h"
|
|
|
|
Currency::Currency(TQWidget* parent, const char* name) :
|
|
CurrencyDecl(parent, name)
|
|
{
|
|
m_currencyList->setAllColumnsShowFocus(true);
|
|
m_currencyList->setMultiSelection(false);
|
|
}
|
|
|
|
TQListViewItem* Currency::insertCurrency(const MyMoneySecurity& sec)
|
|
{
|
|
return new KListViewItem(m_currencyList, sec.name(), TQString(sec.id()), sec.tradingSymbol());
|
|
}
|
|
|
|
void Currency::selectCurrency(const MyMoneySecurity& sec)
|
|
{
|
|
TQListViewItem* it_v;
|
|
TQListViewItemIterator it(m_currencyList);
|
|
while((it_v = it.current()) != 0) {
|
|
if(it_v->text(1) == TQString(sec.id())) {
|
|
m_currencyList->setSelected(it_v, true);
|
|
m_currencyList->ensureItemVisible(it_v);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
TQString Currency::selectedCurrency(void) const
|
|
{
|
|
TQString id;
|
|
if(m_currencyList->selectedItem()) {
|
|
id = m_currencyList->selectedItem()->text(1);
|
|
}
|
|
return id;
|
|
}
|
|
|
|
#include "currency.moc"
|