Package org.geoforge.guillc.progressbar

Examples of org.geoforge.guillc.progressbar.GfrProgressBar


           MenuElement[] metsMenubar, Component[] cmpsToolbar)
   {
      super.setLayout(new BorderLayout());
     
      this._pnlEast = new GfrPnl();
      this._pbr = new GfrProgressBar();
     
      this._pnlEast.setLayout(new BorderLayout());
      this._pnlEast.add(this._pbr, BorderLayout.EAST);
     
      super.add(this._pnlEast, BorderLayout.EAST);
View Full Code Here


      intPos ++; // position of separator
     
      super._pnlAll.add(Box.createVerticalStrut(10), intPos++); // !!!
      super._pnlAll.add(pnlLabel, intPos++);
     
      final GfrProgressBar pbr = new GfrProgressBar(0, GfrAppSpcAbs.F_INT_NB_TASK_SPLASH);
      pbr.setValue(_intDoneTask_);
      pbr.setIndeterminate(false);
     
      super._pnlAll.add(Box.createVerticalStrut(10), intPos++); // !!!
      super._pnlAll.add(pbr, intPos++);
      super._pnlAll.add(Box.createVerticalStrut(10), intPos++); // !!!
     
      new GfrThr(new Runnable()
      {
         @Override
         public void run()
         {
               while (true)
               {
                    SwingUtilities.invokeLater(new Runnable()
                    {
                        @Override
                        public void run()
                        {
                            pbr.setValue(_intDoneTask_);
                        }
                    });
                   
                    try { Thread.sleep(500); } catch (InterruptedException e) {}
                }
View Full Code Here

        JLabel lbl = new JLabel(strMessage);
       
        this._btnCancel_ = new JButton(
                GfrResBundleLang.s_getInstance().getValue("verb.cancel"));

        GfrProgressBar pbr = new GfrProgressBar();
        pbr.setIndeterminate(true);
       
         Container cntContentPane = getContentPane();
         cntContentPane.setLayout(new BorderLayout());

        JPanel pnlAll = new JPanel();
View Full Code Here

      if (strMessageTextfield != null)
         this._tfdMessage_ = new GfrTfd(strMessageTextfield);

     

      this._pbr = new GfrProgressBar();
      this._pbr.setIndeterminate(true);

      Container cntContentPane = getContentPane();
      cntContentPane.setLayout(new BorderLayout());
View Full Code Here

TOP

Related Classes of org.geoforge.guillc.progressbar.GfrProgressBar

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.