From 428b687982966dc2efabaf6dbcc55ad0ea30aa10 Mon Sep 17 00:00:00 2001 From: zecke Date: Mon, 22 Mar 2004 23:32:41 +0000 Subject: Initial Check in of the Eye Of Zilla. This ImageViewer features Image Infos, EXIF, Jpeg,Png,Gif support. It supports scaled loading of Jpegs. an smart image cache.... GUI needs some work and we need to find a bug in QCOP as well. TODO: Add Image Service for example Mailer Add ImageCanvas/Zoomer/Display --- (limited to 'noncore/graphics/opie-eye/iface/slaveiface.h') diff --git a/noncore/graphics/opie-eye/iface/slaveiface.h b/noncore/graphics/opie-eye/iface/slaveiface.h new file mode 100644 index 0000000..e1ecf1f --- a/dev/null +++ b/noncore/graphics/opie-eye/iface/slaveiface.h @@ -0,0 +1,47 @@ +/* + *GPLv2 + */ + +#ifndef SLAVE_INTERFACE_H +#define SLAVE_INTERFACE_H + +#include +#include + +/** + * The Data Packets we use + */ + +struct ImageInfo { + ImageInfo() : kind(false){} + bool operator==( const ImageInfo other ) { + if ( kind != other.kind ) return false; + if ( file != other.file ) return false; + return true; + } + bool kind; + QString file; + QString info; +}; + +struct PixmapInfo { + PixmapInfo() : width( -1 ), height( -1 ) {} + bool operator==( const PixmapInfo& r ) { + if ( width != r.width ) return false; + if ( height != r.height ) return false; + if ( file != r.file ) return false; + return true; + } + int width, height; + QString file; + QPixmap pixmap; +}; + + +/* + * Image Infos + */ + + + +#endif -- cgit v0.9.0.2