Subversion Repository Public Repository

litesoft

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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/*
 * Copyright 2010 Daniel Kurka
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
package com.googlecode.mgwt.ui.client.dialog;

import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.FlowPanel;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.HasHTML;
import com.google.gwt.user.client.ui.HasWidgets;
import com.googlecode.mgwt.dom.client.event.tap.HasTapHandlers;
import com.googlecode.mgwt.ui.client.MGWTStyle;
import com.googlecode.mgwt.ui.client.theme.base.DialogCss;
import com.googlecode.mgwt.ui.client.widget.base.ButtonBase;

/**
 * A dialog panel with title, text, ok and cancel button
 * 
 * @author Daniel Kurka
 */
public class DialogPanel extends Composite {
  private static class CancelButton extends ButtonBase {

    public CancelButton(DialogCss css, String text) {
      super(css);
      setText(text);
      addStyleName(css.cancelbutton());

    }

  }

  private static class OkButton extends ButtonBase {

    public OkButton(DialogCss css, String text) {

      super(css);
      setText(text);
      addStyleName(css.okbutton());

    }

  }

  private FlowPanel main;
  private FlowPanel container;
  private HTML title;
  private FlowPanel content;
  private FlowPanel buttonContainer;
  private OkButton okButton;
  private CancelButton cancelButton;
  private final DialogCss css;

  /**
   * Construct the panel
   */
  public DialogPanel() {
    this(MGWTStyle.getTheme().getMGWTClientBundle().getDialogCss());
  }

  /**
   * Construct panel with a special css
   * 
   * @param css the css to use
   */
  public DialogPanel(DialogCss css) {
    this.css = css;
    this.css.ensureInjected();
    main = new FlowPanel();
    initWidget(main);

    main.addStyleName(css.getDialogPanel());

    container = new FlowPanel();
    container.addStyleName(css.container());

    main.add(container);

    title = new HTML();
    title.addStyleName(css.title());
    container.add(title);

    content = new FlowPanel();
    content.addStyleName(css.content());
    container.add(content);

    buttonContainer = new FlowPanel();
    buttonContainer.addStyleName(css.footer());
    container.add(buttonContainer);

    okButton = new OkButton(css, "Ok");

    buttonContainer.add(okButton);

    cancelButton = new CancelButton(css, "Cancel");

    buttonContainer.add(cancelButton);

  }

  /**
   * get the container of the panel
   * 
   * @return the container of the dialog panel
   */
  public HasWidgets getContent() {
    return content;
  }

  /**
   * get {@link HasTapHandlers} for the cancel button
   * 
   * @return the {@link HasTapHandlers} for cancel button
   */
  public HasTapHandlers getCancelButton() {
    return cancelButton;
  }

  /**
   * get {@link HasTapHandlers} for the ok button
   * 
   * @return the {@link HasTapHandlers} for ok button
   */
  public HasTapHandlers getOkButton() {
    return okButton;
  }

  public void setOkButtonText(String text) {
    this.okButton.setText(text);
  }

  public void setCancelButtonText(String text) {
    this.cancelButton.setText(text);
  }

  /**
   * show the cancel button
   * 
   * @param show true to show, otherwise hidden
   */
  public void showCancelButton(boolean show) {
    if (show) {
      int widgetCount = buttonContainer.getWidgetCount();
      if (widgetCount == 0) {
        buttonContainer.add(cancelButton);
      }
    } else {
      buttonContainer.remove(cancelButton);
    }
  }

  /**
   * show the ok button
   * 
   * @param show true to show, otherwise hidden
   */
  public void showOkButton(boolean show) {
    if (show) {
      buttonContainer.insert(okButton, 0);
    } else {
      buttonContainer.remove(okButton);
    }
  }

  /**
   * Get the title of the dialog
   * 
   * @return the title of the dialog
   */
  public HasHTML getDialogTitle() {
    return title;
  }

}

Commits for litesoft/trunk/mobileGWT/mgwt/zOrig_src_main_java_com_googlecode_mgwt_ui_client_dialog/DialogPanel.java

Diff revisions: vs.
Revision Author Commited Message
745 Diff Diff GeorgeS picture GeorgeS Thu 28 Jun, 2012 03:56:50 +0000
741 GeorgeS picture GeorgeS Tue 26 Jun, 2012 01:21:28 +0000

Update Dialogs to support replaceable button text (for i18n) and to isolate the references to the default CSS to JUST the actual Dialog implementations (Alert, Confirm, and Options for now).