/**
* 文件名:ComboBoxDialogCellEditor.java
*
* 版本信息:
* 日期:2010-7-19
* Copyright huawei Corporation 2010
* 版权所有
*
*/
package com.huawei.adt;
import java.text.MessageFormat;
import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.viewers.CellEditor;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CCombo;
import org.eclipse.swt.events.FocusAdapter;
import org.eclipse.swt.events.FocusEvent;
import org.eclipse.swt.events.FocusListener;
import org.eclipse.swt.events.KeyAdapter;
import org.eclipse.swt.events.KeyEvent;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
import org.eclipse.swt.events.TraverseEvent;
import org.eclipse.swt.events.TraverseListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Layout;
public abstract class ComboBoxDialogCellEditor extends CellEditor
{
// Combo Items
private String[] items;
private Composite editor;
private CCombo comboBox;
private Control contents;
private Button button;
private FocusListener buttonFocusListener;
private ModifyListener modifyListener;
private Object value = null;
/**
* Internal class for laying out the dialog.
*/
private class DialogCellLayout extends Layout
{
@Override
public void layout(Composite editor, boolean force)
{
Rectangle bounds = editor.getClientArea();
Point size = ComboBoxDialogCellEditor.this.button.computeSize(
SWT.DEFAULT, SWT.DEFAULT, force);
if (ComboBoxDialogCellEditor.this.contents != null)
{
ComboBoxDialogCellEditor.this.contents.setBounds(0, 0,
bounds.width - size.x, bounds.height);
}
ComboBoxDialogCellEditor.this.button.setBounds(bounds.width
- size.x, 0, size.x, bounds.height);
}
@Override
public Point computeSize(Composite editor, int wHint, int hHint,
boolean force)
{
if (wHint != SWT.DEFAULT && hHint != SWT.DEFAULT)
{
return new Point(wHint, hHint);
}
Point contentsSize = ComboBoxDialogCellEditor.this.contents
.computeSize(SWT.DEFAULT, SWT.DEFAULT, force);
Point buttonSize = ComboBoxDialogCellEditor.this.button
.computeSize(SWT.DEFAULT, SWT.DEFAULT, force);
// Just return the button width to ensure the button is not clipped
// if the label is long.
// The label will just use whatever extra width there is
Point result = new Point(buttonSize.x, Math.max(contentsSize.y,
buttonSize.y));
return result;
}
}
// Combo default style
private static final int defaultStyle = SWT.NONE;
public ComboBoxDialogCellEditor()
{
setStyle(defaultStyle);
}
public ComboBoxDialogCellEditor(Composite parent, String[] items)
{
this(parent, items, defaultStyle);
}
public ComboBoxDialogCellEditor(Composite parent, String[] items, int style)
{
super(parent, style);
setItems(items);
}
public String[] getItems()
{
return this.items;
}
public void setItems(String[] items)
{
Assert.isNotNull(items);
this.items = items;
populateComboBoxItems();
}
protected Button createButton(Composite parent)
{
Button result = new Button(parent, SWT.DOWN);
result.setText(""); //$NON-NLS-1$
return result;
}
protected Control createContents(Composite cell)
{
this.comboBox = new CCombo(cell, getStyle());
this.comboBox.setFont(cell.getFont());
populateComboBoxItems();
this.comboBox.addKeyListener(new KeyAdapter()
{
@Override
public void keyPressed(KeyEvent e)
{
keyReleaseOccured(e);
}
});
this.comboBox.addModifyListener(getModifyListener());
this.comboBox.addSelectionListener(new SelectionAdapter()
{
@Override
public void widgetDefaultSelected(SelectionEvent event)
{
applyEditorValueAndDeactivate();
}
@Override
public void widgetSelected(SelectionEvent event)
{
ComboBoxDialogCellEditor.this.value = ComboBoxDialogCellEditor.this.comboBox.getText();
}
});
this.comboBox.addTraverseListener(new TraverseListener()
{
public void keyTraversed(TraverseEvent e)
{
if (e.detail == SWT.TRAVERSE_ESCAPE
|| e.detail == SWT.TRAVERSE_RETURN)
{
e.doit = false;
}
}
});
this.comboBox.addFocusListener(new FocusAdapter()
{
@Override
public void focusLost(FocusEvent e)
{
if (!ComboBoxDialogCellEditor.this.button.isFocusControl())
{
ComboBoxDialogCellEditor.this.focusLost();
}
}
});
return this.comboBox;
}
@Override
protected Control createControl(Composite parent)
{
Font font = parent.getFont();
Color bg = parent.getBackground();
this.editor = new Composite(parent, getStyle());
this.editor.setFont(font);
this.editor.setBackground(bg);
this.editor.setLayout(new DialogCellLayout());
this.contents = createContents(this.editor);
updateContents(this.value);
this.button = createButton(this.editor);
this.button.setFont(font);
this.button.addKeyListener(new KeyAdapter()
{
@Override
public void keyReleased(KeyEvent e)
{
if (e.character == '\u001b')
{ // Escape
fireCancelEditor();
}
}
});
this.button.addFocusListener(getButtonFocusListener());
this.button.addSelectionListener(new SelectionAdapter()
{
@Override
public void widgetSelected(SelectionEvent event)
{
ComboBoxDialogCellEditor.this.button.removeFocusListener(getButtonFocusListener());
Object newValue = openDialogBox(ComboBoxDialogCellEditor.this.editor);
ComboBoxDialogCellEditor.this.button.addFocusListener(getButtonFocusListener());
if (newValue != null)
{
boolean newValidState = isCorrect(newValue);
if (newValidState)
{
markDirty();
doSetValue(newValue);
} else
{
setErrorMessage(MessageFormat.format(getErrorMessage(),
new Object[]
{ newValue.toString() }));
}
fireApplyEditorValue();
}
}
});
setValueValid(true);
return this.editor;
}
@Override
public void deactivate()
{
if (this.button != null && !this.button.isDisposed())
{
this.button.removeFocusListener(getButtonFocusListener());
}
super.deactivate();
}
@Override
protected Object doGetValue()
{
return this.value;
}
@Override
protected void doSetFocus()
{
if (this.comboBox != null)
{
this.comboBox.setFocus();
}
}
@Override
protected void doSetValue(Object value)
{
this.value = value;
updateContents(value);
}
private void populateComboBoxItems()
{
if (this.comboBox != null && this.items != null)
{
this.comboBox.removeAll();
for (int i = 0; i < this.items.length; i++)
{
this.comboBox.add(this.items[i], i);
}
this.comboBox.setText("");
}
}
void applyEditorValueAndDeactivate()
{
Object newValue = this.comboBox.getText();
if (newValue != null && !newValue.equals(this.value.toString()))
{
boolean newValidState = isCorrect(newValue);
if (newValidState)
{
markDirty();
doSetValue(newValue);
} else
{
setErrorMessage(MessageFormat.format(getErrorMessage(),
new Object[]
{ newValue.toString() }));
}
}
fireApplyEditorValue();
deactivate();
}
/*
* (non-Javadoc)
* @see org.eclipse.jface.viewers.CellEditor#focusLost()
*/
@Override
protected void focusLost()
{
if (isActivated())
{
applyEditorValueAndDeactivate();
}
}
/*
* (non-Javadoc)
* @see org.eclipse.jface.viewers.CellEditor#keyReleaseOccured(org.eclipse.swt.events.KeyEvent)
*/
@Override
protected void keyReleaseOccured(KeyEvent keyEvent)
{
if (keyEvent.character == '\r')
{ // Return key
if (this.comboBox != null && !this.comboBox.isDisposed())
{
fireCancelEditor();
}
} else if (keyEvent.character == '\t')
{ // tab key
applyEditorValueAndDeactivate();
}
}
protected void editOccured(ModifyEvent e)
{
String value = this.comboBox.getText();
if (value == null)
{
value = "";//$NON-NLS-1$
}
Object typedValue = value;
boolean oldValidState = isValueValid();
boolean newValidState = isCorrect(typedValue);
if (typedValue == null && newValidState)
{
Assert.isTrue(false,
"Validator isn't limiting the cell editor's type range");//$NON-NLS-1$
}
if (!newValidState)
{
// try to insert the current value into the error message.
setErrorMessage(MessageFormat.format(getErrorMessage(),
new Object[]
{ value }));
}
valueChanged(oldValidState, newValidState);
}
private ModifyListener getModifyListener()
{
if (this.modifyListener == null)
{
this.modifyListener = new ModifyListener()
{
public void modifyText(ModifyEvent e)
{
editOccured(e);
}
};
}
return this.modifyListener;
}
private FocusListener getButtonFocusListener()
{
if (this.buttonFocusListener == null)
{
this.buttonFocusListener = new FocusListener()
{
public void focusGained(FocusEvent e)
{
};
public void focusLost(FocusEvent e)
{
ComboBoxDialogCellEditor.this.focusLost();
}
};
}
;
return this.buttonFocusListener;
}
private void updateContents(Object value)
{
Assert.isTrue(this.comboBox != null);
if (value != null && value instanceof String)
{
this.comboBox.removeModifyListener(getModifyListener());
this.comboBox.setText((String) value);
this.comboBox.addModifyListener(getModifyListener());
}
}
protected abstract Object openDialogBox(Control cellEditorWindow);
}
http://wiki.eclipse.org/index.php/JFaceSnippets
分享到:
相关推荐
2023年全国大学生英语竞赛样题(C类)样题答案及听力原文
出纳考核表
基于多种天气因素的光伏电站太阳能辐射量预测系统——采用人工神经网络与离线优化算法,MATLAB代码:考虑多种天气条件下光伏电站太阳能辐射量预测 关键词:辐射量预测 光伏预测 多种天气因素 参考文档:《Solar Radiation Prediction and Energy Allocation for Energy Harvesting Base Stations》 仿真平台:MATLAB+CPLEX 平台 优势:代码具有一定的深度和创新性,注释清晰,非烂大街的代码,非常精品 主要内容:代码主要做的是如何利用预测光伏电站太阳能辐射量的问题,利用人工神经网络对对其内太阳辐射量进行预测,并对无云天气以及多云天气进行了分别讨论,与线性模型相比该模型具有更好的性能,除此之外,代码还研究了太阳能的分配问题,采用离线优化算法和四种在线启发式算法分别进行分配策略的优化,并利用太阳辐射数据评估了算法的性能。 该代码适合新手学习以及在此基础上进行拓展,代码质量非常高,出图效果极佳 ,核心关键词: 1. 光伏电站太阳能辐射量预测 2. 多种天气因素 3. 人工神经网络 4. 预测模型 5. 线性
数据结构实验实习指导书(c语言)
"lyh不会打代码"生存小有戏改版
站群系统/泛目录站群源码/泛站群cms系统【小说泛目录站群源码】 效果截图和演示https://www.lxsjfx.cn/3181.html 绿茶小说站群2.x-秒收隔天速出权重-小说流量稳定收割机-精品轻量级PHP站群系统站群系统,小说行业专用引流精品站群,绿茶小说站群为独立站群系统(无需依托CMS),独立的整篇小说优化内容库(拒绝句子拼凑),模板自适应PC端和移动端,流量一起做! 1、绿茶小说站群为独立站群系统(无需依托CMS) 2、对域名要求不高,百元域名均可操作 3、独立的首页、列表页、小说阅读页 4、独立的整篇小说优化内容库(拒绝句子拼凑) 5、可自定页面后缀(html、shtml、xml…..) 6、拒绝全站404跳转到内容页 7、还有强大的网站XML地图功能,便于链接提交 8、模板自适应PC端和移动端,流量一起做! 站群系统/泛目录站群源码/泛站群cms系统【小说泛目录站群源码】
IQC检验员(来料检验员)绩效考核表
2024年全球AI应用趋势年度报告
安全生产绩效考核表
04-【标准制度】公司 KPI 绩效考核流程
第14讲:深入理解指针(4)
考虑用户舒适度的冷热电多能互补综合能源系统优化调度模型:结合PMV衡量与碳排放交易机制的MATLAB仿真实现,考虑用户舒适度的冷热电多能互补综合能源系统优化调度 MATLAB代码:考虑用户舒适度的冷热电多能互补综合能源系统优化调度 关键词:用户舒适度 综合能源 PMV 优化调度 参考文档:《冷热电气多能互补的微能源网鲁棒优化调度》基础模型加舒适度部分模型; 仿真平台:MATLAB+yalmip+cplex 主要内容:代码主要做的是考虑用户舒适度的冷热电多能互补综合能源系统优化调度模型,在传统的冷热电联供型综合能源系统的基础上,进一步考虑了热惯性以及用户的舒适度,并用预测平均投票数PMV对用户的舒适度进行衡量,且通过改变PMV的数值,可以对比不同舒适度要求对于综合能源系统调度结果的影响。 同时,代码还补充性的考虑了碳排放交易机制,并设置经济性最优以及碳排放最优两种对比场景,从而丰富算例,效果非常明显。 使用matlab+yalmip+cplex进行代码的 ,考虑用户舒适度; 综合能源系统; PMV; 优化调度; 冷热电多能互补; 碳排放交易机制。,考虑用户舒适度与碳排放交易的冷热电多能
内容概要:本文详细阐述了利用ANSI转义码在Xshell脚本中进行光标的灵活操控方法。介绍了从光标的隐藏、定位(特定行/列)、保存位置、复位、清除以及显示控制的基本命令,重点描述了如何使用以上提到的功能构建实用的UI组件——文本模式下工作的进度条。文中提供的简单实例演示了一个完整的循环逻辑,它能动态刷新视图,在每一次迭代中根据程序实际进展更新屏幕上的表现形式,同时保持界面美观性和易读性。并且提到由于不同的终端可能有不同的兼容情况,脚本的跨环境行为可能存在细微差别。 适合人群:初学者至中级水平的技术爱好者或者软件开发者,尤其是希望深入掌握Linux环境下命令行工具使用者。 使用场景及目标:① 学习并理解Xshell脚本里涉及的ANSI转义码概念和技术点,从而增强对终端界面元素(如菜单、提示符等)的操作技能;② 掌握通过程序手段构造动态变化的CLI应用程序技巧,比如实时跟踪长时间任务的状态; 阅读建议:本文不仅包含了具体命令的学习,更展示了它们是如何组合起来创造复杂视觉反馈机制的案例研究。对于想进一步探索终端开发领域的程序员而言,这无疑提供了很好的入门指引材料。考虑到各种操作系统上支持度的问题,在测试代码之前应当确认自己的工作平台已经正确配置好。
内容概要:该文档详细探讨了针对达梦数据库的各种性能优化技术和处理方法。具体包括回表问题及其解决措施如覆盖索引和FAST POOL机制;变量窥探、统计数据收集优化方法,例如设置统计桶数量和采样子表数目;视图上拉、JOIN优化、EXISTS与NOT EXISTS子查询重写策略;分区裁剪和多KEY哈希等方面的深入探讨,提供了多个具体的优化技巧,旨在帮助用户有效提升SQL执行性能,并解决了多种可能导致性能下降的关键因素。 适合人群:数据库管理员、运维工程师及具有一定经验的数据开发人员等,尤其是负责使用和维护基于达梦数据库系统的技术团队成员。 使用场景及目标:适用于希望通过改善查询速度来提高系统响应时间的专业人士;需要处理大型数据库或复杂查询的任务;或是正在寻找改进现有数据库架构的方法的机构。它还特别针对那些希望确保最优硬件资源利用率的人群。 其他说明:本文档不仅介绍了理论性的背景知识和技术细节,还包括了大量的实际案例演示和参数调整建议,方便读者理解和实践这些优化方法。此外,针对每种优化策略提供了详细的指导,使得即使是对某些高级特性较为陌生的读者也能顺利掌握关键技能。
54 -营销部经理绩效考核表1
外贸部绩效考核表格
选择使用如下方法,增加系统盘自由空间。最简模式:完成2、4②,即可全面清除电脑垃圾、痕迹。 1、将“桌面”、“我的文档”以及系统盘的其它地方保存的个人文件资料,转移到别的盘保存。 2、双击桌面“计算机”,“系统磁盘”右键--属性--常规/工具:
岗位绩效考核评定表excel表格模板