mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
439ced872d
When building okular without kdelibs4support it apparently builds with -DQT_NO_SIGNALS_SLOTS_KEYWORDS.
47 lines
1.4 KiB
C++
47 lines
1.4 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2015 by Laurent Montel <montel@kde.org> *
|
|
* Copyright (C) 2015 by Albert Astals Cid <aacid@kde.org> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
***************************************************************************/
|
|
|
|
#ifndef DRAWINGTOOLACTIONS_H
|
|
#define DRAWINGTOOLACTIONS_H
|
|
|
|
#include <QDomDocument>
|
|
#include <QObject>
|
|
|
|
class QAction;
|
|
class KActionCollection;
|
|
|
|
class DrawingToolActions : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit DrawingToolActions( KActionCollection *parent );
|
|
~DrawingToolActions();
|
|
|
|
QList<QAction*> actions() const;
|
|
|
|
void reparseConfig();
|
|
|
|
Q_SIGNALS:
|
|
void changeEngine( const QDomElement &doc );
|
|
void actionsRecreated();
|
|
|
|
private Q_SLOTS:
|
|
void actionTriggered();
|
|
|
|
private:
|
|
void loadTools();
|
|
void createToolAction( const QString &text, const QString &toolName, const QString &colorName, const QDomElement &root );
|
|
|
|
QList<QAction*> m_actions;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE( QDomElement )
|
|
|
|
#endif // DRAWINGTOOLACTIONS_H
|