Package edu.byu.ece.rapidSmith.gui

Examples of edu.byu.ece.rapidSmith.gui.TileView


   * @param parent
   */
  public TileWindow(QWidget parent){
    super(parent);
    scene = new DesignTileScene();
    view = new TileView(scene);
    layout = new QGridLayout();

    // Side bar setup
    QGridLayout sidebarLayout = new QGridLayout();
    sidebarScene = new QGraphicsScene(this);   
View Full Code Here


    device = FileTools.loadDevice(currPart);
    we = FileTools.loadWireEnumerator(currPart);
   
    // Setup the scene and view for the GUI
    scene = new DeviceBrowserScene(device, we, hideTiles, drawPrimitives, this);
    view = new TileView(scene);
    setCentralWidget(view);

    // Setup some signals for when the user interacts with the view
    scene.updateStatus.connect(this, "updateStatus(String, Tile)");
    scene.updateTile.connect(this, "updateTile(Tile)");
View Full Code Here

TOP

Related Classes of edu.byu.ece.rapidSmith.gui.TileView

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.