blob: 97447dbdb2cca30eb9f618d6c110256eeb2c99bf (
plain)
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
78
79
80
81
82
|
/***************************************************************************
kequitypriceupdatedlg.h - description
-------------------
begin : Tuesday June 22nd, 2004
copyright : (C) 2000-2004 by Kevin Tambascio
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 KEQUITYPRICEUPDATEDIALOG_H
#define KEQUITYPRICEUPDATEDIALOG_H
// ----------------------------------------------------------------------------
// QT Includes
#include <tqwidget.h>
#include <tqpair.h>
#include <tqdatastream.h>
class TQListViewItem;
// ----------------------------------------------------------------------------
// KDE Includes
#include <kprocess.h>
// ----------------------------------------------------------------------------
// Project Includes
#include "../converter/webpricequote.h"
#include "../mymoney/mymoneysecurity.h"
#include "../mymoney/mymoneyprice.h"
#include "../dialogs/kequitypriceupdatedlgdecl.h"
/**
* @author Kevin Tambascio & Ace Jones
*/
class KEquityPriceUpdateDlg : public KEquityPriceUpdateDlgDecl
{
Q_OBJECT
public:
KEquityPriceUpdateDlg(TQWidget *parent, const TQString& securityId = TQString());
~KEquityPriceUpdateDlg();
void storePrices(void);
MyMoneyPrice price(const TQString& id) const;
protected slots:
void slotUpdateSelectedClicked(void);
void slotUpdateAllClicked(void);
void slotUpdateSelection(void);
void logStatusMessage(const TQString&);
void logErrorMessage(const TQString&);
void slotReceivedQuote(const TQString&, const TQString&,const TQDate&, const double&);
void slotQuoteFailed(const TQString& _id, const TQString& _symbol);
protected:
void addPricePair(const MyMoneySecurityPair& pair, bool dontCheckExistance = false);
void addInvestment(const MyMoneySecurity& inv);
void finishUpdate(void);
private:
bool m_fUpdateAll;
WebPriceQuote m_webQuote;
};
#endif
// vim:cin:si:ai:et:ts=2:sw=2:
|