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.
86 lines
2.9 KiB
86 lines
2.9 KiB
/***************************************************************************
|
|
kcurrencyeditdlg.h - description
|
|
-------------------
|
|
begin : Wed Mar 24 2004
|
|
copyright : (C) 2000-2004 by Michael Edwardes
|
|
email : mte@users.sourceforge.net
|
|
Javier Campos Morales <javi_c@users.sourceforge.net>
|
|
Felix Rodriguez <frodriguez@users.sourceforge.net>
|
|
John C <thetacoturtle@users.sourceforge.net>
|
|
Thomas Baumgart <ipwizard@users.sourceforge.net>
|
|
Kevin Tambascio <ktambascio@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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KCURRENCYEDITDLG_H
|
|
#define KCURRENCYEDITDLG_H
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
#include <tqwidget.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
|
|
class KPopupMenu;
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
|
|
#include "../dialogs/kcurrencyeditdlgdecl.h"
|
|
#include "../mymoney/mymoneysecurity.h"
|
|
|
|
/**
|
|
* @author Thomas Baumgart
|
|
*/
|
|
|
|
class KCurrencyEditDlg : public KCurrencyEditDlgDecl
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
KCurrencyEditDlg(TQWidget *parent=0, const char *name=0);
|
|
~KCurrencyEditDlg();
|
|
|
|
public slots:
|
|
void slotSelectCurrency(const TQString& id);
|
|
|
|
protected:
|
|
/// the resize event
|
|
virtual void resizeEvent(TQResizeEvent*);
|
|
void updateCurrency(void);
|
|
|
|
protected slots:
|
|
void slotSelectCurrency(TQListViewItem *);
|
|
|
|
void slotClose(void);
|
|
void slotStartRename(void);
|
|
void slotListClicked(TQListViewItem* item, const TQPoint&, int);
|
|
void slotRenameCurrency(TQListViewItem* item, int col, const TQString& txt);
|
|
void slotLoadCurrencies(void);
|
|
|
|
private slots:
|
|
void timerDone(void);
|
|
void slotSelectBaseCurrency(void);
|
|
|
|
signals:
|
|
void selectObject(const MyMoneySecurity& currency);
|
|
void openContextMenu(const MyMoneySecurity& currency);
|
|
void renameCurrency(TQListViewItem* item, int, const TQString& txt);
|
|
void selectBaseCurrency(const MyMoneySecurity& currency);
|
|
|
|
private:
|
|
MyMoneySecurity m_currency;
|
|
};
|
|
|
|
#endif
|