mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
7176dd8b86
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=477589
17 lines
No EOL
463 B
C++
17 lines
No EOL
463 B
C++
|
|
/**
|
|
* @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;
|
|
} |