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/dirview.h') diff --git a/noncore/graphics/opie-eye/iface/dirview.h b/noncore/graphics/opie-eye/iface/dirview.h new file mode 100644 index 0000000..20d9062 --- a/dev/null +++ b/noncore/graphics/opie-eye/iface/dirview.h @@ -0,0 +1,40 @@ +/* + * GPLv2 zecke@handhelds.org + * No WArranty... + */ + +#ifndef PHUNK_DIR_VIEW_H +#define PHUNK_DIR_VIEW_H + +#include + +#include + +class PInterfaceInfo; +class PDirLister; + +struct PDirView { + PDirView( const Config& ); + virtual ~PDirView(); + virtual PInterfaceInfo* interfaceInfo()const = 0; + virtual PDirLister* dirLister()const = 0; +}; + +typedef PDirView* (*phunkViewCreateFunc )(const Config& ); +typedef QMap ViewMap; + +ViewMap* viewMap(); +PDirView* currentView(); +void setCurrentView( PDirView* ); + + + +#define PHUNK_VIEW_INTERFACE( NAME, IMPL ) \ + static PDirView *create_ ## IMPL( const Config& cfg ) { \ + return new IMPL( cfg ); \ + } \ + static ViewMap::Iterator dummy_ ## IMPL = viewMap()->insert( NAME, create_ ## IMPL ); + + + +#endif -- cgit v0.9.0.2