#include "Qss.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "windows.h" #include "winuser.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define QSSDIALOG_SHADOW_WIDTH 12 #define QSSDIALOG_BODER_WIDTH 0 enum { TOPLEFT = 11, TOP = 12, TOPRIGHT = 13, LEFT = 21, CENTER = 22, RIGHT = 23, BUTTOMLEFT = 31, BUTTOM = 32, BUTTOMRIGHT = 33 }; static void rangeObjectList(QObject*obj,int indent){ QObjectList child = obj->children(); QString tmp(""); for(int i = 0;i < indent;i++) tmp +=" "; for(int i = 0;i < child.size();i++){ qDebug()<objectName() + " " + child.at(i)->metaObject()->className(); if(child.at(i)->children().size() > 0){ rangeObjectList(child.at(i),indent + 1); } } } QssTtitleBar::QssTtitleBar(QWidget *parent , QTitleBar_Type type, bool tray) : QWidget(parent), m_Main(nullptr), m_maxOrRestore(false), m_pressed(false), m_type(type), m_tray(tray) { setObjectName("qssTitleBar"); m_closeBtn = new QPushButton(this); m_closeBtn->setObjectName("titlebarclosebtn"); m_closeBtn->setToolTip(QString::fromLocal8Bit("")); m_closeBtn->setVisible(m_type & QTitleBar_Button_Close); m_minBtn = new QPushButton(this); m_minBtn->setObjectName("titlebarminbtn"); m_minBtn->setToolTip(QString::fromLocal8Bit("最大化")); m_minBtn->setVisible(m_type & QTitleBar_Button_Min); m_restoreBtn = new QPushButton(this);// m_restoreBtn->setObjectName("titlebarrestorebtn"); m_restoreBtn->setToolTip(QString::fromLocal8Bit("")); m_restoreBtn->setVisible(m_type & QTitleBar_Button_Restore); m_maxBtn = new QPushButton(this);//normal m_maxBtn->setObjectName("titlebarmaxbtn");//css m_maxBtn->setToolTip(QString::fromLocal8Bit("")); m_maxBtn->setVisible(m_type & QTitleBar_Button_Max); m_titlebarTitle = new QLabel(this); m_titlebarTitle->setObjectName("title"); QHBoxLayout* hBox = new QHBoxLayout(this); hBox->setContentsMargins(0,0,0,0); hBox->addStretch(20); hBox->addWidget(m_titlebarTitle); hBox->addStretch(19); hBox->addWidget(m_minBtn); hBox->addWidget(m_restoreBtn); m_restoreBtn->setVisible(m_maxOrRestore); hBox->addWidget(m_maxBtn); hBox->addWidget(m_closeBtn); setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); installEventFilter(this); if(m_tray){ connect(m_closeBtn, SIGNAL(clicked()), parent, SLOT(hide())); }else{ connect(m_closeBtn, SIGNAL(clicked()), parent, SLOT(close())); } connect(m_minBtn, SIGNAL(clicked()), parent, SLOT(showMinimized())); connect(m_maxBtn, SIGNAL(clicked()), this, SLOT(onMaxOrRestore())); connect(m_restoreBtn, SIGNAL(clicked()), this, SLOT(onMaxOrRestore())); m_rcValid = QGuiApplication::primaryScreen()->availableGeometry(); setWindowFlags(windowFlags()|Qt::MSWindowsFixedSizeDialogHint); this->setGeometry(parent->geometry().x(),parent->geometry().y(),0,0); m_rcNormal = parentWidget()->geometry(); QFile file(":/qss/css/QssTitleBar.css"); if (!file.open(QIODevice::ReadOnly)){ qDebug()<<"error open QssTitleBar"; } QTextStream in(&file); QString css = in.readAll(); this->setStyleSheet(css); m_titlebarTitle->setMinimumHeight(this->height()); } QssTtitleBar::~QssTtitleBar() { delete(this->m_maxBtn); delete(this->m_restoreBtn); } void QssTtitleBar::setTitle( QString title ) { m_titlebarTitle->setText(title); } void QssTtitleBar::setIcon( QIcon icon) { // m_iconBtn->setIcon(icon); } void QssTtitleBar::setMaxOrRestore( bool val) { m_maxOrRestore = val;//true if ((m_type & QTitleBar_Button_Restore) && (m_type & QTitleBar_Button_Max)) { m_restoreBtn->setVisible(m_maxOrRestore); m_maxBtn->setVisible(!m_maxOrRestore); } } void QssTtitleBar::SetMainWindow(QMainWindow *p) { if(nullptr ==p){ return; } this->m_Main = p; } /** m_maxNormaltrue */ void QssTtitleBar::onMaxOrRestore() { if (m_type != QTitleBar_Type_MainWindow) return ; #ifdef QT_NO_EMIT OnMaxOrRestore(m_maxOrRestore); #else emit(OnMaxOrRestore(m_maxOrRestore)); #endif setMaxOrRestore(!m_maxOrRestore); } void QssTtitleBar::paintEvent(QPaintEvent *) { QStyleOption opt(); QPainter p(this); // style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this); } void QssTtitleBar::mouseMoveEvent( QMouseEvent * ev ) { if (m_maxOrRestore) return; if (!m_pressed) return; QPoint globalPt = ev->globalPos(); QPoint movePt = globalPt - m_pressedPos; parentWidget()->move(movePt); QssMainWindow *parent = static_cast(parentWidget()); // if(nullptr != parent){ // parent->DetectDpiChange(); // } return ; } void QssTtitleBar::mousePressEvent( QMouseEvent * ev ) { m_pressed = true; m_pressedPos = mapToParent(ev->pos()); return ; } void QssTtitleBar::mouseReleaseEvent( QMouseEvent * ev ) { m_pressed = false; } bool QssTtitleBar::eventFilter( QObject * obj, QEvent * ev ) { if (obj == this) { if (ev->type() == QEvent::MouseButtonDblClick) { onMaxOrRestore(); return true; } } return QWidget::eventFilter(obj, ev); } void QssMainWindow::OnMaxOrRestore(bool max) { if (max) { setMinimumSize(0, 0); setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); this->m_frame->setMinimumSize(0, 0); this->m_frame->setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); if (!m_rcNormal.isValid()) { QSize sizeHint = parentWidget()->sizeHint(); if (sizeHint.width() > m_rcValid.width()) sizeHint.setWidth(m_rcValid.width() -100); if (sizeHint.height() > m_rcValid.height()) sizeHint.setHeight(m_rcValid.height() - 100); m_rcNormal.setLeft((m_rcValid.width() - sizeHint.width())/2); m_rcNormal.setTop((m_rcValid.height() - sizeHint.height())/2); m_rcNormal.setWidth(sizeHint.width()); m_rcNormal.setHeight(sizeHint.height()); } this->parentWidget()->setGeometry(m_rcNormal); this->setGeometry(m_rcNormalCentral); setMinimumSize(0, 0); setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); this->m_frame->setMinimumSize(0, 0); this->m_frame->setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); } else { m_rcNormal = this->parentWidget()->geometry(); m_rcNormalCentral = this->geometry(); setMinimumSize(0, 0); setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); this->m_frame->setMinimumSize(0, 0); this->m_frame->setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); QRect rc = QGuiApplication::primaryScreen()->availableGeometry(); parentWidget()->setGeometry(rc); rc.setRight(rc.right() - 50); this->setGeometry(rc); this->setFixedHeight(rc.height() - m_titleBar->height()); } } // 实际测试切换分辨率会触发这个slot void QssMainWindow::PhisycalDpiChange(qreal dpi) { qDebug()<<"dpi changed,reason: configuration "<parentWidget(); // parent->setGeometry(parent->geometry().x(),parent->geometry().y(), // parent->geometry().width()*m_dpi_ratio, // parent->geometry().height()*m_dpi_ratio); } void QssMainWindow::TrayIconAction(QSystemTrayIcon::ActivationReason reason) { if(reason == QSystemTrayIcon::Trigger) this->showNormal(); } void QssMainWindow::restory() { this->showNormal(); } QssMainWindow::QssMainWindow(QWidget *parent/* = 0*/, Qt::WindowFlags flags/* = 0*/,float scale) : QMainWindow(parent, flags), m_mousePressedInBoundy(false), m_bLeftPress(false), m_dpi_ratio(1.0), m_tray_on(false) { QEvent::registerEventType(); m_rcValid = QGuiApplication::primaryScreen()->availableGeometry(); m_frame = new QFrame(parent, flags); m_frame->setObjectName("window"); m_frame->setWindowFlags(Qt::Window | Qt::FramelessWindowHint| Qt::WindowSystemMenuHint | Qt::WindowMinimizeButtonHint); m_frame->setSizePolicy(QSizePolicy::Minimum,QSizePolicy::Minimum); m_frame->setMouseTracking(true); m_frame->installEventFilter(this); m_titleBar = new QssTtitleBar(m_frame); m_titleBar->installEventFilter(this); m_titleBar->SetMainWindow(this); QVBoxLayout* vbox = new QVBoxLayout(m_frame); vbox->addWidget(m_titleBar); vbox->setSpacing(0); vbox->addWidget(this); mFrameRect = m_frame->geometry(); m_rcNormal = m_frame->geometry(); m_rcNormalCentral = this->geometry(); connect(this->titleBar(),SIGNAL( OnMaxOrRestore(bool )),this,SLOT(OnMaxOrRestore(bool))); QFile file(":/qss/css/QssMainWindow.css"); if (!file.open(QIODevice::ReadOnly)){ qDebug()<<"error QssMainWindow.css"; } QTextStream in(&file); QString css = in.readAll(); m_frame->setStyleSheet(css); mShadowMask = new QWidget(this); mShadowMask->setStyleSheet("QWidget{background-color:rgba(1,1,1,0.3);}"); mShadowMask->hide(); m_frame->setLayout(vbox); this->setFixedHeight(m_rcNormal.height() - m_titleBar->height()); return; } QssMainWindow::~QssMainWindow() { m_frame->deleteLater(); } void QssMainWindow::AdapteDpi() { QObjectList child = this->m_frame->children(); int i = 0; for(int i = 0;i < child.size();i++){ qDebug()<objectName() + " " + child.at(i)->metaObject()->className(); // QssTtitleBar if(child.at(i)->objectName() =="qssTitleBar"){ QssTtitleBar *p = dynamic_cast(child.at(i)); if(nullptr != p){ qDebug()<< p->sizePolicy(); p->setFixedHeight(p->height()*m_dpi_ratio); } } if(child.at(i)->children().size() > 0){ this->rangeObjectList(child.at(i),i + 1); } } } QWidget *QssMainWindow::TitleBar() { return m_titleBar; } void QssMainWindow::RangeObject() { rangeObjectList(m_frame,0); } void QssMainWindow::ShowMask() { mShadowMask->setGeometry(0, 0, this->width(),this->height()); //遮罩窗口位置 mShadowMask->show(); } void QssMainWindow::HideMask() { mShadowMask->hide(); } void QssMainWindow::show() { m_frame->show(); } void QssMainWindow::showMinimized() { m_frame->showMinimized(); } void QssMainWindow::setCursorShape(int CalPos) { Qt::CursorShape cursor; switch(CalPos) { case TOPLEFT: case BUTTOMRIGHT: cursor = Qt::SizeFDiagCursor; break; case TOPRIGHT: case BUTTOMLEFT: cursor = Qt::SizeBDiagCursor; break; case TOP: case BUTTOM: cursor = Qt::SizeVerCursor; break; case LEFT: case RIGHT: cursor = Qt::SizeHorCursor; break; default: cursor = Qt::ArrowCursor; break; } setCursor(cursor); } void QssMainWindow::showMaximized() { m_titleBar->setMaxOrRestore(true); m_frame->setGeometry(m_rcValid); } void QssMainWindow::showFullScreen() { m_titleBar->setMaxOrRestore(true); m_frame->showFullScreen(); } void QssMainWindow::showNormal() { m_titleBar->setMaxOrRestore(false); m_frame->resize(rect().width(), rect().height() + m_titleBar->rect().height()); m_frame->showNormal(); m_frame->show(); qDebug()<children(); for (int i = 0;i < m_frame->children().size();i++){ if(m_frame->children().at(i)->isWidgetType()){ ((QWidget*)m_frame->children().at(i))->show(); } } } void QssMainWindow::setWindowTitle( QString title ) { m_titleBar->setTitle(title); } void QssMainWindow::setWindowIcon( QIcon icon ) { m_frame->setWindowIcon(icon); m_titleBar->setIcon(icon); } #define FRAMESHAPE 10 int QssMainWindow::CalCursorPos(QPoint pt, int colPos) { return ((pt.y() < FRAMESHAPE ? 10 : ((pt.y() > this->height() - FRAMESHAPE) ? 30 : 20)) + colPos); } void QssMainWindow::SetTitleHeight(uint32_t height) { this->m_titleBar->setFixedHeight(height); } int QssMainWindow::CalCursorCol(QPoint pt) { return (pt.x() < FRAMESHAPE ? 1 : ((pt.x() > this->width() - FRAMESHAPE) ? 3 : 2)); } void QssMainWindow::onMouseMoveEvent(QMouseEvent * ev) { if (m_titleBar->maxOrRestore()) { return; } if(Qt::WindowMaximized != windowState()) { setCursorShape(CalCursorPos(ev->pos(),CalCursorCol(ev->pos()))); } QRect rtCentralGeo = this->centralWidget()->geometry(); setCursor(Qt::ArrowCursor); if (m_mousePressedInBoundy) { int x = ev->globalPos().x(); int y = ev->globalPos().y(); int dx = x - m_pos.x(); int dy = y - m_pos.y(); if ((m_left || m_right) && qAbs(dx) < 10) return; if ((m_top || m_bottom) && qAbs(dy) < 15) return; if (m_left && dx > 0 && mFrameRect.width() <= m_frame->minimumWidth()) return ; if (m_top && dy > 0 && mFrameRect.height() <= m_frame->minimumHeight()) return; QRect layout = this->m_frame->layout()->geometry(); QRect frame = this->m_frame->geometry(); QRect rc = m_rcNormalCentral; if (m_left){ rc.setLeft(rc.left() + dx); frame.setLeft(frame.left() + dx); layout.setLeft(layout.left() + dx); } if (m_right){ rc.setRight(rc.right() + dx); layout.setRight(layout.right() + dx); frame.setRight(frame.right() + dx); } if (m_top){ rc.setTop(rc.top() + dy); layout.setTop(layout.top() + dy); frame.setTop(frame.top() + dy); } if (m_bottom){ rc.setBottom(rc.bottom() + dy); layout.setBottom(layout.bottom() + dy); frame.setBottom(frame.bottom() + dy); } setMinimumSize(0, 0); setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); this->m_frame->setMinimumSize(0, 0); this->m_frame->setMaximumSize(QSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)); this->parentWidget()->setGeometry(frame); // this->setGeometry(m_rcNormalCentral); mFrameRect = rc; m_CentralRect = rtCentralGeo; m_pos = ev->globalPos(); } else { int x = ev->x(); int y = ev->y(); QRect rc = m_frame->rect(); m_left = qAbs(x - rc.left()) <= 10; m_right = qAbs(x - rc.right()) <= 10; m_top = qAbs(y - rc.top()) <= 10; m_bottom = qAbs(y - rc.bottom()) <= 10; if ((m_left && m_top) || (m_right && m_bottom)) m_frame->setCursor(Qt::SizeFDiagCursor); else if ((m_right && m_top) || (m_left && m_bottom)) m_frame->setCursor(Qt::SizeBDiagCursor); else if ((m_left && !m_top && !m_bottom) || (m_right && !m_top && !m_bottom)) m_frame->setCursor(Qt::SizeHorCursor); else if ((m_top && !m_right && !m_left) || (m_bottom && !m_right && !m_left)) m_frame->setCursor(Qt::SizeVerCursor); else m_frame->setCursor(Qt::ArrowCursor); } } void QssMainWindow::onMousePressEvent( QMouseEvent * ev ) { m_pos = ev->globalPos(); this->show(); mFrameRect = m_frame->geometry(); if(nullptr != centralWidget()){ m_CentralRect = centralWidget()->geometry(); } m_mousePressedInBoundy = (ev->button() == Qt::LeftButton) && (m_left || m_right || m_top || m_bottom); m_iCalCursorPos = CalCursorPos(ev->pos(),CalCursorCol(ev->pos())); if (ev->button() == Qt::LeftButton) { if(m_iCalCursorPos != CENTER) { m_bLeftPress = true; m_ptViewMousePos = ev->globalPos(); setCursor(Qt::ArrowCursor); } } m_rtPreGeometry = mFrameRect; } void QssMainWindow::onMouseReleaseEvent( QMouseEvent * ev ) { m_bLeftPress = false; m_mousePressedInBoundy = false; } void QssMainWindow::dpiScaleChildren() { } void QssMainWindow::detectDpi() { int logicdpi = logicalDpiX(); m_dpi_ratio = this->logicalDpiX() / 96.0; } void QssMainWindow::rangeObjectList(QObject *obj, int indent) { QObjectList child = obj->children(); QString tmp(""); for(int i = 0;i < indent;i++) tmp +=" "; for(int i = 0;i < child.size();i++){ qDebug()<objectName() + " " + child.at(i)->metaObject()->className(); if(child.at(i)->metaObject()->className() =="QssTtitleBar"){ QssTtitleBar *p = dynamic_cast(child.at(i)); if(nullptr != p){ p->setMinimumSize(p->width()*m_dpi_ratio, p->height()*m_dpi_ratio); } } if(child.at(i)->metaObject()->className() =="QMenuBar"){ QMenuBar *p = dynamic_cast(child.at(i)); if(nullptr != p){ p->setMinimumSize(p->width()*m_dpi_ratio, p->height()*m_dpi_ratio); } continue; } if(child.at(i)->metaObject()->className() =="QDateTimeEdit"){ QDateTimeEdit *p = dynamic_cast(child.at(i)); if(nullptr != p){ p->setMinimumSize(p->minimumHeight()*m_dpi_ratio, p->minimumHeight()*m_dpi_ratio); } continue; } if(strcmp(child.at(i)->metaObject()->className(),"QLabel") == 0){ QLabel *p = dynamic_cast(child.at(i)); if(nullptr != p){ qDebug()<< "parent is " << p->parent()->metaObject()->className(); if(p->parent() != nullptr){ QWidget *wparent = dynamic_cast (p->parent()); if(nullptr != wparent){ if(nullptr != wparent->layout()){ qDebug()<< "index of label in layout is " <layout()->indexOf(p); } } } QFont pf = p->font(); pf.setPointSize(pf.pointSize()*this->m_dpi_ratio); p->setFont(pf); p->setMinimumSize(p->minimumHeight()*m_dpi_ratio, p->minimumHeight()*m_dpi_ratio); } continue; } if(strcmp(child.at(i)->metaObject()->className(),"QComboBox") == 0){ QComboBox *p = dynamic_cast(child.at(i)); p->setMinimumSize(p->width()*m_dpi_ratio, p->height()*m_dpi_ratio); continue; } if(strcmp(child.at(i)->metaObject()->className(),"QPushButton") == 0){ QPushButton *p = dynamic_cast(child.at(i)); qDebug()<objectName() + " " + child.at(i)->metaObject()->className() << p->size(); if(nullptr != p){ p->setFixedHeight(p->height()*m_dpi_ratio); p->setMinimumWidth(p->width()*m_dpi_ratio); } continue; } if(strcmp(child.at(i)->metaObject()->className(),"QLineEdit") == 0){ QLineEdit *p = dynamic_cast(child.at(i)); if(nullptr != p){ p->setFixedHeight(p->height()*this->m_dpi_ratio); QFont pf = p->font(); } continue; } if(child.at(i)->children().size() > 0){ this->rangeObjectList(child.at(i),indent + 1); } } } void QssMainWindow::showEvent(QShowEvent *ev) { } bool QssMainWindow::eventFilter(QObject * obj, QEvent * ev){ qDebug()<type()<type() == QEvent::Hide){ qDebug()<<"hide"; } if(ev->type() == QEvent::MacSizeChange){ qDebug()<<"MacSizeChange"; } if (obj == m_frame) { if (ev->type() == QEvent::Paint){ if(m_frame->isHidden()){ qDebug()<<"hidden"; m_frame->show(); } // m_frame->showMaximized(); } if (ev->type() == QEvent::MouseMove) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMouseMoveEvent(mouseEv); return false; } } else if (ev->type() == QEvent::MouseButtonPress) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMousePressEvent(mouseEv); return false; } } else if (ev->type() == QEvent::MouseButtonRelease) { setCursor(Qt::ArrowCursor); QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMouseReleaseEvent(mouseEv); return false; } } else if (ev->type() == QEvent::Show) { m_titleBar->show(); this->showNormal(); this->centralWidget()->showNormal(); // QRect rc = m_frame->rect(); // QRect parentRc = m_rcValid; // /** m_frame */ // int x = parentRc.left() + (parentRc.width() - rc.width())*0.5; x = x <= 0 ? 1 : x; // int y = parentRc.top() + (parentRc.height() - rc.height())*0.5; y = y <= 0 ? 1 : y; // m_frame->move(x, y); } else if (ev->type() == QEvent::Close) { if(m_tray_on){ // this->hide(); return true; }else{ close(); m_titleBar->close(); return true; } } else if (ev->type() == QEvent::Hide) { if(m_tray_on){ // m_frame->hide(); return true; }else{ close(); m_titleBar->close(); return true; } } } else if (obj == m_titleBar) { if (ev->type() == QEvent::Enter) { m_left = false; m_right = false; m_top = false; m_bottom = false; if (m_frame->cursor().shape() != Qt::ArrowCursor) m_frame->setCursor(Qt::ArrowCursor); } if(ev->type() == QEvent::Resize){ } if(ev->type() == QEvent::Close){ qDebug()<<"close"; return true; } } else if (obj == this) { if (ev->type() == QEvent::Enter) { m_left = false;m_right = false; m_top = false; m_bottom = false; if (m_frame->cursor().shape() != Qt::ArrowCursor) m_frame->setCursor(Qt::ArrowCursor); } if(QEvent::Resize == ev->type()){ } else if (ev->type() == QEvent::MouseButtonRelease) { setCursor(Qt::ArrowCursor); QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMouseReleaseEvent(mouseEv); return false; } } if(QEvent::Resize == ev->type()){ } if(QEvent::Close == ev->type()){ qDebug()<<"close"; } } if(QEvent::Resize == ev->type()){ } if(QEvent::Close == ev->type()){ qDebug()<<"close"; return true; } return false; } void QssMainWindow::SetTrayIcon(QIcon *icon) { // QPixmap m_logo(":/gif.ico"); // m_tray->setIcon(QIcon(m_logo));//设置图标 // m_tray->show(); // connect(m_tray,&QSystemTrayIcon::activated, // this,&QssMainWindow::TrayIconAction); // m_menu = new QMenu(this); // m_resetAction = new QAction(this); // m_resetAction->setText("show"); // m_quitAction = new QAction(this); // m_resetAction->setIcon(QIcon(m_logo)); // m_quitAction->setText("quit"); // m_quitAction->setIcon(QIcon(m_logo)); // connect(m_quitAction,&QAction::triggered,qApp,&QApplication::quit); //// connect(m_resetAction,&QAction::triggered,this,&MainWindow::restory); // m_tray->setContextMenu(m_menu);//设置托盘菜单 // m_menu->addAction(m_resetAction); // m_menu->addAction(m_quitAction); m_tray_on = true; } void QssMainWindow::ScaleChanged(float scale) { } WId QssMainWindow::GetWID() const { return 0; } void QssMainWindow::SetScale(float scale) { } void QssMainWindow::paintEvent(QPaintEvent *event) { QWidget::paintEvent(event); } QssDialog::QssDialog(QWidget *parent) : QDialog(0), m_parent(parent), m_mousePressedInBorder(false) { m_rcValid = QGuiApplication::primaryScreen()->availableGeometry(); m_frame = new QFrame(parent); m_frame->setObjectName("dialog");//css m_frame->setAttribute(Qt::WA_TranslucentBackground); m_frame->setWindowFlags(Qt::Dialog | Qt::FramelessWindowHint| Qt::WindowSystemMenuHint/* | Qt::WindowMinimizeButtonHint*/);//Qt::WindowMinimizeButtonHintdialog m_frame->setMouseTracking(true); m_frame->installEventFilter(this); m_titleBar = new QssTtitleBar(m_frame, QssTtitleBar::QTitleBar_Type_Dialog); m_titleBar->installEventFilter(this); QVBoxLayout* vbox = new QVBoxLayout(m_frame); vbox->setSpacing(0); vbox->addWidget(m_titleBar); vbox->addWidget(this); installEventFilter(this); mShadowMask = new QWidget(this); mShadowMask->setStyleSheet("QWidget{background-color:rgba(1,1,1,0.3);}"); mShadowMask->hide(); } QssDialog::~QssDialog() { m_frame->deleteLater(); } void QssDialog::ShowMask() { mShadowMask->setGeometry(0, 0, this->width(),this->height()); //遮罩窗口位置 mShadowMask->show(); } void QssDialog::HideMask() { mShadowMask->hide(); } void QssDialog::show() { /** resize m_framem_framesizehint */ int offset = (QSSDIALOG_SHADOW_WIDTH + QSSDIALOG_BODER_WIDTH)*2; m_frame->resize(rect().width() + offset, rect().height() + m_titleBar->rect().height() + offset); QDialog::show(); m_frame->show(); } void QssDockWidget::paintEvent(QPaintEvent *){ QStyleOption opt; QPainter p(this); style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this); } void QssDockWidget::show() { int offset = (QSSDIALOG_SHADOW_WIDTH + QSSDIALOG_BODER_WIDTH)*2;//rect()����padding��paddingframe m_frame->resize(rect().width() + offset, rect().height() + m_titleBar->rect().height() + offset); QDockWidget::show(); m_frame->show(); } void QssDialog::raise() { m_frame->raise(); } void QssDialog::activateWindow() { m_frame->activateWindow(); } int QssDialog::exec() { /** resize m_framem_framesizehint */ int offset = (QSSDIALOG_SHADOW_WIDTH + QSSDIALOG_BODER_WIDTH)*2;//rect()����padding��paddingframe m_frame->resize(rect().width() + offset, rect().height() + m_titleBar->rect().height() + offset); m_frame->setWindowModality(Qt::ApplicationModal);//Qt::ApplicationModal m_frame->show(); m_frame->raise(); m_frame->activateWindow(); int ret = QDialog::exec(); m_frame->close(); return ret; } void QssDialog::setWindowTitle( QString title ) { m_frame->setWindowTitle(title); m_titleBar->setTitle(title); } void QssDialog::setWindowIcon( QIcon icon ) { m_frame->setWindowIcon(icon); m_titleBar->setIcon(icon); } void QssDialog::onMouseMoveEvent( QMouseEvent * ev ) { if (m_mousePressedInBorder) { int x = ev->globalPos().x(); int y = ev->globalPos().y(); int dx = x - m_pos.x(); int dy = y - m_pos.y(); if ((m_left || m_right) && qAbs(dx) < 5) return; if ((m_top || m_bottom) && qAbs(dy) < 5) return; if (m_left && dx > 0 && mFrameRect.width() <= m_frame->minimumWidth()) return ; if (m_top && dy > 0 && mFrameRect.height() <= m_frame->minimumHeight()) return; QRect rc = mFrameRect; if (m_left) rc.setLeft(rc.left() + dx); if (m_right) rc.setRight(rc.right() + dx); if (m_top) rc.setTop(rc.top() + dy); if (m_bottom) rc.setBottom(rc.bottom() + dy); qDebug()<<"onMouseMoveEvent"<setGeometry(rc); mFrameRect = rc; m_pos = ev->globalPos(); } else { int x = ev->x() + QSSDIALOG_SHADOW_WIDTH - 2; int y = ev->y() + QSSDIALOG_SHADOW_WIDTH - 2; QRect rc = m_frame->rect(); m_left = qAbs(x - rc.left()) <= 5; m_right = qAbs(x - rc.right()) <= 5; m_top = qAbs(y - rc.top()) <= 5; m_bottom = qAbs(y - rc.bottom()) <= 5; if ((m_left && m_top) || (m_right && m_bottom)) m_frame->setCursor(Qt::SizeFDiagCursor); else if ((m_right && m_top) || (m_left && m_bottom)) m_frame->setCursor(Qt::SizeBDiagCursor); else if ((m_left && !m_top && !m_bottom) || (m_right && !m_top && !m_bottom)) m_frame->setCursor(Qt::SizeHorCursor); else if ((m_top && !m_right && !m_left) || (m_bottom && !m_right && !m_left)) m_frame->setCursor(Qt::SizeVerCursor); else m_frame->setCursor(Qt::ArrowCursor); } } void QssDockWidget::onMouseMoveEvent( QMouseEvent * ev ) { if (m_mousePressedInBorder) { int x = ev->globalPos().x(); int y = ev->globalPos().y(); int dx = x - m_pos.x(); int dy = y - m_pos.y(); if ((m_left || m_right) && qAbs(dx) < 5) return; if ((m_top || m_bottom) && qAbs(dy) < 5) return; if (m_left && dx > 0 && mFrameRect.width() <= m_frame->minimumWidth()) return ; if (m_top && dy > 0 && mFrameRect.height() <= m_frame->minimumHeight()) return; QRect rc = mFrameRect; if (m_left) rc.setLeft(rc.left() + dx); if (m_right) rc.setRight(rc.right() + dx); if (m_top) rc.setTop(rc.top() + dy); if (m_bottom) rc.setBottom(rc.bottom() + dy); m_frame->setGeometry(rc); mFrameRect = rc; m_pos = ev->globalPos(); } else { int x = ev->x() + QSSDIALOG_SHADOW_WIDTH - 2; int y = ev->y() + QSSDIALOG_SHADOW_WIDTH - 2; QRect rc = m_frame->rect(); m_left = qAbs(x - rc.left()) <= 5; m_right = qAbs(x - rc.right()) <= 5; m_top = qAbs(y - rc.top()) <= 5; m_bottom = qAbs(y - rc.bottom()) <= 5; if ((m_left && m_top) || (m_right && m_bottom)) m_frame->setCursor(Qt::SizeFDiagCursor); else if ((m_right && m_top) || (m_left && m_bottom)) m_frame->setCursor(Qt::SizeBDiagCursor); else if ((m_left && !m_top && !m_bottom) || (m_right && !m_top && !m_bottom)) m_frame->setCursor(Qt::SizeHorCursor); else if ((m_top && !m_right && !m_left) || (m_bottom && !m_right && !m_left)) m_frame->setCursor(Qt::SizeVerCursor); else m_frame->setCursor(Qt::ArrowCursor); } } void QssDialog::onMousePressEvent( QMouseEvent * ev ) { m_pos = ev->globalPos(); mFrameRect = m_frame->geometry(); if(m_left || m_right || m_top || m_bottom) { m_mousePressedInBorder = ev->button() == Qt::LeftButton; //qDebug() << "mousePressed pressed in border"; } } void QssDockWidget::onMousePressEvent( QMouseEvent * ev ) { m_pos = ev->globalPos(); mFrameRect = m_frame->geometry(); if(m_left || m_right || m_top || m_bottom) { m_mousePressedInBorder = ev->button() == Qt::LeftButton; //qDebug() << "mousePressed pressed in border"; } } void QssDialog::onMouseReleaseEvent( QMouseEvent * ) { m_mousePressedInBorder = false; } void QssDockWidget::onMouseReleaseEvent( QMouseEvent * ev ) { ev = ev; m_mousePressedInBorder = false; } bool QssDialog::eventFilter( QObject * obj, QEvent * ev ) { if (obj == m_frame) { if (ev->type() == QEvent::MouseMove) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMouseMoveEvent(mouseEv); return true; } } else if (ev->type() == QEvent::MouseButtonPress) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMousePressEvent(mouseEv); return true; } } else if (ev->type() == QEvent::MouseButtonRelease) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMouseReleaseEvent(mouseEv); return true; } }/** */ else if (ev->type() == QEvent::Paint) { const int shadowWidth = QSSDIALOG_SHADOW_WIDTH; const int boderWidht = QSSDIALOG_BODER_WIDTH; QPainter paiter(m_frame); QColor colorBorder(0xaa,0xaa,0xaa); paiter.setPen(colorBorder); int boderOffset = shadowWidth + boderWidht - 1; paiter.drawLine(boderOffset,boderOffset,m_frame->width() - boderOffset - 1, boderOffset);//top paiter.drawLine(boderOffset,m_frame->height() - boderOffset - 1,m_frame->width() - boderOffset - 1, m_frame->height() - boderOffset - 1);//bottom paiter.drawLine(boderOffset,boderOffset,boderOffset,m_frame->height() - boderOffset - 1);//left paiter.drawLine(m_frame->width() - boderOffset - 1,boderOffset,m_frame->width() - boderOffset - 1,m_frame->height() - boderOffset - 1);//right QColor colorShadow(0xaa,0xaa,0xaa); for (int i = 0; i < shadowWidth; i++) { colorShadow.setAlpha(100*cos(1.5707963*i/(shadowWidth - 1))); paiter.setPen(colorShadow); paiter.drawRect(boderOffset + i, boderOffset + i, m_frame->width() - 2*shadowWidth , m_frame->height() - 2*shadowWidth ); } } else if (ev->type() == QEvent::Show) { QRect rc = m_frame->rect(), parentRc; if (m_parent) { /** */ QPoint pt = m_parent->mapToGlobal(QPoint(0,0)); parentRc =m_parent->rect(); parentRc.translate(pt); } else/** */ parentRc = m_rcValid; /** m_frame */ int x = parentRc.left() + (parentRc.width() - rc.width())*0.5;x = x <= 0?1:x; int y = parentRc.top() + (parentRc.height() - rc.height())*0.5;y = y <= 0?1:y; m_frame->move(x,y); /** */ QPropertyAnimation* aniSize = new QPropertyAnimation(m_frame,"geometry"); aniSize->setDuration(200); aniSize->setKeyValueAt(0, QRect(x,y,0,0)); aniSize->setKeyValueAt(0.5, QRect(x ,y,rc.width() + 20,rc.height() + 30)); aniSize->setKeyValueAt(1 , QRect(x,y,rc.width(),rc.height())); //aniSize->setEasingCurve(QEasingCurve::InOutBack);// QPropertyAnimation* aniOpacity = new QPropertyAnimation(m_frame,"windowOpacity"); aniOpacity->setDuration(200); aniOpacity->setStartValue(0); aniOpacity->setEndValue(1); QParallelAnimationGroup* aniGroup = new QParallelAnimationGroup(m_frame); aniGroup->addAnimation(aniSize); aniGroup->addAnimation(aniOpacity); aniGroup->start(QAbstractAnimation::DeleteWhenStopped); } else if (ev->type() == QEvent::Close) { close(); } } else if (obj == m_titleBar) { if (ev->type() == QEvent::Enter) { m_left = false;m_right = false; m_top = false; m_bottom = false; if (m_frame->cursor().shape() != Qt::ArrowCursor) m_frame->setCursor(Qt::ArrowCursor); } } else if (obj == this) { if (ev->type() == QEvent::Enter) { m_left = false;m_right = false; m_top = false; m_bottom = false; if (m_frame->cursor().shape() != Qt::ArrowCursor) m_frame->setCursor(Qt::ArrowCursor); } else if (ev->type() == QEvent::Hide) { m_frame->hide(); return true; } } return QDialog::eventFilter(obj, ev); } QssMessageBox::QssMessageBox( Icon icon, const QString &title, const QString &text, StandardButtons buttons /*= NoButton*/, QWidget *parent /*= 0*/, Qt::WindowFlags flags /*= Qt::Widget | Qt::FramelessWindowHint*/ ) :QMessageBox(icon, title, text, buttons, 0, flags),m_parent(parent) { m_rcValid = QGuiApplication::primaryScreen()->availableGeometry(); m_frame = new QFrame; m_frame->setObjectName("messagebox");//css //m_frame->setAttribute(Qt::WA_TranslucentBackground);/** padding */ m_frame->setWindowFlags(Qt::FramelessWindowHint); m_frame->setMouseTracking(true); m_frame->installEventFilter(this); m_frame->setWindowTitle(title); m_frame->setWindowIcon(style()->standardIcon((QStyle::StandardPixmap)(icon + 8))); m_frame->setWindowModality(Qt::ApplicationModal); m_titleBar = new QssTtitleBar(m_frame, QssTtitleBar::QTitleBar_Type_MessageBox); m_titleBar->installEventFilter(this); m_titleBar->setTitle(title); m_titleBar->setIcon(style()->standardIcon((QStyle::StandardPixmap)(icon + 8))); QVBoxLayout* vbox = new QVBoxLayout(m_frame); // vbox->setMargin(0); vbox->setSpacing(0); vbox->addWidget(m_titleBar); vbox->addWidget(this); installEventFilter(this); } QssMessageBox::QssMessageBox( QWidget *parent /*= 0*/ ) :QMessageBox(parent),m_parent(parent) { m_rcValid = QGuiApplication::primaryScreen()->availableGeometry(); m_frame = new QFrame; m_frame->setObjectName("messagebox");//css m_frame->setAttribute(Qt::WA_TranslucentBackground);/** padding */ m_frame->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowSystemMenuHint); m_frame->setMouseTracking(true); m_frame->installEventFilter(this); m_frame->setWindowModality(Qt::ApplicationModal); m_titleBar = new QssTtitleBar(m_frame, QssTtitleBar::QTitleBar_Type_MessageBox); m_titleBar->installEventFilter(this); QVBoxLayout* vbox = new QVBoxLayout(m_frame); // vbox->setMargin(0); vbox->setSpacing(0); vbox->addWidget(m_titleBar); vbox->addWidget(this); this->setStyleSheet("{background:rgb(0,0,0);}"); installEventFilter(this); } QssMessageBox::~QssMessageBox() { m_frame->deleteLater(); } bool QssMessageBox::eventFilter( QObject * obj, QEvent * ev ) { if (obj == m_frame) { if (ev->type() == QEvent::Paint) { const int shadowWidth = QSSDIALOG_SHADOW_WIDTH; const int boderWidht = QSSDIALOG_BODER_WIDTH; QPainter paiter(m_frame); QColor colorBorder(0xaa,0xaa,0xaa); paiter.setPen(colorBorder); int boderOffset = shadowWidth + boderWidht - 1; paiter.drawLine(boderOffset,boderOffset,m_frame->width() - boderOffset - 1, boderOffset);//top paiter.drawLine(boderOffset,m_frame->height() - boderOffset - 1,m_frame->width() - boderOffset - 1, m_frame->height() - boderOffset - 1);//bottom paiter.drawLine(boderOffset,boderOffset,boderOffset,m_frame->height() - boderOffset - 1);//left paiter.drawLine(m_frame->width() - boderOffset - 1,boderOffset,m_frame->width() - boderOffset - 1,m_frame->height() - boderOffset - 1);//right QColor colorShadow(0xaa,0xaa,0xaa); for (int i = 0; i < shadowWidth; i++) { colorShadow.setAlpha(100*cos(1.5707963*i/(shadowWidth - 1))); paiter.setPen(colorShadow); paiter.drawRect(boderOffset + i, boderOffset + i, m_frame->width() - 2*shadowWidth , m_frame->height() - 2*shadowWidth ); } } else if (ev->type() == QEvent::Show) { QRect rc = m_frame->rect(), parentRc; if (m_parent)/**�� */ { QPoint pt = m_parent->mapToGlobal(QPoint(0,0)); parentRc =m_parent->rect(); parentRc.translate(pt); } else/** */ parentRc = m_rcValid; /** m_frame */ int x = parentRc.left() + (parentRc.width() - rc.width())*0.5;x = x <= 0?1:x; int y = parentRc.top() + (parentRc.height() - rc.height())*0.5;y = y <= 0?1:y; m_frame->move(x,y); /** */ QPropertyAnimation* aniSize = new QPropertyAnimation(m_frame,"geometry"); aniSize->setDuration(200); aniSize->setKeyValueAt(0, QRect(x,y,0,0)); aniSize->setKeyValueAt(0.5, QRect(x ,y,rc.width() + 10,rc.height() + 15)); aniSize->setKeyValueAt(1 , QRect(x,y,rc.width(),rc.height())); //aniSize->setEasingCurve(QEasingCurve::InOutBack);// QPropertyAnimation* aniOpacity = new QPropertyAnimation(m_frame,"windowOpacity"); aniOpacity->setDuration(200); aniOpacity->setStartValue(0); aniOpacity->setEndValue(1); QParallelAnimationGroup* aniGroup = new QParallelAnimationGroup(m_frame); aniGroup->addAnimation(aniSize); aniGroup->addAnimation(aniOpacity); aniGroup->start(QAbstractAnimation::DeleteWhenStopped); } else if (ev->type() == QEvent::Close) { close(); m_titleBar->close(); } } else if(obj == this) { if (ev->type() == QEvent::Resize) { frame()->setFixedWidth(size().width()); } } return QDialog::eventFilter(obj, ev); } QMessageBox::StandardButton QssMessageBox::tips( const QString & text, QWidget* parent /*= 0*/, const QString & title /*= QString::fromLocal8Bit("")*/, StandardButtons btn /*= QMessageBox::Ok*/ ) { QssMessageBox box(QMessageBox::Information, title, "\n" + text/* + "\n"*/, btn, parent); box.setDefaultButton(QMessageBox::Ok); box.frame()->show(); box.frame()->raise(); box.frame()->activateWindow(); QMessageBox::StandardButton ret = (QMessageBox::StandardButton)box.exec(); box.frame()->close(); return ret; } QMessageBox::StandardButton QssMessageBox::warn( const QString & text, QWidget* parent /*= 0*/, const QString & title /*= QString::fromLocal8Bit("")*/, StandardButtons btn /*= QMessageBox::Ok*/ ) { QssMessageBox box(QMessageBox::Warning, title, "\n" + text/* + "\n"*/ , btn, parent); box.setDefaultButton(QMessageBox::Ok); box.frame()->show(); box.frame()->raise(); box.frame()->activateWindow(); QMessageBox::StandardButton ret = (QMessageBox::StandardButton)box.exec(); box.frame()->close(); return ret; } QMessageBox::StandardButton QssMessageBox::error( const QString & text, QWidget* parent /*= 0*/, const QString & title /*= QString::fromLocal8Bit("")*/, StandardButtons btn /*= QMessageBox::Ok*/ ) { QssMessageBox box(QMessageBox::Critical, title, "\n" + text/* + "\n"*/, btn, parent); box.setDefaultButton(QMessageBox::Ok); box.frame()->show(); box.frame()->raise(); box.frame()->activateWindow(); QMessageBox::StandardButton ret = (QMessageBox::StandardButton)box.exec(); box.frame()->close(); return ret; } QMessageBox::StandardButton QssMessageBox::ask( const QString & text, QWidget* parent /*= 0*/, const QString & title /*= QString::fromLocal8Bit("")*/, StandardButtons btn /*= QMessageBox::Yes | QMessageBox::No*/ ) { QssMessageBox box(QMessageBox::Question, title, "\n" + text/* + "\n"*/, btn, parent); box.setDefaultButton(QMessageBox::Yes); box.frame()->show(); box.frame()->raise(); box.frame()->activateWindow(); QMessageBox::StandardButton ret = (QMessageBox::StandardButton)box.exec(); box.frame()->close(); return ret; } QMessageBox::StandardButton QssMessageBox::regard( const QString & text, QWidget* parent /*= 0*/, const QString & title /*= QString::fromLocal8Bit("")*/ ) { QssMessageBox box(parent); QIcon icon = QApplication::windowIcon(); QSize size = icon.actualSize(QSize(64, 64)); box.setIconPixmap(icon.pixmap(size)); box.setDefaultButton(QMessageBox::Ok); box.frame()->setWindowIcon(icon); box.titleBar()->setIcon(icon); box.frame()->setWindowTitle(title); box.titleBar()->setTitle(title); box.setInformativeText(text); box.frame()->show(); box.frame()->raise(); box.frame()->activateWindow(); QMessageBox::StandardButton ret = (QMessageBox::StandardButton)box.exec(); box.frame()->close(); return ret; } QMessageBox::StandardButton QssMessageBox::regard( const QString & text, QIcon icon, QWidget* parent /*= 0*/, const QString & title /*= QString::fromLocal8Bit("")*/ ) { QssMessageBox box(parent); QSize size = icon.actualSize(QSize(64, 64)); box.setIconPixmap(icon.pixmap(size)); box.setDefaultButton(QMessageBox::Ok); box.frame()->setWindowIcon(icon); box.titleBar()->setIcon(icon); box.frame()->setWindowTitle(title); box.titleBar()->setTitle(title); box.setInformativeText(text); box.frame()->show(); box.frame()->raise(); box.frame()->activateWindow(); QMessageBox::StandardButton ret = (QMessageBox::StandardButton)box.exec(); box.frame()->close(); return ret; } QMessageBox::StandardButton QssMessageBox::regardQt(QWidget* parent /*= 0*/, const QString & title /*= QString::fromLocal8Bit("Qt")*/ ) { QString translatedTextAboutQtCaption; translatedTextAboutQtCaption = QMessageBox::tr( "

