You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
15 years ago
|
#ifndef LOADER_CLIENT_H
|
||
|
#define LOADER_CLIENT_H
|
||
|
|
||
14 years ago
|
#include <tqpixmap.h>
|
||
15 years ago
|
#include "dom/dom_string.h"
|
||
|
|
||
12 years ago
|
namespace tdehtml {
|
||
15 years ago
|
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!!
|
||
14 years ago
|
virtual void setPixmap(const TQPixmap &, const TQRect&, CachedImage *);
|
||
15 years ago
|
virtual void setStyleSheet(const DOM::DOMString &/*url*/, const DOM::DOMString &/*sheet*/, const DOM::DOMString &/*charset*/);
|
||
|
virtual void notifyFinished(CachedObject * /*finishedObj*/);
|
||
14 years ago
|
virtual void error(int err, const TQString &text);
|
||
15 years ago
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|