summaryrefslogtreecommitdiff
path: root/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/BooleanPropertyEditor.java
blob: 6639afea16c3d56514dc58de40dfea3a2a8e871d (plain)
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
108
109
110
111
112
/*******************************************************************************
 * Copyright (c) 2011 Google, Inc.
 * 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:
 *    Google, Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.wb.internal.core.model.property.editor;

import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
import org.eclipse.wb.internal.core.DesignerPlugin;
import org.eclipse.wb.internal.core.model.property.Property;
import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
import org.eclipse.wb.internal.core.utils.ui.DrawUtils;

/**
 * The {@link PropertyEditor} for <code>boolean</code>.
 *
 * @author scheglov_ke
 * @coverage core.model.property.editor
 */
public final class BooleanPropertyEditor extends PropertyEditor {
  private static final Image m_trueImage = DesignerPlugin.getImage("properties/true.png");
  private static final Image m_falseImage = DesignerPlugin.getImage("properties/false.png");
  private static final Image m_unknownImage =
          DesignerPlugin.getImage("properties/BooleanUnknown.png");
  ////////////////////////////////////////////////////////////////////////////
  //
  // Instance
  //
  ////////////////////////////////////////////////////////////////////////////
  public static final PropertyEditor INSTANCE = new BooleanPropertyEditor();

  private BooleanPropertyEditor() {
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // Presentation
  //
  ////////////////////////////////////////////////////////////////////////////
  @Override
  public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception {
    Object value = property.getValue();
    if (value instanceof Boolean) {
      boolean booleanValue = ((Boolean) value).booleanValue();
      Image image = booleanValue ? m_trueImage : m_falseImage;
      String text = Boolean.toString(booleanValue);
      paint(gc, x, y, width, height, image, text);
    } else {
      paint(gc, x, y, width, height, m_unknownImage, "unknown");
    }
  }

  /**
   * Paints {@link Image} and text.
   */
  private void paint(GC gc, int x, int y, int width, int height, Image image, String text) {
    // draw image
    {
      DrawUtils.drawImageCV(gc, image, x, y, height);
      // prepare new position/width
      int imageWidth = image.getBounds().width + 2;
      x += imageWidth;
      width -= imageWidth;
    }
    // draw text
    DrawUtils.drawStringCV(gc, text, x, y, width, height);
  }

  ////////////////////////////////////////////////////////////////////////////
  //
  // Editing
  //
  ////////////////////////////////////////////////////////////////////////////
  @Override
  public boolean activate(PropertyTable propertyTable, Property property, Point location)
      throws Exception {
    // check that user clicked on image
    if (location == null || location.x < m_trueImage.getBounds().width + 2) {
      invertValue(property);
    }
    // don't activate
    return false;
  }

  @Override
  public void doubleClick(Property property, Point location) throws Exception {
    invertValue(property);
  }

  /**
   * Inverts the value of given boolean {@link Property}.
   */
  private void invertValue(Property property) throws Exception {
    // prepare current boolean value
    boolean booleanValue = false;
    {
      Object value = property.getValue();
      if (value instanceof Boolean) {
        booleanValue = ((Boolean) value).booleanValue();
      }
    }
    // set inverted value
    property.setValue(!booleanValue);
  }
}