~bfiller/webbrowser-app/restrict-arches

« back to all changes in this revision

Viewing changes to src/app/webbrowser/webthumbnail-utils.h

  • Committer: Olivier Tilloy
  • Date: 2014-03-17 22:16:59 UTC
  • mfrom: (468.1.18 with-oxide-api)
  • Revision ID: olivier.tilloy@canonical.com-20140317221659-b2jao4k44upufd2n
Version the new UbuntuWebView API as 0.2 (oxide).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2013 Canonical Ltd.
3
 
 *
4
 
 * This file is part of webbrowser-app.
5
 
 *
6
 
 * webbrowser-app is free software; you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation; version 3.
9
 
 *
10
 
 * webbrowser-app is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 
 */
18
 
 
19
 
#ifndef __WEBTHUMBNAIL_UTILS_H__
20
 
#define __WEBTHUMBNAIL_UTILS_H__
21
 
 
22
 
// Qt
23
 
#include <QtCore/QDir>
24
 
#include <QtCore/QFileInfo>
25
 
#include <QtCore/QObject>
26
 
 
27
 
class QImage;
28
 
class QUrl;
29
 
 
30
 
class WebThumbnailUtils : public QObject
31
 
{
32
 
    Q_OBJECT
33
 
 
34
 
public:
35
 
    static WebThumbnailUtils& instance();
36
 
    ~WebThumbnailUtils();
37
 
 
38
 
    static QDir cacheLocation();
39
 
    static void ensureCacheLocation();
40
 
    static QFileInfo thumbnailFile(const QUrl& url);
41
 
 
42
 
public Q_SLOTS:
43
 
    void cacheThumbnail(const QUrl& url, const QImage& thumbnail) const;
44
 
 
45
 
private:
46
 
    WebThumbnailUtils(QObject* parent=0);
47
 
 
48
 
    void expireCache() const;
49
 
};
50
 
 
51
 
#endif // __WEBTHUMBNAIL_UTILS_H__