mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 11:22:50 +00:00
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
#ifndef LOADER_CLIENT_H
|
|
#define LOADER_CLIENT_H
|
|
|
|
#include <QtGui/QPixmap>
|
|
#include "dom/dom_string.h"
|
|
|
|
namespace khtml {
|
|
class CachedObject;
|
|
class CachedImage;
|
|
|
|
/**
|
|
* @internal
|
|
*
|
|
* a client who wants to load stylesheets, images or scripts from the web has to
|
|
* inherit from this class and overload one of the 3 functions
|
|
*
|
|
*/
|
|
class CachedObjectClient
|
|
{
|
|
public:
|
|
virtual ~CachedObjectClient();
|
|
// clipped pixmap (if it is not yet completely loaded,
|
|
// size of the complete (finished loading) pixmap
|
|
// rectangle of the part that has been loaded very recently
|
|
// pointer to us
|
|
// return whether we need manual update
|
|
// don't ref() or deref() elements in setPixmap!!
|
|
virtual void updatePixmap(const QRect&, CachedImage *);
|
|
virtual void setStyleSheet(const DOM::DOMString &/*url*/, const DOM::DOMString &/*sheet*/, const DOM::DOMString &/*charset*/, const DOM::DOMString &/*mimetype*/);
|
|
virtual void notifyFinished(CachedObject * /*finishedObj*/);
|
|
virtual void error(int err, const QString &text);
|
|
};
|
|
}
|
|
|
|
#endif
|