123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- /*****************************************************************************
- * resizablepopup.cpp - QStarDict, a StarDict clone written with using Qt *
- * Copyright (C) 2007 Alexander Rodin *
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- * This program is distributed in the hope that it will be useful, *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
- * GNU General Public License for more details. *
- * *
- * You should have received a copy of the GNU General Public License along *
- * with this program; if not, write to the Free Software Foundation, Inc., *
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
- *****************************************************************************/
- #include "resizablepopup.h"
- #include <QApplication>
- #include <QCursor>
- #include <QDesktopWidget>
- #include <QMouseEvent>
- #include <QTimerEvent>
- namespace
- {
- const int CornerSize = 10;
- }
- namespace QStarDict
- {
- ResizablePopup::ResizablePopup(QWidget *parent)
- : QFrame(parent, Qt::Popup)
- {
- m_isMoving = false;
- m_resizeDirection = None;
- m_timeoutBeforeHide = 0;
- m_timerCloseId = 0;
- m_timerResizeId = 0;
- m_isPopuped = false;
- setMouseTracking(true);
- setLineWidth(1);
- setMidLineWidth(2);
- setFrameStyle(QFrame::Box);
- setFrameShadow(QFrame::Raised);
- }
- void ResizablePopup::popup()
- {
- if (m_defaultSize != size())
- resize(m_defaultSize);
- QPoint newPosition = QCursor::pos() - QPoint(30, 30);
- if (newPosition.x() < 0)
- newPosition.setX(0);
- else if (newPosition.x() + width() > QApplication::desktop()->width())
- newPosition.setX(QApplication::desktop()->width() - width());
- if (newPosition.y() < 0)
- newPosition.setY(0);
- else if (newPosition.y() + height() > QApplication::desktop()->height())
- newPosition.setY(QApplication::desktop()->height() - height());
- move(newPosition);
- show();
- m_isPopuped = true;
- }
- void ResizablePopup::enterEvent(QEvent*)
- {
- if (m_timerCloseId)
- {
- killTimer(m_timerCloseId);
- m_timerCloseId = 0;
- }
- }
- void ResizablePopup::leaveEvent(QEvent*)
- {
- if (geometry().contains(QCursor::pos()))
- return;
- if (m_resizeDirection)
- return;
- if (m_timeoutBeforeHide < 0)
- return;
- if (m_timeoutBeforeHide == 0)
- {
- m_isPopuped = false;
- hide();
- }
- else if (! m_timerCloseId)
- m_timerCloseId = startTimer(m_timeoutBeforeHide);
- }
- void ResizablePopup::mouseMoveEvent(QMouseEvent *event)
- {
- Qt::CursorShape cursorShape = Qt::ArrowCursor;
- if ((event->x() >= 0 && event->x() < CornerSize &&
- event->y() >= 0 && event->y() < CornerSize) ||
- (event->x() < width() && event->x() >= width() - CornerSize &&
- event->y() < height() && event->y() >= height() - CornerSize))
- cursorShape = Qt::SizeFDiagCursor;
- else if ((event->x() < width() && event->x() >= width() - CornerSize &&
- event->y() >= 0 && event->y() < CornerSize) ||
- (event->x() >= 0 && event->x() < CornerSize &&
- event->y() < height() && event->y() >= height() - CornerSize))
- cursorShape = Qt::SizeBDiagCursor;
- else if ((event->x() >= 0 && event->x() < frameWidth()) ||
- (event->x() < width() && event->x() >= width() - frameWidth()))
- cursorShape = Qt::SizeHorCursor;
- else if ((event->y() >= 0 && event->y() < frameWidth()) ||
- (event->y() < height() && event->y() >= height() - frameWidth()))
- cursorShape = Qt::SizeVerCursor;
-
- if (cursor().shape() != cursorShape)
- setCursor(cursorShape);
- else
- if (event->buttons().testFlag(Qt::LeftButton))
- {
- if (m_isMoving)
- move(pos() + (event->globalPos() - m_oldCursorPos));
- m_oldCursorPos = event->globalPos();
- return;
- }
- m_isMoving = false;
- }
- void ResizablePopup::mousePressEvent(QMouseEvent *event)
- {
- if (! geometry().contains(event->globalPos()))
- {
- if (m_timerCloseId)
- {
- killTimer(m_timerCloseId);
- m_timerCloseId = 0;
- }
- m_isPopuped = false;
- hide();
- return;
- }
- if (event->buttons().testFlag(Qt::LeftButton))
- {
- if (event->x() < CornerSize && event->y() < CornerSize)
- m_resizeDirection = TopLeft;
- else if (event->x() >= width() - CornerSize && event->y() < CornerSize)
- m_resizeDirection = TopRight;
- else if (event->x() < CornerSize && event->y() >= height() - CornerSize)
- m_resizeDirection = BottomLeft;
- else if (event->x() >= width() - CornerSize && event->y() >= height() - CornerSize)
- m_resizeDirection = BottomRight;
- else if (event->x() < frameWidth())
- m_resizeDirection = Left;
- else if (event->x() >= width() - frameWidth())
- m_resizeDirection = Right;
- else if (event->y() < frameWidth())
- m_resizeDirection = Top;
- else if (event->y() >= height() - frameWidth())
- m_resizeDirection = Bottom;
- else
- m_resizeDirection = None;
- if (m_resizeDirection)
- m_timerResizeId = startTimer(8);
- }
- m_isMoving = true;
- m_oldCursorPos = event->globalPos();
- }
- void ResizablePopup::mouseReleaseEvent(QMouseEvent*)
- {
- stopResize();
- }
- void ResizablePopup::mouseDoubleClickEvent(QMouseEvent*)
- {
- m_isPopuped = false;
- if (m_timerCloseId)
- {
- killTimer(m_timerCloseId);
- m_timerCloseId = 0;
- }
- hide();
- }
- void ResizablePopup::timerEvent(QTimerEvent *event)
- {
- if (event->timerId() == m_timerResizeId)
- {
- doResize();
- }
- else if (event->timerId() == m_timerCloseId)
- {
- m_isPopuped = false;
- hide();
- killTimer(m_timerCloseId);
- m_timerCloseId = 0;
- stopResize();
- }
- }
- void ResizablePopup::doResize()
- {
- if (! QApplication::mouseButtons().testFlag(Qt::LeftButton))
- stopResize();
-
- if (m_resizeDirection)
- {
- QRect newGeometry = geometry();
- switch (m_resizeDirection)
- {
- case TopLeft:
- newGeometry.setTopLeft(QCursor::pos());
- break;
- case TopRight:
- newGeometry.setTopRight(QCursor::pos());
- break;
- case BottomLeft:
- newGeometry.setBottomLeft(QCursor::pos());
- break;
- case BottomRight:
- newGeometry.setBottomRight(QCursor::pos());
- break;
- case Left:
- newGeometry.setLeft(QCursor::pos().x());
- break;
- case Right:
- newGeometry.setRight(QCursor::pos().x());
- break;
- case Top:
- newGeometry.setTop(QCursor::pos().y());
- break;
- case Bottom:
- newGeometry.setBottom(QCursor::pos().y());
- break;
- default:
- ; // Nothing
- }
- if (newGeometry.width() < minimumSize().width())
- {
- newGeometry.setWidth(width());
- newGeometry.moveLeft(geometry().left());
- }
- if (newGeometry.height() < minimumSize().height())
- {
- newGeometry.setHeight(height());
- newGeometry.moveTop(geometry().top());
- }
- if (newGeometry != geometry())
- setGeometry(newGeometry);
- }
- }
- void ResizablePopup::stopResize()
- {
- if (m_resizeDirection)
- {
- m_resizeDirection = None;
- killTimer(m_timerResizeId);
- m_timerResizeId = 0;
- }
- }
- bool ResizablePopup::event(QEvent *event)
- {
- if (event->type() == QEvent::WindowUnblocked && m_isPopuped)
- {
- if (m_timerCloseId)
- {
- killTimer(m_timerCloseId);
- m_timerCloseId = 0;
- }
- show();
- return true;
- }
- else
- return QFrame::event(event);
- }
- }
- // vim: tabstop=4 softtabstop=4 shiftwidth=4 expandtab cindent textwidth=120 formatoptions=tc
|