Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 990cd3cea2dc228d03f60e515c2bd05a33afc628 (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
/*
 * Copyright (c) 2004 - 2011 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
 *    Martin Fluegge - bug 247226: Transparently support legacy models
 */
package org.eclipse.emf.cdo.dawn.ui.wizards.dialogs;

import org.eclipse.emf.cdo.dawn.ui.composites.CDOResourceNodeChooserComposite;
import org.eclipse.emf.cdo.view.CDOView;

import org.eclipse.emf.common.util.URI;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Shell;

/**
 * @since 1.0
 * @author Martin Fluegge
 */
public class CDOResourceNodeSelectionDialog extends Dialog
{
  private final CDOView view;

  private CDOResourceNodeChooserComposite chooserComposite;

  private boolean showResources = false;

  private URI uri;

  public CDOResourceNodeSelectionDialog(Shell parentShell, CDOView view)
  {
    super(parentShell);
    this.view = view;
  }

  public CDOResourceNodeSelectionDialog(Shell parentShell, CDOView view, boolean showResources)
  {
    super(parentShell);
    this.view = view;
    this.showResources = showResources;
  }

  @Override
  protected Control createDialogArea(Composite parent)
  {
    Control parentControl = super.createDialogArea(parent);
    chooserComposite = new CDOResourceNodeChooserComposite((Composite)parentControl, SWT.NONE, "ecore", view);

    chooserComposite.showResources(showResources);
    chooserComposite.createAutomaticResourceName();
    GridData gd = new GridData(GridData.FILL_BOTH);
    chooserComposite.setLayoutData(gd);

    return parentControl;
  }

  @Override
  protected Control createButtonBar(Composite parent)
  {
    Control buttonBar = super.createButtonBar(parent);
    GridData gd = new GridData(GridData.HORIZONTAL_ALIGN_END | GridData.VERTICAL_ALIGN_CENTER);
    buttonBar.setLayoutData(gd);
    getShell().pack();
    return buttonBar;
  }

  @Override
  protected void initializeBounds()
  {
    getShell().setSize(300, 400);
  }

  public URI getResults()
  {
    return uri;
  }

  @Override
  public boolean close()
  {
    uri = chooserComposite.getURI();
    return super.close();
  }
}

Back to the top