00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KOLINESTYLEACTION_H
00021 #define KOLINESTYLEACTION_H
00022
00023 #include "KoSelectAction.h"
00024 #include <koffice_export.h>
00026 class KOFFICEUI_EXPORT KoLineStyleAction : public KoSelectAction
00027 {
00028 Q_OBJECT
00029 public:
00036 KoLineStyleAction(const QString& text, const QString& icon, QObject* parent = 0, const char* name = 0);
00045 KoLineStyleAction(const QString& text, const QString& icon, const QObject* receiver,
00046 const char* slot, QObject* parent, const char* name = 0);
00047 ~KoLineStyleAction();
00048
00049 protected:
00051 void createMenu();
00052
00053 private:
00054 class KoLineStyleActionPrivate;
00055 KoLineStyleActionPrivate* d;
00056 };
00057
00058 #endif