| 123456789101112131415161718192021222324252627282930313233343536373839 | /*=========================================================================  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 __ctkMenuButtonPlugin_h#define __ctkMenuButtonPlugin_h// CTK includes#include "ctkWidgetsAbstractPlugin.h"class CTK_WIDGETS_PLUGINS_EXPORT ctkMenuButtonPlugin :  public QObject,  public ctkWidgetsAbstractPlugin{  Q_OBJECTpublic:  ctkMenuButtonPlugin(QObject *_parent = 0);    QWidget *createWidget(QWidget *_parent);  QString  domXml() const;  QIcon    icon() const;  QString  includeFile() const;  bool     isContainer() const;  QString  name() const;};#endif
 |