/*========================================================================= Library: CTK Copyright (c) Kitware Inc. All rights reserved. Distributed under a BSD License. See LICENSE.txt file. This software is distributed "AS IS" WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #ifndef __ctkColorPickerButtonPlugin_h #define __ctkColorPickerButtonPlugin_h // CTK includes #include "ctkWidgetsAbstractPlugin.h" class CTK_WIDGETS_PLUGINS_EXPORT ctkColorPickerButtonPlugin : public QObject, public ctkWidgetsAbstractPlugin { Q_OBJECT public: ctkColorPickerButtonPlugin(QObject *_parent = 0); QWidget *createWidget(QWidget *_parent); QString domXml() const; QIcon icon() const; QString includeFile() const; bool isContainer() const; QString name() const; }; #endif