Package vg.userInterface.swingComponents

Examples of vg.userInterface.swingComponents.SimpleStatusBar


    this.splitThird.setResizeWeight(0.2);
    this.splitThird.setDividerSize(8);
    this.splitThird.setOneTouchExpandable(true);

    this.instruments = new Instruments();
    this.statusBar = new SimpleStatusBar();
    this.progressBar = new JProgressBar(0,100);
    this.progressBar.setMaximumSize(new Dimension(100,this.statusBar.getPreferredSize().height-2));
    this.statusBar.add(progressBar);
    this.progressTimer = new Timer(500, new ActionListener() {
      public void actionPerformed(ActionEvent e) {
View Full Code Here


    this.toolBar.setLayout(new GridBagLayout());
    this.toolBar.setFloatable(false);
   
    this.desktop = new Desktop(param);
   
    this.statusBar = new SimpleStatusBar();
   
    this.openButton  = new JButton(new ImageIcon("./data/resources/textures/notepad/openFile.png"));
    this.openButton.setToolTipText("Open file");
   
    this.searchButton = new JButton(new ImageIcon("./data/resources/textures/notepad/search.png"));
View Full Code Here

TOP

Related Classes of vg.userInterface.swingComponents.SimpleStatusBar

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.