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.
47 lines
1.2 KiB
47 lines
1.2 KiB
|
|
#ifndef EMBEDDATA_H
|
|
#define EMBEDDATA_H
|
|
|
|
#include <tqimage.h>
|
|
#include <tqdict.h>
|
|
#include <tqmime.h>
|
|
#include <tqdragobject.h>
|
|
|
|
// MXLS: I dunno what I'm doin'!
|
|
// TQImage uic_findImage(const TQString& name);
|
|
|
|
class MimeSourceFactory_KWinMallory : public TQMimeSourceFactory
|
|
{
|
|
public:
|
|
MimeSourceFactory_KWinMallory() {}
|
|
~MimeSourceFactory_KWinMallory() {}
|
|
const TQMimeSource* data( const TQString& abs_name ) const {
|
|
const TQMimeSource* d = TQMimeSourceFactory::data( abs_name );
|
|
if ( d || abs_name.isNull() ) return d;
|
|
// TQImage img = uic_findImage( abs_name );
|
|
// if ( !img.isNull() )
|
|
// ((TQMimeSourceFactory*)this)->setImage( abs_name, img );
|
|
return TQMimeSourceFactory::data( abs_name );
|
|
};
|
|
};
|
|
|
|
static TQMimeSourceFactory* factory = 0;
|
|
|
|
void qInitImages_KWinMallory();
|
|
|
|
void qCleanupImages_KWinMallory();
|
|
|
|
class StaticInitImages_KWinMallory
|
|
{
|
|
public:
|
|
StaticInitImages_KWinMallory() { qInitImages_KWinMallory(); }
|
|
#if defined(Q_OS_SCO) || defined(Q_OS_UNIXWARE)
|
|
~StaticInitImages_KWinMallory() { }
|
|
#else
|
|
~StaticInitImages_KWinMallory() { qCleanupImages_KWinMallory(); }
|
|
#endif
|
|
};
|
|
|
|
static StaticInitImages_KWinMallory staticImages;
|
|
#endif
|