File indexing completed on 2024-12-22 04:14:53
0001 /* 0002 * SPDX-FileCopyrightText: 2013 Sven Langkamp <sven.langkamp@gmail.com> 0003 * 0004 * SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef PALETTEDOCKER_H 0008 #define PALETTEDOCKER_H 0009 0010 #include <QObject> 0011 #include <QVariant> 0012 0013 0014 /** 0015 * Docker showing the channels of the current layer 0016 */ 0017 class PaletteDockerPlugin : public QObject 0018 { 0019 Q_OBJECT 0020 public: 0021 PaletteDockerPlugin(QObject *parent, const QVariantList &); 0022 ~PaletteDockerPlugin() override; 0023 }; 0024 0025 #endif