搞死我了。。
[C++] 纯文本查看 复制代码 import config;
import web.form;
/*DSG{{*/
mainForm = ..win.form( bottom=515;scroll=1;text="简易浏览器";right=671;parent=...)
mainForm.add(
button2={ ah=1;bottom=32;text="后退";left=18;top=8;aw=1;right=73;z=4;cls="button" };
edit={ ah=1;bottom=31;text="http://www.baidu.com";left=140;top=8;z=2;aw=1;right=530;edge=1;cls="edit" };
button={ ah=1;bottom=30;text="Go";left=536;top=6;aw=1;right=592;z=3;cls="button" };
static={ ah=1;notify=1;transparent=1;text="浏览区域";left=0;top=40;aw=1;bottom=511;right=672;z=1;cls="static" };
button4={ ah=1;bottom=30;text="刷新";left=599;top=6;aw=1;right=655;z=6;cls="button" };
button3={ ah=1;bottom=32;text="前进";left=80;top=8;aw=1;right=136;z=5;cls="button" }
)
/*}}*/
mainForm.button4.oncommand = function(id,event){
//mainForm.msgbox( mainForm.button4.text );
mainWb.refresh()
}
mainForm.button3.oncommand = function(id,event){
//mainForm.msgbox( mainForm.button3.text );
mainWb.goforward()
}
mainForm.button2.oncommand = function(id,event){
//mainForm.msgbox( mainForm.button2.text );
mainWb.goback()
}
mainForm.button.oncommand = function(id,event){
//mainForm.msgbox( mainForm.button.text );
mainWb.go(mainForm.edit.text)
}
//创建web窗体
mainWb = web.form( mainForm.static
,///可输入_UIFLAG_ 前缀的常量自定义外观
,//可输入_DLCTL_ 前缀的常量以控制下载行为
,//"USER AGENT"
);
//打开目标网站
mainWb.go("http://www.baidu.com")
mainForm.show(); //显示窗体
mainWb.wait("");//等待指定网址,可以使用模式匹配语法
//进入消息循环
win.loopMessage(); |