| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 | /*=========================================================================  Library:   CTK  Copyright (c) Kitware Inc.  Licensed under the Apache License, Version 2.0 (the "License");  you may not use this file except in compliance with the License.  You may obtain a copy of the License at      http://www.apache.org/licenses/LICENSE-2.0.txt  Unless required by applicable law or agreed to in writing, software  distributed under the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and  limitations under the License.=========================================================================*/#ifndef __ctkColorPickerButton_h#define __ctkColorPickerButton_h// Qt includes#include <QPushButton>#include <QColor>// CTK includes#include "ctkWidgetsExport.h"class ctkColorPickerButtonPrivate;/// \ingroup Widgets////// ctkColorPickerButton is a QPushButton that refers to a color. The color/// and the name of the color (i.e. #FFFFFF) are displayed on the button./// When clicked, a color dialog pops up to select a new color/// for the QPushButton.class CTK_WIDGETS_EXPORT ctkColorPickerButton : public QPushButton{  Q_OBJECT  Q_FLAGS(ColorDialogOption ColorDialogOptions)  Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged USER true)  Q_PROPERTY(bool displayColorName READ displayColorName WRITE setDisplayColorName DESIGNABLE true)  Q_PROPERTY(ColorDialogOptions dialogOptions READ dialogOptions WRITE setDialogOptions)public:  enum ColorDialogOption {    ShowAlphaChannel    = 0x00000001,    NoButtons           = 0x00000002,    DontUseNativeDialog = 0x00000004,    UseCTKColorDialog   = 0x0000000C  };  Q_DECLARE_FLAGS(ColorDialogOptions, ColorDialogOption)  /// By default, the color is black  explicit ctkColorPickerButton(QWidget* parent = 0);  /// By default, the color is black. The text will be shown on the button if  /// displayColorName is false, otherwise the color name is shown.  /// \sa QPushButton::setText  explicit ctkColorPickerButton(const QString& text, QWidget* parent = 0 );  /// The text will be shown on the button if  /// displayColorName is false, otherwise the color name is shown.  /// \sa setColor, QPushButton::setText  explicit ctkColorPickerButton(const QColor& color, const QString & text, QWidget* parent = 0 );  virtual ~ctkColorPickerButton();  ///  /// Current selected color  QColor color()const;  ///  /// Display the color name after color selection  bool displayColorName()const;  ///  /// Set the color dialog options to configure the color dialog.  /// \sa QColorDialog::setOptions QColorDialog::ColorDialogOption  void setDialogOptions(const ColorDialogOptions& options);  const ColorDialogOptions& dialogOptions() const;  ///  /// Reimplemented to return a toolbutton sizehint when no text is displayed  /// in the button.  virtual QSize sizeHint()const;public Q_SLOTS:  ///  /// Set a new current color without opening a dialog  void setColor(const QColor& color);  ///  /// Opens a color dialog to select a new current color.  void changeColor();  ///  /// Toggle the display of the color name after color selection.  /// By default, this is activated.  void setDisplayColorName(bool displayColorName);Q_SIGNALS:  /// colorChanged is fired anytime a new color is set. Programatically or  /// by the user when choosing a color from the color dialog  void colorChanged(QColor);protected Q_SLOTS:  void onToggled(bool change = true);protected:  virtual void paintEvent(QPaintEvent* event);  QScopedPointer<ctkColorPickerButtonPrivate> d_ptr;private :  Q_DECLARE_PRIVATE(ctkColorPickerButton);  Q_DISABLE_COPY(ctkColorPickerButton);};Q_DECLARE_OPERATORS_FOR_FLAGS(ctkColorPickerButton::ColorDialogOptions)#endif
 |