From 7176dd8b86851f0f6b7bbafa8a5e02c7ef54a75b Mon Sep 17 00:00:00 2001 From: Piotr Szymanski Date: Fri, 4 Nov 2005 12:16:21 +0000 Subject: [PATCH] - informatior thingie, actually just syncing my build checkkout with svn and will do a biggr clean up in a while svn path=/trunk/playground/graphics/oKular/kpdf/; revision=477589 --- core/informator.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 core/informator.h diff --git a/core/informator.h b/core/informator.h new file mode 100644 index 000000000..465d922bf --- /dev/null +++ b/core/informator.h @@ -0,0 +1,17 @@ + +/** + * @short The source of information about the Generator + * + * The goal of this class is to provide per Generator settings, + * about data and other stuff not related with generating oKular + * content, but still needed for a full-featured plugin system. + * + */ + +class Informator +{ + virtual QString iconName() = 0; + virtual void addConfigurationPages ( KConfigDialog* cfg ) = 0; + virtual KAboutData about(); + virtual QStringList mimetypes() = 0; +} \ No newline at end of file