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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
package com.vci.client.portal.UI;
 
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
 
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.border.EmptyBorder;
 
import com.vci.client.LogonApplication;
import com.vci.client.portal.utility.UITools;
import com.vci.client.ui.swing.VCIOptionPane;
import com.vci.client.ui.swing.components.VCIJDialog;
import com.vci.client.ui.swing.components.VCIJOptionPane;
import com.vci.client.ui.swing.components.VCIJTextArea;
import com.vci.client.ui.swing.components.VCIJTextField;
import com.vci.common.utility.ObjectUtility;
import com.vci.corba.common.VCIError;
import com.vci.corba.omd.btm.BtmItem;
import com.vci.corba.portal.data.PLUILayout;
 
public class UIContextDialog extends VCIJDialog {
 
    /**
     * 
     */
    private static final long serialVersionUID = 2894131990318528996L;
 
    private final JPanel contentPanel = new JPanel();
 
    // add by guo
    private String btname;
    private boolean isSave;
    public boolean isSave() {
        return isSave;
    }
    private JButton okButton;
    private JButton cancelButton;
    private JLabel label;
    private VCIJTextField plcode;
    private JLabel label_1;
    private VCIJTextField plname;
    private JLabel label_2;
    private JPanel panel;
    private JCheckBox plisshowtab;
    private JCheckBox plisshowform;
    private JCheckBox plisshownavigator;
    private JLabel label_3;
    private JScrollPane scrollPane;
    private VCIJTextArea pldesc;
    
    private BtmItem btmItem;
    private boolean editflag;
    private PLUILayout editPLUILayout;
    
