Package hu.u_szeged.nbo.client.ui.components.perspective

Examples of hu.u_szeged.nbo.client.ui.components.perspective.SettingsPerspective


    this.loggerContainer = new Composite(mainContainer, SWT.NONE);
    this.logger = new ClientLoggerComponent(loggerContainer, this);

    this.spPerspective = new ResourceAllocationPerspective(this);
    this.ttPerspective = new TransportationTaskPerspective(this);
    this.settingsPerspective = new SettingsPerspective(this);
   
    this.updateClientPerspective = new UpdateClientPerspective(this);

    if (!new File("lastSession.settings").exists()) {
      this.settingsPerspective.getContent().setSelection(0);
View Full Code Here


    this.setAccelerator(SWT.CTRL | 'T');
    this.setImageDescriptor(ImageDescriptor.createFromImageData(new ImageData("img/settings.png")));
  }
 
  public void run() {
    SettingsPerspective settingsPerspective = mainWindow.getSPerspective();

    if (settingsPerspective.getContent().getSelection() == null) {
      settingsPerspective.getContent().setSelection(0);
    }

    mainWindow.changePerspective(settingsPerspective);

  }
View Full Code Here

TOP

Related Classes of hu.u_szeged.nbo.client.ui.components.perspective.SettingsPerspective

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.