Changeset View
Changeset View
Standalone View
Standalone View
plugins/dockers/recorder/recorderdocker.h
- This file was added.
| 1 | /* | ||||
|---|---|---|---|---|---|
| 2 | * Copyright (c) 2009 Cyrille Berger <cberger@cberger.net> | ||||
| 3 | * | ||||
| 4 | * This library is free software; you can redistribute it and/or modify | ||||
| 5 | * it under the terms of the GNU Lesser General Public License as published by | ||||
| 6 | * the Free Software Foundation; version 2.1 of the License. | ||||
| 7 | * | ||||
| 8 | * This library is distributed in the hope that it will be useful, | ||||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
| 11 | * GNU Lesser General Public License for more details. | ||||
| 12 | * | ||||
| 13 | * You should have received a copy of the GNU Lesser General Public License | ||||
| 14 | * along with this program; if not, write to the Free Software | ||||
| 15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| 16 | */ | ||||
| 17 | | ||||
| 18 | #ifndef _RECORDER_DOCKER_H_ | ||||
| 19 | #define _RECORDER_DOCKER_H_ | ||||
| 20 | | ||||
| 21 | #include <QObject> | ||||
| 22 | #include <QVariant> | ||||
| 23 | | ||||
| 24 | class KisViewManager; | ||||
| 25 | | ||||
| 26 | /** | ||||
| 27 | * Template of view plugin | ||||
| 28 | */ | ||||
| 29 | class RecorderDockerPlugin : public QObject | ||||
| 30 | { | ||||
| 31 | Q_OBJECT | ||||
| 32 | public: | ||||
| 33 | RecorderDockerPlugin(QObject *parent, const QVariantList &); | ||||
| 34 | ~RecorderDockerPlugin() override; | ||||
| 35 | private: | ||||
| 36 | KisViewManager* m_view; | ||||
| 37 | }; | ||||
| 38 | | ||||
| 39 | #endif | ||||