[go: up one dir, main page]

Menu

[r370]: / trunk / cellproxy.h  Maximize  Restore  History

Download this file

31 lines (22 with data), 612 Bytes

 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
#ifndef CELLPROXY_H
#define CELLPROXY_H
#include <QtCore/QObject>
#include <QtWebKitWidgets/QWebFrame>
#include "yacasrequest.h"
#include "yacasserver.h"
class CellProxy: public QObject {
Q_OBJECT
public:
CellProxy(QWebFrame* frame, int idx, QString expr, YacasServer& yacas_server, CYacas& yacas2tex, QObject* = 0);
~CellProxy();
public slots:
void on_request_state_changed(YacasRequest::State);
private:
QWebFrame* _frame;
const int _idx;
QString _expr;
YacasServer& _yacas_server;
CYacas& _yacas2tex;
YacasRequest* _request;
};
#endif /* CELLPROXY_H */