    public UIContextDialog(BtmItem obj,boolean editFlag,PLUILayout plpagelayoutdefination) {
        super(LogonApplication.frame,true);
        this.btname = obj.name;
        this.btmItem = obj;
        this.editflag = editFlag;
        this.editPLUILayout = plpagelayoutdefination;
        setTitle((isEdit()?"编辑":"添加") + " 上下文");
        setBounds(100, 100, 450, 300);
        init();
        actionListener();
        initData();
        this.setLocationRelativeTo(null);
        this.setVisible(true);
    }
    private boolean isEdit(){
        return (this.editflag && this.editPLUILayout != null);
    }
    private void init() {
        getContentPane().setLayout(new BorderLayout());
        contentPanel.setBorder(new EmptyBorder(5, 5, 5, 5));
        getContentPane().add(contentPanel, BorderLayout.CENTER);
        GridBagLayout gbl_contentPanel = new GridBagLayout();
        gbl_contentPanel.columnWidths = new int[]{0, 0, 0, 0, 0, 0};
        gbl_contentPanel.rowHeights = new int[]{0, 0, 0, 0};
        gbl_contentPanel.columnWeights = new double[]{0.0, 0.0, 1.0, 0.0, 1.0, Double.MIN_VALUE};
        gbl_contentPanel.rowWeights = new double[]{0.0, 0.0, 1.0, Double.MIN_VALUE};
        contentPanel.setLayout(gbl_contentPanel);
        {
            label = new JLabel("上下文编码");
            GridBagConstraints gbc_label = new GridBagConstraints();
            gbc_label.insets = new Insets(0, 0, 5, 5);
            gbc_label.anchor = GridBagConstraints.EAST;
            gbc_label.gridx = 1;
            gbc_label.gridy = 0;
            contentPanel.add(label, gbc_label);
        }
        {
            plcode = new VCIJTextField(true);
            GridBagConstraints gbc_textField = new GridBagConstraints();
            gbc_textField.fill = GridBagConstraints.HORIZONTAL;
            gbc_textField.insets = new Insets(0, 0, 5, 5);
            gbc_textField.gridx = 2;
            gbc_textField.gridy = 0;
            contentPanel.add(plcode, gbc_textField);
            plcode.setColumns(10);
        }
        {
            label_1 = new JLabel("名称");
            GridBagConstraints gbc_label_1 = new GridBagConstraints();
            gbc_label_1.anchor = GridBagConstraints.EAST;
            gbc_label_1.insets = new Insets(0, 0, 5, 5);
            gbc_label_1.gridx = 3;
            gbc_label_1.gridy = 0;
            contentPanel.add(label_1, gbc_label_1);
        }
        {
            plname = new VCIJTextField(true);
            GridBagConstraints gbc_textField_1 = new GridBagConstraints();
            gbc_textField_1.insets = new Insets(0, 0, 5, 0);
            gbc_textField_1.fill = GridBagConstraints.HORIZONTAL;
            gbc_textField_1.gridx = 4;
            gbc_textField_1.gridy = 0;
            contentPanel.add(plname, gbc_textField_1);
            plname.setColumns(10);
        }
        {
            label_2 = new JLabel("显示");
            GridBagConstraints gbc_label_2 = new GridBagConstraints();
            gbc_label_2.insets = new Insets(0, 0, 5, 5);
            gbc_label_2.gridx = 1;
            gbc_label_2.gridy = 1;
            contentPanel.add(label_2, gbc_label_2);
        }
        {
            panel = new JPanel();
            FlowLayout flowLayout = (FlowLayout) panel.getLayout();
            flowLayout.setAlignment(FlowLayout.LEFT);
            GridBagConstraints gbc_panel = new GridBagConstraints();
            gbc_panel.insets = new Insets(0, 0, 5, 0);
            gbc_panel.gridwidth = 3;
            gbc_panel.fill = GridBagConstraints.BOTH;
            gbc_panel.gridx = 2;
            gbc_panel.gridy = 1;
            contentPanel.add(panel, gbc_panel);
            {
                plisshownavigator = new JCheckBox("导航区");
                panel.add(plisshownavigator);
            }
            {
                plisshowform = new JCheckBox("控制区");
                panel.add(plisshowform);
            }
            {
                plisshowtab = new JCheckBox("操作区");
                panel.add(plisshowtab);
            }
        }
        {
            label_3 = new JLabel("描述");
            GridBagConstraints gbc_label_3 = new GridBagConstraints();
            gbc_label_3.insets = new Insets(0, 0, 0, 5);
            gbc_label_3.gridx = 1;
            gbc_label_3.gridy = 2;
            contentPanel.add(label_3, gbc_label_3);
        }
        {
            scrollPane = new JScrollPane();
            GridBagConstraints gbc_scrollPane = new GridBagConstraints();
            gbc_scrollPane.gridwidth = 3;
            gbc_scrollPane.insets = new Insets(0, 0, 0, 5);
            gbc_scrollPane.fill = GridBagConstraints.BOTH;
            gbc_scrollPane.gridx = 2;
            gbc_scrollPane.gridy = 2;
            contentPanel.add(scrollPane, gbc_scrollPane);
            {
                pldesc = new VCIJTextArea();
                pldesc.setRows(3);
                pldesc.setWrapStyleWord(true);
                pldesc.setLineWrap(true);
                scrollPane.setViewportView(pldesc);
            }
        }
        {
            JPanel buttonPane = new JPanel();
            buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
            getContentPane().add(buttonPane, BorderLayout.SOUTH);
            {
                okButton = new JButton("保存");
                buttonPane.add(okButton);
            }
            {
                cancelButton = new JButton("关闭");
                buttonPane.add(cancelButton);
            }
        }
    }
 
