-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframebook.h
56 lines (51 loc) · 1.24 KB
/
framebook.h
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
// Here we avoid loading the header multiple times
#ifndef Tutorial1_HEADER
#define Tutorial1_HEADER
// We need the Plasma Applet headers
#include <Plasma/Applet>
#include <QObject>
#include <QGraphicsLinearLayout>
#include <plasma/widgets/label.h>
#include <plasma/widgets/pushbutton.h>
#include <QHttp>
#include <QFile>
#include <QWebView>
#include <fbApi.h>
#include <kconfigdialog.h>
#include <qjson/parser.h>
#include <QTimer>
#include <framebookconfig.h>
#include <framebookSettings.h>
class QSizeF;
// Define our plasma Applet
class FrameBook : public Plasma::Applet
{
Q_OBJECT
public:
// Basic Create/Destroy
FrameBook(QObject *parent,const QVariantList &args);
~FrameBook();
void init();
public Q_SLOTS:
void nextImage();
//void onUrlChanged(QUrl url);
void setImage(QString * path);
void updateSettings(QString dialog);
void setImgSize();
private:
QGraphicsLinearLayout * layout;
FrameBookConfig * config;
Plasma::Label * image;
QHttp *http;
QFile *tmpFile;
QString tmpLoc;
FbApi *api;
//QWebView * fbAuth;
void createConfigurationInterface(KConfigDialog * parent);
QJson::Parser parser;
Plasma::PushButton * nextBtn;
QTimer * timer;
int timeout;
FrameBookSettings *settings;
};
#endif