Examples of QDesktopWidget


Examples of com.trolltech.qt.gui.QDesktopWidget

        }
  }
 
  @Override
  public void paintEvent(QPaintEvent e) {
    QDesktopWidget desktop = QApplication.desktop();
    int screen = desktop.screenNumber();
    this.setMaximumSize(desktop.size());
    this.setMinimumSize(desktop.size());
    resize(desktop.size());
   
    QPainter painter = new QPainter(this);
   
    painter.fillRect(desktop.screenGeometry(screen), QColor.black);

    QRect availGeo = desktop.availableGeometry(screen);
   
    int x1 = (availGeo.width()/2)-(image.size().width()/2);
    int y1 = (availGeo.height()/2)-(image.size().height()/2);
   
    painter.drawImage(new QPoint(x1,y1), image);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.