| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 | 
							- /*=========================================================================
 
-   Library:   CTK
 
-  
 
-   Copyright (c) 2010  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.commontk.org/LICENSE
 
-   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.
 
-  
 
- =========================================================================*/
 
- // Qt includes
 
- #include <QApplication>
 
- #include <QCleanlooksStyle>
 
- #include <QDebug>
 
- #include <QDesktopWidget>
 
- #include <QLayout>
 
- #include <QMouseEvent>
 
- #include <QMenu>
 
- #include <QPainter>
 
- #include <QPointer>
 
- #include <QPushButton>
 
- #include <QStyle>
 
- #include <QStyleOptionButton>
 
- #include <QStylePainter>
 
- #include <QToolBar>
 
- // CTK includes
 
- #include "ctkMenuButton.h"
 
- //-----------------------------------------------------------------------------
 
- class ctkMenuButtonPrivate
 
- {
 
-   Q_DECLARE_PUBLIC(ctkMenuButton);
 
- protected:
 
-   ctkMenuButton* const q_ptr;
 
- public:
 
-   ctkMenuButtonPrivate(ctkMenuButton& object);
 
-   QRect indicatorRect() const;
 
-   bool ShowMenu;
 
- };
 
- //-----------------------------------------------------------------------------
 
- ctkMenuButtonPrivate::ctkMenuButtonPrivate(ctkMenuButton& object)
 
-   :q_ptr(&object)
 
- {
 
-   this->ShowMenu = false;
 
- }
 
- //-----------------------------------------------------------------------------
 
- QRect ctkMenuButtonPrivate::indicatorRect()const
 
- {
 
-   Q_Q(const ctkMenuButton);
 
-   
 
-   QStyleOptionButton option;
 
-   q->initStyleOption(&option);
 
-   QRect downArrowRect = q->style()->visualRect(option.direction, option.rect, option.rect);
 
-   downArrowRect.setRect(downArrowRect.right() - 13, downArrowRect.top(),
 
-                         14, downArrowRect.height());
 
-   downArrowRect = q->style()->visualRect(option.direction, option.rect, downArrowRect);
 
-   return downArrowRect;
 
- }
 
- //-----------------------------------------------------------------------------
 
- ctkMenuButton::ctkMenuButton(QWidget* _parent)
 
-   :QPushButton(_parent)
 
-   , d_ptr(new ctkMenuButtonPrivate(*this))
 
- {
 
- }
 
- //-----------------------------------------------------------------------------
 
- ctkMenuButton::ctkMenuButton(const QString& title, QWidget* _parent)
 
-   :QPushButton(title, _parent)
 
-   , d_ptr(new ctkMenuButtonPrivate(*this))
 
- {
 
- }
 
- //-----------------------------------------------------------------------------
 
- ctkMenuButton::~ctkMenuButton()
 
- {
 
- }
 
- //-----------------------------------------------------------------------------
 
- QSize ctkMenuButton::minimumSizeHint()const
 
- {
 
-   QSize min = QPushButton::minimumSizeHint();
 
-   return QSize(min.width() + 13, min.height());
 
- }
 
- //-----------------------------------------------------------------------------
 
- QSize ctkMenuButton::sizeHint()const
 
