summaryrefslogtreecommitdiffstats
path: root/khtml/misc/loader_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'khtml/misc/loader_client.h')
-rw-r--r--khtml/misc/loader_client.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/khtml/misc/loader_client.h b/khtml/misc/loader_client.h
deleted file mode 100644
index 3e28f7e56..000000000
--- a/khtml/misc/loader_client.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef LOADER_CLIENT_H
-#define LOADER_CLIENT_H
-
-#include <tqpixmap.h>
-#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 setPixmap(const TQPixmap &, const TQRect&, CachedImage *);
- virtual void setStyleSheet(const DOM::DOMString &/*url*/, const DOM::DOMString &/*sheet*/, const DOM::DOMString &/*charset*/);
- virtual void notifyFinished(CachedObject * /*finishedObj*/);
- virtual void error(int err, const TQString &text);
- };
-}
-
-#endif