Package org.kde.qt

Examples of org.kde.qt.QFont


  }

  private void createStatusBar() {
    msg = new QLabel(statusBar(), "message");
    msg.setAlignment(AlignCenter);
    QFont boldfont = new QFont();
    boldfont.setWeight(QFont.Bold);
    msg.setFont(boldfont);
    statusBar().addWidget(msg, 4);
    QToolTip.add(msg, "Message area");
  }
View Full Code Here

TOP

Related Classes of org.kde.qt.QFont

Copyright © 2018 www.massapicom. 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.