About Qt

" "

This program uses Qt version %1.

" ).arg(QLatin1String(QT_VERSION_STR)); QString translatedTextAboutQtText; translatedTextAboutQtText = QMessageBox::tr( "

Qt is a C++ toolkit for cross-platform application " "development.

" "

Qt provides single-source portability across MS Windows, " "Mac OS X, Linux, and all major commercial Unix variants. " "Qt is also available for embedded devices as Qt for Embedded Linux " "and Qt for Windows CE.

" "

Qt is available under three different licensing options designed " "to accommodate the needs of our various users.

" "

Qt licensed under our commercial license agreement is appropriate " "for development of proprietary/commercial software where you do not " "want to share any source code with third parties or otherwise cannot " "comply with the terms of the GNU LGPL version 2.1 or GNU GPL version " "3.0.

" "

Qt licensed under the GNU LGPL version 2.1 is appropriate for the " "development of Qt applications (proprietary or open source) provided " "you can comply with the terms and conditions of the GNU LGPL version " "2.1.

" "

Qt licensed under the GNU General Public License version 3.0 is " "appropriate for the development of Qt applications where you wish to " "use such applications in combination with software subject to the " "terms of the GNU GPL version 3.0 or where you are otherwise willing " "to comply with the terms of the GNU GPL version 3.0.

