okular
printinterface.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _OKULAR_PRINTINTERFACE_H_
00011 #define _OKULAR_PRINTINTERFACE_H_
00012
00013 #include <okular/core/okular_export.h>
00014
00015 #include <QtCore/QObject>
00016
00017 class QWidget;
00018
00019 namespace Okular {
00020
00039 class OKULAR_EXPORT PrintInterface
00040 {
00041 public:
00045 virtual ~PrintInterface() {}
00046
00053 virtual QWidget* printConfigurationWidget() const = 0;
00054 };
00055
00056 }
00057
00058 Q_DECLARE_INTERFACE( Okular::PrintInterface, "org.kde.okular.PrintInterface/0.1" )
00059
00060 #endif