Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cfbfba2456101998c90497a2de5c95a4cd81b063 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
 * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.internal.ui.dialogs;

import org.eclipse.emf.cdo.internal.ui.SharedIcons;
import org.eclipse.emf.cdo.internal.ui.bundle.OM;
import org.eclipse.emf.cdo.ui.widgets.SessionComposite;

import org.eclipse.net4j.util.ui.widgets.PreferenceButton;

import org.eclipse.jface.dialogs.TitleAreaDialog;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IWorkbenchPage;

/**
 * @author Eike Stepper
 */
public class OpenSessionDialog extends TitleAreaDialog
{
  public static final String TITLE = "Open Session";

  private IWorkbenchPage page;

  private PreferenceButton automaticButton;

  private SessionComposite composite;

  private boolean automaticPackageRegistry;

  private String serverDescription;

  private String repositoryName;

  public OpenSessionDialog(IWorkbenchPage page)
  {
    super(new Shell(page.getWorkbenchWindow().getShell()));
    this.page = page;
    setShellStyle(getShellStyle() | SWT.APPLICATION_MODAL | SWT.MAX | SWT.TITLE | SWT.RESIZE);
  }

  public IWorkbenchPage getPage()
  {
    return page;
  }

  public String getServerDescription()
  {
    return serverDescription;
  }

  public String getRepositoryName()
  {
    return repositoryName;
  }

  public boolean isAutomaticPackageRegistry()
  {
    return automaticPackageRegistry;
  }

  @Override
  protected void configureShell(Shell newShell)
  {
    super.configureShell(newShell);
    newShell.setText(TITLE);
  }

  @Override
  protected Control createDialogArea(Composite parent)
  {
    composite = new SessionComposite(parent, SWT.NONE);

    setTitle(TITLE);
    setTitleImage(SharedIcons.getImage(SharedIcons.WIZBAN_PACKAGE_MANAGER));

    new Label(composite, SWT.NONE);
    automaticButton = new PreferenceButton(composite, SWT.CHECK, "Automatic Package Registry",
        OM.PREF_AUTOMATIC_PACKAGE_REGISTRY);

    return composite;
  }

  @Override
  protected void okPressed()
  {
    serverDescription = composite.getServerDescription();
    repositoryName = composite.getRepositoryName();
    automaticPackageRegistry = automaticButton.getSelection(true);
    super.okPressed();
  }

  public void closeWithSuccess()
  {
  }
}

Back to the top