Package org.eclipse.swt.widgets

Examples of org.eclipse.swt.widgets.Display


public class SWTVideoTest {
  public static void main(String[] args) {
    args = Gst.init("SWTVideoTest", args);
    try {
      Display display = new Display();
      Shell shell = new Shell(display);
      shell.setSize(640, 480);
      shell.setLayout(new GridLayout(1, false));

      shell.setText("SWT Video Test");

      Pipeline pipe = new Pipeline("SWT Overlay Test");
      Element src = ElementFactory.make("videotestsrc", "videotest");
      VideoComponent component = new VideoComponent(shell, SWT.NONE, true);
      component.getElement().setName("video");
      component.setKeepAspect(true);
      component.setLayoutData(new GridData(GridData.FILL_BOTH));
      Element sink = component.getElement();

      pipe.addMany(src, sink);
      Element.linkMany(src, sink);
      pipe.play();

      shell.open();
      while (!shell.isDisposed()) {
        if (!display.readAndDispatch())
          display.sleep();
      }
      pipe.stop();
      display.dispose();

    } catch (Exception e) {
      e.printStackTrace();
    }
  }
View Full Code Here


    /* Label Provider */
    fViewer.setLabelProvider(new CellLabelProvider() {
      @Override
      public void update(ViewerCell cell) {
        ISearchFilter filter = (ISearchFilter) cell.getElement();
        Display display = fViewer.getControl().getDisplay();
        if (filter.isEnabled())
          cell.setText(filter.getName());
        else
          cell.setText(NLS.bind(Messages.NewsFiltersListDialog_FILTER_DISABLED, filter.getName()));
        cell.setImage(fFilterIcon);
        if (!OwlUI.isHighContrast())
          cell.setForeground(filter.isEnabled() ? display.getSystemColor(SWT.COLOR_BLACK) : display.getSystemColor(SWT.COLOR_DARK_GRAY));
      }
    });

    /* Sort */
    fViewer.setComparator(new ViewerComparator() {
View Full Code Here

    createContents(shell);
    shell.pack();
    SWTUtil.center(shell);
    open = true;
    shell.open();
    Display display = getParent().getDisplay();
    while (open) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    // Return the entered value, or null
    return ok;
  }
View Full Code Here

    return shell;
  }

  protected void doInit() {
    //
    display = new Display();
    shell = new Shell(display);

    // Load the icons
    icons = new Image[5];
    icons[IDLE_ICON] = loadImage(SWTSystemTrayGUI.class, "/images/tray-idle.gif"); //$NON-NLS-1$
View Full Code Here

                    /*
                     * this may be selection in outline view. If so, the editor selection
                     * would be changed but no event would be sent :(
                     * So we just delay the call and wait for new selection in editor
                     */
                    Display display = Display.getDefault();
                    // fork
                    display.asyncExec(new Runnable() {
                        public void run() {
                            view.checkOpenEditors(true);
                        }
                    });
                }
View Full Code Here

                };
                // this one will be called in UI thread ASAP and allow us to leave
                // current (probably non-UI) thread
                Runnable runnable1 = new Runnable() {
                    public void run() {
                        Display display = Display.getCurrent();
                        display.timerExec(1000, runnable2);
                    }
                };
                Display display = Display.getDefault();
                // fork
                display.asyncExec(runnable1);
            }
        }
    }
View Full Code Here

   
    shlJobSchedulerAgent.open();
    shlJobSchedulerAgent.layout();
   
    readInstallationFile();
    Display display = getParent().getDisplay();
    while (!shlJobSchedulerAgent.isDisposed()) {
      if (!display.readAndDispatch()) {
        display.sleep();
      }
    }
    return result;
  }