    private void actionListener(){
        okButton.addActionListener(new ActionListener() {
            
            @Override
            public void actionPerformed(ActionEvent arg0) {
                if(!canContinue()){
                    return;
                }
                save();
            }
            private boolean canContinue(){
                String code = plcode.getText().trim();
                String name = plname.getText().trim();
                if("".equals(code)){
                    plname.requestFocus();
                    VCIJOptionPane.showMessage(UIContextDialog.this, label.getText() + " 不能为空!");
                    return false;
                }
                if("".equals(name)){
                    plcode.requestFocus();
                    VCIJOptionPane.showMessage(UIContextDialog.this, label_1.getText() + " 不能为空!");
                    return false;
                }
                if(!plisshownavigator.isSelected() && !plisshowform.isSelected() && !plisshowtab.isSelected()){
                    VCIJOptionPane.showMessage(UIContextDialog.this, "上下文至少要包含一个区域!");
                    return false;
                }
                return true;
            }
 
            private boolean nameOrCodeIsExist(String name, String code, boolean isEdit) throws VCIError{
                boolean res = false;
                PLUILayout[] plpagelayoutdefinations = UITools.getService().getPLUILayoutsByRelatedType(btname);
                int length = plpagelayoutdefinations.length;
                for (int i =0;i<length;i++){
                    String codes = plpagelayoutdefinations[i].plCode;
                    String names = plpagelayoutdefinations[i].plName;
                    String ids = plpagelayoutdefinations[i].plOId;
                    if(isEdit){
                        if(!ids.equals(editPLUILayout.plOId)){
                            if (code.equalsIgnoreCase(codes) || name.equals(names)){
                                res = true;
                                break;
                            }
                        }
                    }
                    else {
                        if (code.equalsIgnoreCase(codes) || name.equals(names)){
                            res = true;
                            break;
                        } 
                    }
                }
                return res;
            }
            
            private void save() {
                DialogResult res = DialogResult.CANCEL;
                try {
                    String code = plcode.getText().trim();
                    String name = plname.getText().trim();
                    boolean isEdit = isEdit();
                    boolean isExist = nameOrCodeIsExist(name, code, isEdit);
                    if (isExist == true){
                        VCIOptionPane.showMessageDialog(null, "上下文编码或名称已经存在,请检查!");
                        return;
                    } 
                    
                    PLUILayout pld = new PLUILayout();
                    pld.plOId = ObjectUtility.getNewObjectID36();
                    if(isEdit){
                        pld.plOId = editPLUILayout.plOId;
                    }
                    pld.plCode = code;
                    pld.plName = name;
                    pld.plRelatedType = btmItem.name;
                    pld.plDesc = pldesc.getText();
                    if(isEdit){
                        pld.plCreateUser = editPLUILayout.plCreateUser;
                    } else {
                        pld.plCreateUser = LogonApplication.getUserEntityObject().getUserName();
                    }
                    pld.plModifyUser = LogonApplication.getUserEntityObject().getUserName();
                    
                    if(plisshowform.isSelected()){
                        pld.plIsShowForm = 1;
                    } else {
                        pld.plIsShowForm = 0;
                    }
                    if (plisshownavigator.isSelected()){
                        pld.plIsShowNavigator = 1;
                    } else {
                        pld.plIsShowNavigator = 0;
                    }
                    if (plisshowtab.isSelected()){
                        pld.plIsShowTab = 1;
                    } else {
                        pld.plIsShowTab = 0;
                    }
                    if(isEdit){
                        UITools.getService().updatePLUILayout(pld);
                    }else {
                        UITools.getService().savePLUILayout(pld);
                    }
                    isSave = true;
                    res = DialogResult.OK;
                } catch (VCIError e) {
                    e.printStackTrace();
                    isSave = false;
                    res = DialogResult.CANCEL;
                }
                close(res);
            }
        });
        
        cancelButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent arg0) {
                close(DialogResult.CANCEL);
            }
        });
    }
    
    private void close(DialogResult res){
        setDialogResult(res);
        setVisible(false);
        dispose();
    }
    
    private void initData(){
        if(editPLUILayout==null){
            return;
        }
        plcode.setText(editPLUILayout.plCode);
        plname.setText(editPLUILayout.plName);
        if(editPLUILayout.plIsShowForm==1){
            plisshowform.setSelected(true);
        }
        if(editPLUILayout.plIsShowNavigator==1){
            plisshownavigator.setSelected(true);
        }
        if(editPLUILayout.plIsShowTab==1){
            plisshowtab.setSelected(true);
        }
        pldesc.setText(editPLUILayout.plDesc);
    }
}