summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/stocktickerlib/stocktickerpluginwidget.cpp
blob: a7f98be5a4bfab5271ffdfe8ded5fa69e627f266 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
 * stocktickerpluginwidget.cpp
 *
 * copyright   : (c) 2002 by L.J. Potter
 * email       : llornkcor@handhelds.org
 *
 */
/***************************************************************************
 *                                                                         *
 *   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 <qvaluelist.h>
#include <qtl.h>
#include <qstring.h>
#include <qstringlist.h>
#include <qobject.h>
#include <qlayout.h>
#include <qlineedit.h>
#include <qregexp.h>
#include <qtimer.h>

#include <qpe/config.h>
#include <qpe/timestring.h>
#include <qpe/qcopenvelope_qws.h>

#include "ticker.h"

extern "C" {
#include "libstocks/stocks.h"
}

#include "stocktickerpluginwidget.h"

StockTickerPluginWidget::StockTickerPluginWidget( QWidget *parent,  const char* name)
    : QWidget(parent,  name ) {
    init();
    startTimer(1000);
}

StockTickerPluginWidget::~StockTickerPluginWidget() {
}

void StockTickerPluginWidget::init() {

    QHBoxLayout* layout = new QHBoxLayout( this );

    stocktickerTicker = new Ticker(this);
    stocktickerTicker->setMinimumHeight(15);
    connect( stocktickerTicker, SIGNAL( mousePressed()), this, SLOT( doStocks() ));
 
    layout->addWidget( stocktickerTicker);
//    Config cfg( "stockticker");
//     cfg.setGroup("Timer");
//     timerDelay= cfg.readNumEntry("Delay",0);
//     if(timerDelay > 0 )
//         startTimer(timerDelay*60000);
//     qDebug("timer ^ set for %d",(timerDelay*60000)/60000);

}

void StockTickerPluginWidget::doStocks() {
    Config cfg( "stockticker");

    cfg.setGroup( "Symbols" );
    QString symbollist;
    symbollist = cfg.readEntry("Symbols", "");
    symbollist.replace(QRegExp(" "),"+");//seperated by +
//    qDebug(symbollist);

    getStocks( symbollist.latin1());
    
    stocktickerTicker->setText( output );
}

void StockTickerPluginWidget::getStocks( const char *blah) {

    stock *stocks_quotes=NULL;
    stock *stocks_tmp;

    QString tempString;
    output = "";

    libstocks_return_code error;

    Config cfg( "stockticker");
    cfg.setGroup( "Fields" );
    bool dotimeCheck, dodateCheck, dosymbolCheck, donameCheck;
    bool docurrentPriceCheck, dolastPriceCheck, doopenPriceCheck;
    bool dominPriceCheck, domaxPriceCheck, dovariationCheck, dovolumeCheck;

    dotimeCheck=dodateCheck=dosymbolCheck=donameCheck= docurrentPriceCheck=dolastPriceCheck=doopenPriceCheck=dominPriceCheck=domaxPriceCheck=dovariationCheck=dovolumeCheck=false;

    dotimeCheck=cfg.readBoolEntry("timeCheck",1);
    dodateCheck=cfg.readBoolEntry("dateCheck",1);
    dosymbolCheck=cfg.readBoolEntry("symbolCheck",1);
    donameCheck=cfg.readBoolEntry("nameCheck",1);
    docurrentPriceCheck=cfg.readBoolEntry("currentPriceCheck",1);
    dolastPriceCheck=cfg.readBoolEntry("lastPriceCheck",1);
    doopenPriceCheck=cfg.readBoolEntry("openPriceCheck",1);
    dominPriceCheck=cfg.readBoolEntry("minPriceCheck",1);
    domaxPriceCheck=cfg.readBoolEntry("maxPriceCheck",1);
    dovariationCheck=cfg.readBoolEntry("variationCheck",1);
    dovolumeCheck=cfg.readBoolEntry("volumeCheck",1);

    DefProxy();
    char *stock_liste = (char *)blah;
      /* Get the stocks and process errors */
    error = get_stocks( stock_liste, &stocks_quotes);

    if (error) {
        printf("Error in getting stocks (%d)\n", error);
        tempString.sprintf("Error in getting stocks (%d)\n", error);
        output =tempString;
        return;
//        exit(1);
    }

    stocks_tmp = stocks_quotes;

      /* Displays the stocks */
    while(stocks_tmp!=0){
        
        if (stocks_tmp->Time) {
//            printf("%s ", stocks_tmp->Time);
            tempString.sprintf("|  %s  ", stocks_tmp->Time);
            tempString.replace(QRegExp("\""),"");
            if( dotimeCheck)
                output +=tempString;
        }
        if (stocks_tmp->Date) {
//             printf("%s ", stocks_tmp->Date);
            tempString.sprintf("|  %s  ", stocks_tmp->Date);
            tempString.replace(QRegExp("\""),"");
            if(dodateCheck)
                output +=tempString;
        }
//         printf("\n");
      
//         printf("----------------------------------------\n");

        if ( strlen(stocks_tmp->Symbol) > 20 ) {
//             printf("| Symbol    | %.20s     |\n",stocks_tmp->Symbol);
            tempString.sprintf("|  Symbol %s  ",stocks_tmp->Symbol);
            if(dosymbolCheck)
                output +=tempString;
        }
        else {
//             printf("| Symbol    | %-20s |\n",stocks_tmp->Symbol);
            tempString.sprintf("|  Symbol %s  ",stocks_tmp->Symbol);
            if(dosymbolCheck)
                output +=tempString;
        }

        if (stocks_tmp->Name) {
            if ( strlen(stocks_tmp->Name) > 20 ) {
//                 printf("| Name %.20s  |\n",stocks_tmp->Name);
                tempString.sprintf("|  Name %s  ",stocks_tmp->Name);
                tempString.stripWhiteSpace();
                if(donameCheck)
                    output +=tempString;
            } else {
//                 printf("| Name      | %-20s     |\n",stocks_tmp->Name);
                tempString.sprintf("|  Name %s  ",stocks_tmp->Name);
                tempString.stripWhiteSpace();
                if(donameCheck)
                    output +=tempString;
            }
        }
        else {
//             printf("| Name      |                          |\n");
            tempString.sprintf("|  Name  | |");
            if(donameCheck)
                output +=tempString;
        }

//         printf("| Price     | %-7.2f                  |\n", stocks_tmp->CurrentPrice);
        tempString.sprintf("|  Price %-7.2f  ", stocks_tmp->CurrentPrice);
        if(docurrentPriceCheck)
            output +=tempString;

//         printf("| Yesterday | %-7.2f                  |\n",stocks_tmp->LastPrice);
        tempString.sprintf("|  Yesterday  %-7.2f  ",stocks_tmp->LastPrice);
        if(dolastPriceCheck)
            output +=tempString;

//         printf("| Open      | %-7.2f                  |\n",stocks_tmp->OpenPrice);
        tempString.sprintf("|  Open %-7.2f  ",stocks_tmp->OpenPrice);
        if(doopenPriceCheck)
            output +=tempString;

//         printf("| Min       | %-7.2f                  |\n", stocks_tmp->MinPrice);
        tempString.sprintf("|  Min %-7.2f  ", stocks_tmp->MinPrice);
        if(dominPriceCheck)
            output +=tempString;

//         printf("| Max       | %-7.2f                  |\n",stocks_tmp->MaxPrice);
        tempString.sprintf("|  Max %-7.2f  ",stocks_tmp->MaxPrice);
        if(domaxPriceCheck)
            output +=tempString;

//         printf("| Var       | %-6.2f (%5.2f %%)         |\n", stocks_tmp->Variation, stocks_tmp->Pourcentage);
        tempString.sprintf("|  Var %-6.2f (%5.2f %%)  ", stocks_tmp->Variation, stocks_tmp->Pourcentage);
        if(dovariationCheck)
                output +=tempString;

//         printf("| Volume    | %-9d                |\n", stocks_tmp->Volume);
        tempString.sprintf("|  Volume %-9d  ", stocks_tmp->Volume);
        if(dovolumeCheck)
            output +=tempString;

//         printf("----------------------------------------\n\n");
        tempString.sprintf("||==++==|");
        output +=tempString;

          /* Simple function which help to browse in the stocks list */ 
        stocks_tmp = next_stock(stocks_tmp);
    }

      /* frees stocks */
    free_stocks(stocks_quotes);

}

void StockTickerPluginWidget::DefProxy(void) {
    char *proxy;
    libstocks_return_code error;

      /* Proxy support */
      /* Checks for "http_proxy" environment variable */
    proxy = getenv("http_proxy");
    if(proxy) {
          /* printf("proxy set\n"); */
        error = set_proxy(proxy);
        if (error) {
//             printf("Proxy error (%d)\n", error);
          QString tempString;
            tempString.sprintf("Proxy error (%d)\n", error);
            output = tempString;
            return;
//             exit(1);
        }
    }
}

void  StockTickerPluginWidget::timerEvent( QTimerEvent *e ) {
    killTimer(e->timerId());    
    doStocks();
    Config cfg( "stockticker");
     cfg.setGroup("Timer");
     timerDelay= cfg.readNumEntry("Delay",0);
    if(timerDelay > 0)
        startTimer(timerDelay*60000);
    qDebug("timer set for %d",(timerDelay*60000)/60000);
    
}