color_widget_plugin_collection.hpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /**
  2. * \file
  3. *
  4. * \author Mattia Basaglia
  5. *
  6. * \copyright Copyright (C) 2013-2020 Mattia Basaglia
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU Lesser General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #ifndef COLOR_WIDGET_PLUGIN_COLLECTION_HPP
  23. #define COLOR_WIDGET_PLUGIN_COLLECTION_HPP
  24. #include <QtUiPlugin/QDesignerCustomWidgetCollectionInterface>
  25. class ColorWidgets_PluginCollection : public QObject, public QDesignerCustomWidgetCollectionInterface
  26. {
  27. Q_OBJECT
  28. Q_PLUGIN_METADATA(IID "mattia.basaglia.ColorWidgetsPlugin")
  29. Q_INTERFACES(QDesignerCustomWidgetCollectionInterface)
  30. public:
  31. explicit ColorWidgets_PluginCollection(QObject *parent = 0);
  32. QList<QDesignerCustomWidgetInterface*> customWidgets() const;
  33. private:
  34. QList<QDesignerCustomWidgetInterface*> widgets;
  35. };
  36. #endif // COLOR_WIDGET_PLUGIN_COLLECTION_HPP