Package com.trolltech.qt.gui

Examples of com.trolltech.qt.gui.QToolBar


  /**
   * Creates a file menu with actions.  These are also added to the tool bar.
   */
  private void setupFileActions(){
    QToolBar tb = new QToolBar(this);
    tb.setWindowTitle(tr("File Actions"));
    addToolBar(tb);

    QMenu fileMenu = new QMenu(tr("&File"), this);
    menuBar().addMenu(fileMenu);

View Full Code Here

TOP

Related Classes of com.trolltech.qt.gui.QToolBar

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.