////////////////////////////////////////////////////////////////////////////// // oxygenbutton.cpp // ------------------- // Oxygen window decoration for KDE. Buttons. // ------------------- // Copyright (c) 2006, 2007 Riccardo Iaconelli // Copyright (c) 2006, 2007 Casper Boemann // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. ////////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include "oxygenclient.h" #include "oxygenbutton.h" #include "oxygen.h" #include "definitions.cpp" namespace Oxygen { // class OxygenClient; /* extern int BUTTONSIZE; extern int DECOSIZE;*/ // static const int DECOSIZE = 8; ////////////////////////////////////////////////////////////////////////////// // OxygenButton Class // ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // OxygenButton() // --------------- // Constructor OxygenButton::OxygenButton(OxygenClient &parent, const QString& tip, ButtonType type) : KCommonDecorationButton((::ButtonType)type, &parent) , client_(parent) , helper_(parent.helper_) , type_(type) , lastmouse_(0) { setAutoFillBackground(false); setAttribute(Qt::WA_OpaquePaintEvent, false); setFixedSize(OXYGEN_BUTTONSIZE, OXYGEN_BUTTONSIZE); setCursor(Qt::ArrowCursor); setToolTip(tip); } OxygenButton::~OxygenButton() { } ////////////////////////////////////////////////////////////////////////////// // sizeHint() // ---------- // Return size hint QSize OxygenButton::sizeHint() const { return QSize(OXYGEN_BUTTONSIZE, OXYGEN_BUTTONSIZE); } ////////////////////////////////////////////////////////////////////////////// // enterEvent() // ------------ // Mouse has entered the button void OxygenButton::enterEvent(QEvent *e) { // if we wanted to do mouseovers, we would keep track of it here if (status_ != Oxygen::Pressed) { status_ = Oxygen::Hovered; } QAbstractButton::enterEvent(e); } ////////////////////////////////////////////////////////////////////////////// // leaveEvent() // ------------ // Mouse has left the button void OxygenButton::leaveEvent(QEvent *e) { // if we wanted to do mouseovers, we would keep track of it here status_ = Oxygen::Normal; QAbstractButton::leaveEvent(e); } ////////////////////////////////////////////////////////////////////////////// // pressSlot() // ------------ // Mouse has pressed the button void OxygenButton::pressSlot() { status_ = Oxygen::Pressed; update(); } ////////////////////////////////////////////////////////////////////////////// // drawButton() // ------------ // Draw the button void OxygenButton::paintEvent(QPaintEvent *) { QPainter painter(this); if (type_ == ButtonMenu) { // we paint the mini icon (which is 16 pixels high) int dx = (width() - 16) / 2; int dy = (height() - 16) / 2; painter.drawPixmap(dx, dy, client_.icon().pixmap(16)); return; } QColor bg = helper_.backgroundTopColor(palette().window()); painter.drawPixmap(0, 0, helper_.windecoButton(palette().button())); painter.translate(1.5,1.5); painter.setRenderHints(QPainter::Antialiasing); painter.setBrush(Qt::NoBrush); QLinearGradient lg(0, 6, 0, 12); lg.setColorAt(0.45, QColor(0,0,0,150)); lg.setColorAt(0.80, QColor(0,0,0,80)); painter.setPen(QPen(lg, 2)); switch(type_) { case ButtonSticky: painter.drawPoint(9,9); break; case ButtonHelp: painter.drawArc(7,5,4,4,135*16, -180*16); painter.drawArc(9,8,4,4,135*16,45*16); painter.drawPoint(9,12); break; case ButtonMin: painter.drawLine(6,8,9,11); painter.drawLine(9,11,12,8); break; case ButtonMax: switch(client_.maximizeMode()) { case OxygenClient::MaximizeRestore: case OxygenClient::MaximizeVertical: case OxygenClient::MaximizeHorizontal: painter.drawLine(9,8,12,11); painter.drawLine(6,11,9,8); break; case OxygenClient::MaximizeFull: { painter.setBrush(lg); QPoint points[4] = {QPoint(9, 6), QPoint(12, 9), QPoint(9, 12), QPoint(6, 9)}; painter.drawPolygon(points, 4); break; } } break; case ButtonClose: painter.drawLine(6,6,12,12); painter.drawLine(12,6,6,12); break; default: break; } } } //namespace Oxygen