" "

Please see qt.nokia.com/products/licensing " "for an overview of Qt licensing.

" "

Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).

" "

Qt is a Nokia product. See qt.nokia.com " "for more information.

" ); QPixmap pm(QMessageBox::tr(":/trolltech/qmessagebox/images/qtlogo-64.png")); QssMessageBox box(parent); box.setWindowTitle(title.isEmpty() ? QString::fromLocal8Bit("Qt") : title); box.setText(translatedTextAboutQtCaption); box.setInformativeText(translatedTextAboutQtText); if (!pm.isNull()) box.setIconPixmap(pm); box.setDefaultButton(QMessageBox::Ok); box.frame()->setWindowIcon(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png")); box.frame()->setWindowTitle(title.isEmpty() ? QString::fromLocal8Bit("Qt") : title); box.titleBar()->setIcon(QIcon(":/trolltech/qmessagebox/images/qtlogo-64.png")); box.titleBar()->setTitle(title.isEmpty() ? QString::fromLocal8Bit("Qt") : title); box.frame()->show(); box.frame()->raise(); box.frame()->activateWindow(); QMessageBox::StandardButton ret = (QMessageBox::StandardButton)box.exec(); box.frame()->close(); return ret; } QMessageBox::StandardButton QssMessageBox::information( QWidget *parent, const QString &title, const QString &text, StandardButtons buttons /*= Ok*/, StandardButton defaultButton /*= NoButton*/ ) { return QssMessageBox::tips(text, parent, title, buttons); } QMessageBox::StandardButton QssMessageBox::question( QWidget *parent, const QString &title, const QString &text, StandardButtons buttons /*= QMessageBox::Ok*/, StandardButton defaultButton /*= QMessageBox::NoButton*/ ) { return QssMessageBox::ask(text, parent, title, buttons); } QMessageBox::StandardButton QssMessageBox::warning( QWidget *parent, const QString &title, const QString &text, StandardButtons buttons /*= QMessageBox::Ok*/, StandardButton defaultButton /*= QMessageBox::NoButton*/ ) { return QssMessageBox::warn(text, parent, title, buttons); } QMessageBox::StandardButton QssMessageBox::critical( QWidget *parent, const QString &title, const QString &text, StandardButtons buttons /*= QMessageBox::Ok*/, StandardButton defaultButton /*= QMessageBox::NoButton*/ ) { return QssMessageBox::error(text, parent, title, buttons); } void QssMessageBox::about( QWidget *parent, const QString &title, const QString &text ) { QssMessageBox::regard(text, parent, title); } void QssMessageBox::about( QWidget *parent, const QString &title, const QString &text, QIcon icon ) { QssMessageBox::regard(text, icon, parent, title); } void QssMessageBox::aboutQt( QWidget *parent, const QString &title /*= QString()*/ ) { QssMessageBox::regardQt(parent, title); } QssDockWidget::QssDockWidget(QWidget *parent) : QDockWidget(parent), m_parent(parent), m_mousePressedInBorder(false) { m_rcValid = QGuiApplication::primaryScreen()->availableGeometry(); m_frame = new QFrame(parent); m_frame->setObjectName("dialog");//css m_frame->setAttribute(Qt::WA_TranslucentBackground);/** padding css boder��*/ m_frame->setWindowFlags(Qt::Dialog | Qt::FramelessWindowHint); m_frame->setMouseTracking(true); m_frame->installEventFilter(this); m_titleBar = new QssTtitleBar(m_frame, QssTtitleBar::QTitleBar_Type_Dialog); m_titleBar->installEventFilter(this); QVBoxLayout* vbox = new QVBoxLayout(m_frame); // vbox->setMargin(0); vbox->setSpacing(0); vbox->addWidget(m_titleBar); vbox->addWidget(this); installEventFilter(this); this->setStyleSheet(QString("{background: rgb(232, 241, 252);""color: black;border: 1px solid rgb(111, 156, 207);}")); mShadowMask = new QWidget(this); mShadowMask->setStyleSheet("QWidget{background-color:rgba(1,1,1,0.3);}"); mShadowMask->hide(); } void QssDockWidget::ShowMask() { mShadowMask->setGeometry(0, 0, this->width(),this->height()); //遮罩窗口位置 mShadowMask->show(); } void QssDockWidget::HideMask() { mShadowMask->hide(); } QssDockWidget::~QssDockWidget() { m_frame->deleteLater(); } void QssDockWidget::setWindowTitle(QString title) { m_frame->setWindowTitle(title); m_titleBar->setTitle(title); } bool QssDockWidget::eventFilter(QObject *obj, QEvent *ev) { qDebug()<objectName(); if (obj == m_frame) { if (ev->type() == QEvent::MouseMove) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMouseMoveEvent(mouseEv); return true; } } else if (ev->type() == QEvent::MouseButtonPress) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMousePressEvent(mouseEv); return true; } } else if (ev->type() == QEvent::MouseButtonRelease) { QMouseEvent * mouseEv = dynamic_cast(ev); if (ev) { onMouseReleaseEvent(mouseEv); return true; } }/** */ else if (ev->type() == QEvent::Paint) { const int shadowWidth = QSSDIALOG_SHADOW_WIDTH; const int boderWidht = QSSDIALOG_BODER_WIDTH; QPainter paiter(m_frame); QColor colorBorder(0xaa,0xaa,0xaa); paiter.setPen(colorBorder); int boderOffset = shadowWidth + boderWidht - 1; paiter.drawLine(boderOffset,boderOffset,m_frame->width() - boderOffset - 1, boderOffset);//top paiter.drawLine(boderOffset,m_frame->height() - boderOffset - 1,m_frame->width() - boderOffset - 1, m_frame->height() - boderOffset - 1);//bottom paiter.drawLine(boderOffset,boderOffset,boderOffset,m_frame->height() - boderOffset - 1);//left paiter.drawLine(m_frame->width() - boderOffset - 1,boderOffset,m_frame->width() - boderOffset - 1,m_frame->height() - boderOffset - 1);//right QColor colorShadow(0xaa,0xaa,0xaa); for (int i = 0; i < shadowWidth; i++) { colorShadow.setAlpha(100*cos(1.5707963*i/(shadowWidth - 1))); paiter.setPen(colorShadow); paiter.drawRect(boderOffset + i, boderOffset + i, m_frame->width() - 2*shadowWidth , m_frame->height() - 2*shadowWidth ); } } else if (ev->type() == QEvent::Show) { QRect rc = m_frame->rect(), parentRc; if (m_parent) { QPoint pt = m_parent->mapToGlobal(QPoint(0,0)); parentRc =m_parent->rect(); parentRc.translate(pt); } else parentRc = m_rcValid; int x = parentRc.left() + (parentRc.width() - rc.width())*0.5;x = x <= 0?1:x; int y = parentRc.top() + (parentRc.height() - rc.height())*0.5;y = y <= 0?1:y; m_frame->move(x,y); QPropertyAnimation* aniSize = new QPropertyAnimation(m_frame,"geometry"); aniSize->setDuration(200); aniSize->setKeyValueAt(0, QRect(x,y,0,0)); aniSize->setKeyValueAt(0.5, QRect(x ,y,rc.width() + 20,rc.height() + 30)); aniSize->setKeyValueAt(1 , QRect(x,y,rc.width(),rc.height())); //aniSize->setEasingCurve(QEasingCurve::InOutBack);// QPropertyAnimation* aniOpacity = new QPropertyAnimation(m_frame,"windowOpacity"); aniOpacity->setDuration(200); aniOpacity->setStartValue(0); aniOpacity->setEndValue(1); QParallelAnimationGroup* aniGroup = new QParallelAnimationGroup(m_frame); aniGroup->addAnimation(aniSize); aniGroup->addAnimation(aniOpacity); aniGroup->start(QAbstractAnimation::DeleteWhenStopped); } else if (ev->type() == QEvent::Close) { close(); } } else if (obj == m_titleBar) { if (ev->type() == QEvent::Enter) { m_left = false;m_right = false; m_top = false; m_bottom = false; if (m_frame->cursor().shape() != Qt::ArrowCursor) m_frame->setCursor(Qt::ArrowCursor); } } else if (obj == this) { if (ev->type() == QEvent::Enter) { m_left = false;m_right = false; m_top = false; m_bottom = false; if (m_frame->cursor().shape() != Qt::ArrowCursor) m_frame->setCursor(Qt::ArrowCursor); } else if (ev->type() == QEvent::Hide) { // m_frame->hide(); return true; } } return QDockWidget::eventFilter(obj, ev); } QssPushButton::QssPushButton(QWidget *parent, QString objName): QPushButton(parent) { this->setObjectName(objName); } QssToastWidget::QssToastWidget(QWidget *parent) : QWidget(parent) { ui.setupUi(this); setWindowFlags(windowFlags() | Qt::FramelessWindowHint | Qt::Tool);// 无边框 无任务栏 setAttribute(Qt::WA_TranslucentBackground, true); // 背景透明 } QssToastWidget::~QssToastWidget() { } void QssToastWidget::setText(const QString& text) { ui.label->setText(text); } void QssToastWidget::showAnimation(int timeout /*= 2000*/) { // 开始动画 QPropertyAnimation *animation = new QPropertyAnimation(this, "windowOpacity"); animation->setDuration(1000); animation->setStartValue(0); animation->setEndValue(1); animation->start(); show(); QTimer::singleShot(timeout, [&] { // 结束动画 QPropertyAnimation *animation = new QPropertyAnimation(this, "windowOpacity"); animation->setDuration(1000); animation->setStartValue(1); animation->setEndValue(0); animation->start(); connect(animation, &QPropertyAnimation::finished, [&] { close(); deleteLater();// 关闭后析构 }); }); } void QssToastWidget::showTip(const QString& text, QWidget* parent /*= nullptr*/) { QssToastWidget* toast = new QssToastWidget(parent); toast->setWindowFlags(toast->windowFlags() | Qt::WindowStaysOnTopHint); toast->setText(text); toast->setStyleSheet("font:bold;font-size:10px;color:rgb(255,255,255);"); toast->adjustSize(); qDebug()<geometry(); QScreen* pScreen = QGuiApplication::primaryScreen(); toast->move((pScreen->size().width() - toast->width()) / 2, pScreen->size().height() * 5 / 10); toast->showAnimation(1000); } void QssToastWidget::paintEvent(QPaintEvent *event) { QPainter paint(this); paint.begin(this); auto kBackgroundColor = QColor(255, 255, 255); kBackgroundColor.setAlpha(0.0 * 255);// 透明度为0 paint.setRenderHint(QPainter::Antialiasing, true); paint.setPen(Qt::NoPen); paint.setBrush(QBrush(kBackgroundColor, Qt::SolidPattern));//设置画刷形式 paint.drawRect(0, 0, width(), height()); paint.end(); } QSSProcessBar::QSSProcessBar(QWidget *parent) : QDialog(parent), ui(new Ui::Process) { qDebug()<<"Qt::WindowCloseButtonHint: "<< ~int(Qt::WindowCloseButtonHint); ui->setupUi(this); ui->progressBar->setValue(1); setWindowFlags(this->windowFlags() & (~Qt::WindowCloseButtonHint) & (~Qt::WindowContextHelpButtonHint)); mParent = parent; this->hide(); this->setModal(true); } QSSProcessBar::~QSSProcessBar() { delete ui; } void QSSProcessBar::showEvent(QShowEvent *ev) { ui->progressBar->setValue(0); if(nullptr != mParent){ this->move(mParent->geometry().width()/2 - this->width()/2, mParent->geometry().height()/2 - this->height()/2); } QDialog::showEvent(ev); } void QSSProcessBar::on_percent(int percent) { ui->progressBar->setValue(percent); } void QSSProcessBar::on_done_close() { this->close(); } QssMaskWidget::QssMaskWidget(QWidget *parent) :mParent(nullptr) { if(nullptr != parent) { parent->installEventFilter(this); mParent = parent; } this->installEventFilter(this); QPalette palette = this->palette(); palette.setBrush(QPalette::ColorRole::Dark, QColor(0,0,0)); this->setPalette(palette); this->setWindowOpacity(0.5);//设置窗口透明度 this->setWindowFlags(Qt::FramelessWindowHint | windowFlags());//去掉标题栏 } QssMaskWidget::~QssMaskWidget() { } bool QssMaskWidget::eventFilter(QObject *obj, QEvent *ev) { if(obj != this){ if(mParent != nullptr){ if(mParent->parentWidget() != nullptr){ this->move(mParent->parentWidget()->geometry().width()/2, mParent->parentWidget()->geometry().height()/2); this->show(); this->raise(); } } } if(obj == this){ return true; } return false; } void QssMaskWidget::paintEvent(QPaintEvent *event) { QWidget::paintEvent(event); } QSSASyncProcess::QSSASyncProcess(QWidget *parent) :mFirst(true) { this->mParent = parent; } QSSASyncProcess::~QSSASyncProcess() { this->mThread.exit(0); this->mThread.terminate(); } int QSSASyncProcess::Start(void *p) { this->moveToThread(&mThread); if(mFirst){ connect(this, SIGNAL(StartRun(void *)), this, SLOT(Run(void *))); connect(&mThread, &QThread::finished, this, &QObject::deleteLater); mFirst = false; } mThread.start(); #ifdef QT_NO_EMIT StartRun(p); #else emit StartRun(p); #endif return 0; } QThread &QSSASyncProcess::Thread() { return mThread; } void QSSASyncProcess::Run(void *) { #ifdef QT_NO_EMIT Done(); #else emit(Done()); #endif }