View Full Code Here

  public static void main(String[] args) {

    try {


      Display display = Display.getDefault();
      Shell testFtpProfileShell = new Shell();
      final GridLayout gridLayout = new GridLayout();
      gridLayout.numColumns = 2;
      testFtpProfileShell.setLayout(gridLayout);
      testFtpProfileShell.setText("Test FTP Profile");
      testFtpProfileShell.setSize(452, 309);
      testFtpProfileShell.setFocus();


      final SOSLogger  logger = new SOSStandardLogger(SOSLogger.DEBUG9);

     
      final FTPProfilePicker ftpProfilePicker = new FTPProfilePicker(testFtpProfileShell,           
          SWT.NONE,
          new java.io.File("c:/scheduler/config/factory_test.ini")
      );

      ftpProfilePicker.addEmptyItem();
      ftpProfilePicker.setLogger(logger);

      ftpProfilePicker.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, true, false));


      //butConnect dient nur zum Testen
      final Button butConnect = new Button(testFtpProfileShell, SWT.NONE);
      //hier: Listener, wenn ein neuer Profile aus dem Combobox ausgew�hlt wird
      ftpProfilePicker.addSelectionListener((new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {
          System.out.println("test 2");
          try {
            butConnect.setEnabled( ftpProfilePicker.getSelectedFTPProfile() != null);
          } catch (Exception ex) {
            //tu nix
          }
        }
      }));
     


      butConnect.setLayoutData(new GridData());
      butConnect.setEnabled( ftpProfilePicker.getSelectedFTPProfile() != null);
      final Label label1 = new Label(testFtpProfileShell, SWT.NONE);
      butConnect.addSelectionListener(new SelectionAdapter() {
        public void widgetSelected(final SelectionEvent e) {
          sos.net.SOSFileTransfer sosfileTransfer = null;


          try {
            label1.setText("try to connect..");
           
            //2a.
            FTPProfile profile1 = ftpProfilePicker.getSelectedFTPProfile();

            if(profile1 == null) {
              logger.warn("Please define first a Profile");
              return;
            }

            //Verbindung zum FTP Server aufbauen
            sosfileTransfer = profile1.connect();
           
           
           
            //M�gliche aufrufen zum holen von Dateien
           
            /*String l = profile1.openFile("/home/test/temp/1.txt", "1");
           
            System.out.println("Datei per FTP holen und in Verzeichnis(=profile1.getRoot() + 1) ablegen: " + l);
           
            //dritte Parameter steht f�r append
            long j = sosfileTransfer.getFile("/home/test/temp/1.txt", "c:/temp/1/1.txt", false);
            System.out.println("Datei per FTP holen und in Verzeichnis(=c:/temp/1/1.txt) ablegen: Bytes " + j);
           
            long s = profile1.getFile("/home/test/temp/1.txt", "c:/temp/live/2.txt");
            System.out.println("Datei per FTP holen und in Verzeichnis(=c:/temp/1/2.txt) ablegen: " + s);
           
            long k = profile1.getFile("/home/test/temp/1.txt", new java.io.File("c:/temp/1/2212.txt"));
            System.out.println("Datei per FTP holen und in Verzeichnis ablegen: Bytes " + k);
           
            long m = profile1.appendFile("/home/test/temp/1.txt", "c:/temp/1/2.txt");
            System.out.println("Datei per FTP holen und in die Datei c:/temp/1/2.txt hinten anh�ngen: Bytes " + j);
           
           
            long z = profile1.saveAs("c:/temp/config/1.txt", "1.txt");
            System.out.println("Datei (c:/temp/config/1.txt) per FTP Transfer senden und " +
                " in die Datei getRoot() + 2.txt speichern: Bytes " + j);
           
            long x = profile1.saveAs("c:/temp/config/1.txt", "/home/test/temp/test/222222221.txt");
            System.out.println("Datei (c:/temp/config/1.txt) per FTP Transfer senden und " +
                " als /home/test/temp/test/222222221.txt speichern: Bytes " + x);
                */
            /*if(profile1.isConnect()) {
              //entweder                                                     
              profile1.saveAs("c:/temp/config/1.txt", "1.txt");
              java.util.Vector v0 = profile1.getList();
              for(int i = 0; i < v0.size(); i++) {
                logger.info(i + "\t vector v0 file: " + v0.get(i));
              }
              //oder
              java.util.Vector v1 = profile1.getList("/home/test/temp/test/folder1/live");
              for(int i = 0; i < v1.size(); i++) {
                logger.info(i + "\t vector v1 file: " + v1.get(i));
              }

              //oder
              sosfileTransfer.putFile("c:/temp/config/1.txt", "1.txt");
            } else {
              System.out.println("no connection");
            }
            */

            /*
                if(sosfileTransfer instanceof sos.net.SOSFTP) {
                  sos.net.SOSFTP  ftp  = (sos.net.SOSFTP)sosfileTransfer;                 
                }else if (sosfileTransfer instanceof sos.net.SOSSFTP) {
                  sos.net.SOSSFTP sftp = (sos.net.SOSSFTP)sosfileTransfer;                                   
                }
             */

            logger.info("------------> is Connected: " + sosfileTransfer.isConnected());
           
            if(profile1.isConnect())
              label1.setText("successfully connected with.." + ftpProfilePicker.getSelectedProfilename());
            else
              label1.setText("connecting failed" );



            //2
            /*
                System.out.println();System.out.println();
                  FTPProfile profile = ftpProfilePicker.getProfileByName("wilma");
                  logger.info("user: " + profile.getUser());
                  logger.info("root: " + profile.getRoot());                                 
                  ftp = ftpProfilePicker.connect();                
                  logger.info("2. -->" + ftp.getSystemName());
             */

            //3
            /*
                System.out.println();System.out.println();
                  FTPProfile profile2 = ftpProfilePicker.getProfileByName("8of9");
                  logger.info("user: " + profile2.getUser());
                  logger.info("root: " + profile2.getRoot());                                                   
                  ftp = ftpProfilePicker.connect();                                  
                  logger.info("3. -->" + ftp.getSystemName());

                  label.setText("successfully connected with.." + ftpProfilePicker.getProfileByName(ftpProfilePicker.getProfilename()).getHost());
             */
          } catch (Exception ex){
            if (txtLog != null && sosfileTransfer != null) txtLog.append("..ftp server reply error: " + sosfileTransfer.getReplyString());
            label1.setText("connecting failed" );
            System.out.println(ex.toString())
          }

        }
      });
      butConnect.setText("Test Connect");


      label1.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, false, false, 2, 1));
      txtLog = new Text(testFtpProfileShell, SWT.V_SCROLL | SWT.MULTI | SWT.READ_ONLY | SWT.BORDER | SWT.WRAP);
      txtLog.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, true, 2, 1));

      ftpProfilePicker.setLogText(txtLog);



      ftpProfilePicker.setButtonText("Profiles");


      testFtpProfileShell.open();
      testFtpProfileShell.update();


      while (!testFtpProfileShell.isDisposed()) {
        if (!display.readAndDispatch())
          display.sleep();
      }
      display.dispose();

    } catch (Exception e) {
      System.out.println(e);
    }

View Full Code Here

    }


    public void open() {
        _shell.open();
        Display display = _shell.getDisplay();
        while (!_shell.isDisposed()) {
            if (!display.readAndDispatch())
                display.sleep();
        }

        if (_fNote != null)
            _fNote.dispose();
        // if (_image != null)
View Full Code Here

    public static void main(String[] args) {   
      try {
       
       
        Display display = Display.getDefault();
        MainWindow window = new MainWindow();
        window.createSShell();

        MainWindow.getSShell().open();
        MainWindow.getSShell().update();
               
        // window.getSShell().pack(true);

        // if(args.length > 0)
        // window.openFile(args[0]);
       
        while (!MainWindow.getSShell().isDisposed()) {
          if (!display.readAndDispatch())
            display.sleep();
        }
        display.dispose();
       
      } catch (Exception e) {
        try {
          new ErrorLog("error in " + sos.util.SOSClassUtil.getMethodName() + "cause: " + e.toString(), e);
        } catch (Exception ee){
View Full Code Here

TOP

Related Classes of org.eclipse.swt.widgets.Display

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.