- {
 
-   QSize buttonSizeHint = QPushButton::sizeHint();
 
-   return QSize(buttonSizeHint.width() + 13, buttonSizeHint.height());
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkMenuButton::paintEvent(QPaintEvent * _event)
 
- {
 
-   Q_UNUSED(_event);
 
-   Q_D(ctkMenuButton);
 
-   QStylePainter painter(this);
 
-   QStyleOptionButton option;
 
-   initStyleOption(&option);
 
-   bool drawIndicatorBackground = 
 
-     option.state & QStyle::State_Sunken || 
 
-     option.state & QStyle::State_On;
 
-   // Draw button
 
-   option.features &= ~QStyleOptionButton::HasMenu;
 
-   if (this->menu() && (this->menu()->isVisible() || d->ShowMenu))
 
-     {
 
-     option.state &= ~QStyle::State_Sunken;
 
-     option.state |= QStyle::State_Raised;
 
-     }
 
-   painter.drawControl(QStyle::CE_PushButtonBevel, option);
 
-   // is PE_PanelButtonCommand better ?
 
-   //painter.drawPrimitive(QStyle::PE_PanelButtonCommand, option);
 
-   QRect downArrowRect = d->indicatorRect();
 
-   if (drawIndicatorBackground)
 
-     {    
 
-     // if the button is down, draw the part under the indicator up
 
-     QPixmap cache = QPixmap(option.rect.size());
 
-     cache.fill(Qt::transparent);
 
-     QPainter cachePainter(&cache);
 
-     option.state &= ~QStyle::State_Sunken;
 
-     option.state |= QStyle::State_Raised;
 
-     option.state &= ~QStyle::State_On;
 
-     option.state |= QStyle::State_Off;
 
-     //option.state &= ~QStyle::State_HasFocus;
 
-     option.state &= ~QStyle::State_MouseOver;
 
-     this->style()->drawControl(QStyle::CE_PushButtonBevel, &option, &cachePainter, this);
 
-     painter.drawItemPixmap(downArrowRect, Qt::AlignLeft | Qt::AlignTop, cache.copy(downArrowRect)); 
 
-     }
 
-   // Separator
 
-   // Freely inspired by the painting of CC_ComboBox in qcleanlooksstyle.cpp 
 
-   
 
-   QColor buttonColor = this->palette().button().color();
 
-   QColor darkColor;
 
-   darkColor.setHsv(buttonColor.hue(),
 
-                    qMin(255, static_cast<int>(buttonColor.saturation()*1.9)),
 
-                    qMin(255, static_cast<int>(buttonColor.value()*0.7)));
 
-   painter.setPen(buttonColor.darker(130));
 
-   int borderSize = 2;
 
-   painter.drawLine(QPoint(downArrowRect.left() - 1, downArrowRect.top() + borderSize),
 
-                    QPoint(downArrowRect.left() - 1, downArrowRect.bottom() - borderSize));
 
-   painter.setPen(this->palette().light().color());
 
-   painter.drawLine(QPoint(downArrowRect.left(), downArrowRect.top() + borderSize),
 
-                    QPoint(downArrowRect.left(), downArrowRect.bottom() - borderSize));
 
-   // Draw arrow
 
-   QStyleOption indicatorOpt;
 
-   indicatorOpt.init(this);
 
-   indicatorOpt.rect = downArrowRect.adjusted(borderSize, borderSize, -borderSize, -borderSize);
 
-   painter.drawPrimitive(QStyle::PE_IndicatorArrowDown, indicatorOpt);
 
-   // Draw Icon & Text
 
-   option.rect.setRight( downArrowRect.left());
 
-   painter.drawControl(QStyle::CE_PushButtonLabel, option);
 
- }
 
- //-----------------------------------------------------------------------------
 
- bool ctkMenuButton::hitButton(const QPoint & _pos)const
 
- {
 
-   Q_D(const ctkMenuButton);
 
-   return !d->indicatorRect().contains(_pos) 
 
-     && this->QPushButton::hitButton(_pos);
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkMenuButton::initStyleOption(QStyleOptionButton* option)const
 
- {
 
-   this->QPushButton::initStyleOption(option);
 
- }
 
- //-----------------------------------------------------------------------------
 
- void ctkMenuButton::mousePressEvent(QMouseEvent *e)
 
- {
 
-   Q_D(ctkMenuButton);
 
-   // we don't want to open the menu if the mouse is clicked anywhere on
 
-   // the button, only if it's clicked on the indecator
 
-   this->disconnect(this,SIGNAL(pressed()), this, SLOT(_q_popupPressed()));
 
-   this->QPushButton::mousePressEvent(e);
 
-   if (e->isAccepted())
 
-     {
 
-     return;
 
-     }
 
-   if (d->indicatorRect().contains(e->pos()))
 
-     {
 
-     d->ShowMenu = true;
 
-     this->showMenu();
 
-     d->ShowMenu = false;
 
-     e->accept();
 
-     }
 
- }
 
 
  |