- 浏览: 147545 次
- 性别:
文章分类
最新评论
-
yjp:
效果丢失了,也好不了多少
SWT中使用JFreeChart(无需SWT_AWT) -
vfbrhvfbgd:
LZ,您好,
在网上找到了很多类似你这样的代码,请问您这 ...
一个使用SWT Ribbon代替Eclipse-RCP上面Coolbar的例子~ -
sdyjmc:
我也在看,发现Search不起作用。msn:sdyjmc@16 ...
读jlibrary代码的部分疑问,希望有人解答~ -
alaham:
jlibray研究得如何了呢?权限问题解决了吗?
我目前也正 ...
读jlibrary代码的部分疑问,希望有人解答~ -
bbiao:
你把代码抄错了,范型是不可以这么定义的....
这种模式我也 ...
从Hibernate范型DAO设计打造的自用DAO
打造仿淘宝注册的Text(二)
上次贴了几张图片出来显摆,这次彻底公布代码~大家看看原理就好,有兴趣的朋友可以和我联系,把SWT里面的控件都封装一下,做一套验证框架出来~
大家可以看到整个类中没有布局的出现,其实真的是“无布局才是最好的布局!”,没有布局反倒更加的灵活了,方便谈不上,但是灵活性大大提高;
Demo下载
1package com.glnpu.dmp.controls;
2
3import org.eclipse.swt.SWT;
4import org.eclipse.swt.events.ControlEvent;
5import org.eclipse.swt.events.ControlListener;
6import org.eclipse.swt.events.ModifyEvent;
7import org.eclipse.swt.events.ModifyListener;
8import org.eclipse.swt.events.PaintEvent;
9import org.eclipse.swt.events.PaintListener;
10import org.eclipse.swt.graphics.GC;
11import org.eclipse.swt.graphics.Image;
12import org.eclipse.swt.widgets.Composite;
13import org.eclipse.swt.widgets.Display;
14import org.eclipse.swt.widgets.Text;
15
16public class SuperText extends Composite implements PaintListener, ControlListener{
17
18 private Text text;
19
20 private Image tempCorner;
21
22 private Image tempMsg;
23
24 private Image warning_corner;
25
26 private Image ok_corner;
27
28 private Image error_corner;
29
30 private Image msg_warning;
31
32 private Image msg_ok;
33
34 private Image msg_error;
35
36 /** *//**
37 * Create the composite
38 * @param parent
39 * @param style
40 */
41 public SuperText(Composite parent, int style) {
42 super(parent, SWT.NONE);
43 initResource();
44 initControls(style);
45 this.addPaintListener(this);
46 this.addControlListener(this);
47 }
48
49 private void initResource() {
50 warning_corner = new Image(Display.getDefault(), "icons/input_warning_corner.gif");
51 ok_corner = new Image(Display.getDefault(), "icons/input_ok_corner.gif");
52 error_corner = new Image(Display.getDefault(), "icons/input_error_corner.gif");
53
54 msg_warning = new Image(Display.getDefault(), "icons/standard_msg_warning.gif");
55 msg_ok = new Image(Display.getDefault(), "icons/standard_msg_ok.gif");
56 msg_error = new Image(Display.getDefault(), "icons/standard_msg_error.gif");
57
58 tempCorner = warning_corner;
59 tempMsg = msg_warning;
60 }
61
62 private void initControls(int style) {
63 text = new Text(this, SWT.FLAT|style);
64 text.addModifyListener(new ModifyListener(){
65 public void modifyText(ModifyEvent e) {
66 if(SuperText.this.text.getText()!=null && !SuperText.this.text.getText().equals("")) {
67 if(SuperText.this.text.getText().length()>10) {
68 tempMsg = msg_ok;
69 tempCorner = ok_corner;
70 SuperText.this.redraw();
71 }else {
72 tempCorner = error_corner;
73 tempMsg = msg_error;
74 SuperText.this.redraw();
75 }
76
77 }else {
78 System.out.println("do here");
79 tempCorner = warning_corner;
80 tempMsg = msg_warning;
81 SuperText.this.redraw();
82 }
83 }
84 });
85 }
86
87 @Override
88 public void dispose() {
89 super.dispose();
90 }
91
92 @Override
93 protected void checkSubclass() {}
94
95 public void paintControl(PaintEvent e) {
96 System.out.println("paintControl");
97 GC gc = e.gc;
98 gc.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
99 gc.fillGradientRectangle(1, 1, this.getSize().x-11-tempMsg.getBounds().width, this.getSize().y-2, false);
100 gc.drawRectangle(1, 1, this.getSize().x-11-tempMsg.getBounds().width, this.getSize().y-2);
101
102 //set warning corner
103 gc.drawImage(tempCorner, this.getSize().x-11-tempMsg.getBounds().width-tempCorner.getBounds().width, this.getSize().y-2-tempCorner.getBounds().height);
104
105 //set msg warning
106 gc.drawImage(tempMsg, this.getSize().x-tempMsg.getBounds().width-5, 1);
107 gc.dispose();
108 }
109
110 public void controlMoved(ControlEvent e) {}
111
112 public void controlResized(ControlEvent e) {
113 text.setBounds(2, 2, this.getSize().x-12-tempMsg.getBounds().width-tempCorner.getBounds().width, this.getSize().y-3);
114 }
115
116}
117
实现原理其实就是绘制!所谓自定义控件其实就是两种,一种就是用C写,然后JAVA调用,用SWT封装;第二种就是绘制;第一种的做法其实并不好,会让SWT的控件失去跨平台性~一般的做法都是第二种。2
3import org.eclipse.swt.SWT;
4import org.eclipse.swt.events.ControlEvent;
5import org.eclipse.swt.events.ControlListener;
6import org.eclipse.swt.events.ModifyEvent;
7import org.eclipse.swt.events.ModifyListener;
8import org.eclipse.swt.events.PaintEvent;
9import org.eclipse.swt.events.PaintListener;
10import org.eclipse.swt.graphics.GC;
11import org.eclipse.swt.graphics.Image;
12import org.eclipse.swt.widgets.Composite;
13import org.eclipse.swt.widgets.Display;
14import org.eclipse.swt.widgets.Text;
15
16public class SuperText extends Composite implements PaintListener, ControlListener{
17
18 private Text text;
19
20 private Image tempCorner;
21
22 private Image tempMsg;
23
24 private Image warning_corner;
25
26 private Image ok_corner;
27
28 private Image error_corner;
29
30 private Image msg_warning;
31
32 private Image msg_ok;
33
34 private Image msg_error;
35
36 /** *//**
37 * Create the composite
38 * @param parent
39 * @param style
40 */
41 public SuperText(Composite parent, int style) {
42 super(parent, SWT.NONE);
43 initResource();
44 initControls(style);
45 this.addPaintListener(this);
46 this.addControlListener(this);
47 }
48
49 private void initResource() {
50 warning_corner = new Image(Display.getDefault(), "icons/input_warning_corner.gif");
51 ok_corner = new Image(Display.getDefault(), "icons/input_ok_corner.gif");
52 error_corner = new Image(Display.getDefault(), "icons/input_error_corner.gif");
53
54 msg_warning = new Image(Display.getDefault(), "icons/standard_msg_warning.gif");
55 msg_ok = new Image(Display.getDefault(), "icons/standard_msg_ok.gif");
56 msg_error = new Image(Display.getDefault(), "icons/standard_msg_error.gif");
57
58 tempCorner = warning_corner;
59 tempMsg = msg_warning;
60 }
61
62 private void initControls(int style) {
63 text = new Text(this, SWT.FLAT|style);
64 text.addModifyListener(new ModifyListener(){
65 public void modifyText(ModifyEvent e) {
66 if(SuperText.this.text.getText()!=null && !SuperText.this.text.getText().equals("")) {
67 if(SuperText.this.text.getText().length()>10) {
68 tempMsg = msg_ok;
69 tempCorner = ok_corner;
70 SuperText.this.redraw();
71 }else {
72 tempCorner = error_corner;
73 tempMsg = msg_error;
74 SuperText.this.redraw();
75 }
76
77 }else {
78 System.out.println("do here");
79 tempCorner = warning_corner;
80 tempMsg = msg_warning;
81 SuperText.this.redraw();
82 }
83 }
84 });
85 }
86
87 @Override
88 public void dispose() {
89 super.dispose();
90 }
91
92 @Override
93 protected void checkSubclass() {}
94
95 public void paintControl(PaintEvent e) {
96 System.out.println("paintControl");
97 GC gc = e.gc;
98 gc.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
99 gc.fillGradientRectangle(1, 1, this.getSize().x-11-tempMsg.getBounds().width, this.getSize().y-2, false);
100 gc.drawRectangle(1, 1, this.getSize().x-11-tempMsg.getBounds().width, this.getSize().y-2);
101
102 //set warning corner
103 gc.drawImage(tempCorner, this.getSize().x-11-tempMsg.getBounds().width-tempCorner.getBounds().width, this.getSize().y-2-tempCorner.getBounds().height);
104
105 //set msg warning
106 gc.drawImage(tempMsg, this.getSize().x-tempMsg.getBounds().width-5, 1);
107 gc.dispose();
108 }
109
110 public void controlMoved(ControlEvent e) {}
111
112 public void controlResized(ControlEvent e) {
113 text.setBounds(2, 2, this.getSize().x-12-tempMsg.getBounds().width-tempCorner.getBounds().width, this.getSize().y-3);
114 }
115
116}
117
大家可以看到整个类中没有布局的出现,其实真的是“无布局才是最好的布局!”,没有布局反倒更加的灵活了,方便谈不上,但是灵活性大大提高;
Demo下载
发表评论
-
来自网络上的经典文章收藏帖(不断增加中... ...)
2007-05-15 09:14 1024教你如何使用JFace创建Wizards Creating J ... -
RCP程序怎样实现自适应分辩率最大化(增加版)
2007-05-15 14:02 1300交口称赞在BLOG中提到了一种让RCP最大化的方法: 在App ... -
如何在ViewPart上添加ViewToolBar
2007-05-15 17:58 3781ViewToolBar其实就是Actions。在ViewPar ... -
郁闷的Perspective
2007-05-15 18:11 939下午正式开始RCP开发,于是乎轻车熟路的开始打基础框架。 ... -
读jlibrary代码的部分疑问,希望有人解答~
2007-05-18 10:30 1324昨天在Bolg中贴出来一个很不错的RCP项目http://jl ... -
简单应用Maven2
2007-05-18 13:54 864Maven2对项目的管理确实可以说是无微不至的,而且给出了大量 ... -
介绍一个好站
2007-05-20 10:42 783http://www.krugle.com/代码搜索工具,使用 ... -
Eclipse3.3m7 VS Eclipse3.2.2
2007-05-22 08:37 1084Eclipse3.3m7 VS Eclipse3.2.2没有深 ... -
西安java用户群成立~_~
2007-05-23 15:58 788西安java用户群,感谢dudu,为我们开通团队,所有西安ja ... -
RCP的异常
2007-05-25 12:53 877上次的一篇文章问到为什么TreeViewer没有刷新, ... -
正在规划一个Eclipse上看RSS的Plugin
2007-06-04 08:50 945目前正在规划阶段,初步想法是,实现一个周博通的EclipseP ... -
初识DB4O
2007-06-10 11:15 748DB4O? 新出的OODBMS~取谐音DB fo ... -
如何用WebStart部署RCP应用程序?
2007-06-11 17:19 881上传一份同事写的预研文档:WebStartToRCP.doc ... -
RCP开发者的好去处之ICON系列(持续更新中... ...)
2007-06-11 20:49 874为了找个合适的图片是不是头大的不像样子了?OK,我现在 ... -
庆祝一下~RCP开发者的福音到了!
2007-06-14 22:04 827今天在Eclipse站上学习如何使用Maven2管理Eclip ... -
再次理解Eclipse的类加载机制
2007-06-18 15:13 1069今天在写RCP的基础运行插件的时候,发现一个非常有意思的问题: ... -
插件开发依赖其他插件时一定要注意!
2007-06-19 14:18 2208插件开发依赖其他插件时,我们要在plugin.xml的depe ... -
RCP实践之软件架构
2007-06-19 21:22 681RCP还是新兴的东西,大家都是用它做做小东东,所以在网 ... -
RCP实践之第三方JAR包
2007-06-20 21:43 3190感谢大家对上一篇文章的拍砖,引起的反响不小,目的达到了 ... -
RCP实践之安全模型
2007-06-21 21:52 1062感谢大家最近对本 ...
相关推荐
仿淘宝-仿淘宝平台-仿淘宝平台源码-仿淘宝平台java代码-仿淘宝平台设计与实现-基于springboot的仿淘宝平台-基于Web的仿淘宝平台设计与实现-仿淘宝网站-仿淘宝网站源码-仿淘宝网站java代码-仿淘宝项目-仿淘宝项目代码...
pc端仿淘宝-pc端仿淘宝系统-pc端仿淘宝系统源码-pc端仿淘宝管理系统-pc端仿淘宝管理系统java代码-pc端仿淘宝系统设计与实现-基于springboot的pc端仿淘宝系统-基于Web的pc端仿淘宝系统设计与实现-pc端仿淘宝网站-pc端...
pc端仿淘宝-pc端仿淘宝系统-pc端仿淘宝系统源码-pc端仿淘宝管理系统-pc端仿淘宝管理系统java代码-pc端仿淘宝系统设计与实现-基于springboot的pc端仿淘宝系统-基于Web的pc端仿淘宝系统设计与实现-pc端仿淘宝网站-pc端...
在仿淘宝网的模板中,我们可能会看到如何通过CSS实现响应式设计,确保网页在不同设备上都有良好的显示效果。例如,使用媒体查询(media queries)根据屏幕尺寸调整布局,以及浮动(float)、定位(positioning)和...
ecshop仿淘宝加入购物车 请有实力的朋友能做出更好的插件,谢谢。
pc端仿淘宝系统代码 javapc端仿淘宝系统代码 基于springboot的pc端仿淘宝系统代码 1、pc端仿淘宝系统的技术栈、环境、工具、软件: ① 系统环境:Windows/Mac ② 开发语言:Java ③ 框架:SpringBoot ④ 架构:B/S、...
【仿淘宝网源代码】是一个基于Java Web技术的项目,主要使用了JSP(JavaServer Pages)语言来构建一个类似于淘宝网的在线购物平台。该项目的实现采用了MVC(Model-View-Controller)架构,这是一种广泛应用在Web开发...
pc端仿淘宝系统-pc端仿淘宝系统系统-pc端仿淘宝系统系统源码-pc端仿淘宝系统管理系统-pc端仿淘宝系统管理系统java代码-pc端仿淘宝系统系统设计与实现-基于springboot的pc端仿淘宝系统系统-基于Web的pc端仿淘宝系统...
仿淘宝登录验证码,可用于登录验证使用 ,使用简单
pc端仿淘宝系统-pc端仿淘宝系统系统-pc端仿淘宝系统系统源码-pc端仿淘宝系统管理系统-pc端仿淘宝系统管理系统java代码-pc端仿淘宝系统系统设计与实现-基于springboot的pc端仿淘宝系统系统-基于Web的pc端仿淘宝系统...
此项目是仿淘宝做的一个Demo应用,只作为技术学习使用,不做任何商业用途,请勿使用此项目进行任何形式的商业活动。 下面是本项目中主要实现的功能: 1:商品的基本展示 2:二维码扫描 3:刮刮乐功能 4:购物车...
【Vue+Element仿淘宝项目详解】 Vue.js是一个轻量级的前端JavaScript框架,以其易用性、灵活性和组件化的特点深受开发者喜爱。Element UI则是一个基于Vue.js的UI组件库,提供了一系列美观、实用的组件,如表格、...
android 仿淘宝的加载刷新效果
在仿淘宝模板中,CSS可能已经预先设置了色彩方案、字体样式、按钮效果、悬浮菜单等元素,以复制淘宝的视觉风格。 再者,为了实现动态交互和功能,如商品滚动、筛选、添加到购物车等,模板可能还包含了JavaScript或...
在网页设计中,仿淘宝放大镜效果是一种常见的用户体验优化技术,它使得用户在浏览商品图片时可以放大细节,提升购物体验。这种效果通常应用于电商网站的商品展示页面,尤其是在服装、饰品等需要查看细节的品类中。...
在IT行业中,构建一个仿淘宝商城框架是一项复杂而细致的工作,涉及到前端展示、后端服务、数据交互等多个层面。这个框架的设计目标是模仿淘宝商城的功能和用户体验,为开发者提供一个可快速开发电商应用的基础结构。...
完整不错仿淘宝功能
本项目"jquery实现的仿淘宝多选框"旨在模仿淘宝网站上的多选筛选功能,帮助用户更高效地查找和过滤商品。这个功能对于提升用户体验至关重要,尤其是在商品种类繁多的电商平台上。 首先,我们来看多选框的基本概念。...