Skip to main content
summaryrefslogtreecommitdiffstats
blob: 70c99a9d29c913235a6283aa9125dc9a366e7e8c (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
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.swt;

import java.util.HashMap;
import java.util.Map;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.StackLayout;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;

/**
 * @author Roberto E. Escobar
 */
public class StackedViewer extends Composite {

   public static final String DEFAULT_CONTROL = "DEFAULT_CONTROL";
   private StackLayout stackLayout;
   private Composite stackComposite;
   private final Map<String, Control> compositeMap;

   public StackedViewer(Composite parent, int style) {
      super(parent, style);
      compositeMap = new HashMap<String, Control>();
      create();
   }

   private void create() {
      this.setLayout(new GridLayout());
      this.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

      stackComposite = new Composite(this, SWT.NONE);
      stackLayout = new StackLayout();
      stackLayout.marginHeight = 0;
      stackLayout.marginWidth = 0;
      stackComposite.setLayout(stackLayout);
      stackComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

      compositeMap.clear();
      compositeMap.put(DEFAULT_CONTROL, createDefault(stackComposite));

      setCurrentControl(DEFAULT_CONTROL);
   }

   public Control addControl(String key, Control control) {
      return compositeMap.put(key, control);
   }

   public Control removeControl(String key) {
      return compositeMap.remove(key);
   }

   public int getControlCount() {
      return compositeMap.size() - 1;
   }

   private Composite createDefault(Composite parent) {
      Composite composite = new Composite(parent, SWT.NONE);
      composite.setLayout(new GridLayout());
      composite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
      composite.setBackground(Displays.getSystemColor(SWT.COLOR_INFO_BACKGROUND));

      Label label = new Label(composite, SWT.NONE);
      label.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
      label.setText("DEFAULT LAYER");
      label.setBackground(Displays.getSystemColor(SWT.COLOR_INFO_BACKGROUND));

      return composite;
   }

   public Composite getStackComposite() {
      return stackComposite;
   }

   public void setCurrentControl(String key) {
      Control control = compositeMap.get(key);
      if (control == null) {
         control = compositeMap.get(DEFAULT_CONTROL);
      }
      stackLayout.topControl = control;
      stackComposite.layout();
   }

   @Override
   public void dispose() {
      for (Control control : compositeMap.values()) {
         Widgets.disposeWidget(control);
      }
      compositeMap.clear();
      Widgets.disposeWidget(stackComposite);
      super.dispose();
   }
}

Back to the top