VC在MFC程序中使用XML文件配置工具栏_第1页
VC在MFC程序中使用XML文件配置工具栏_第2页
VC在MFC程序中使用XML文件配置工具栏_第3页
VC在MFC程序中使用XML文件配置工具栏_第4页
VC在MFC程序中使用XML文件配置工具栏_第5页
已阅读5页,还剩5页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、vc+在mfc程序中使用xml文件配置工具栏 现在我发现使用visual studio的资源编辑器进行编辑资源有着诸多的不便:首先是任何资源的变动一般变动代码,不利于系统维护,其次visual studio的资源编辑器的本身的功能有限,也不利于界面美化,三是不利于人员分工,开发人员既要忙实现功能,又要忙准备好的界面素材。对界面实现文件配置化正是解决上面问题的好方法。这次我实现了使用xml文件配置工具栏。这里所谓配置就是工具栏的界面信息如工具栏标题、按钮图片、是否为分隔符都在xml文件保存,程序通过解析xml文件来获取工具栏信息来创建工具栏。这样一旦发现界面不合适可以随时修改配置文件,同时利于人

2、员分工。具体的做法如下:1. 在工程的输出目录下有一个sysconfig.xml,作为系统配置文件。其中关于工具栏的配置部分如下:<apptoolbar valid="1" caption="基础工具"><toolbutton file="add.bmp" /><toolbutton separator="true" /><toolbutton file="benchmark.bmp" /><toolbutton file="com

3、ment.bmp" /><toolbutton file="convert.bmp" /><toolbutton file="delete.bmp" /><toolbutton file="exit.bmp" /></apptoolbar>简单解释一下上面的节点意义:valid表示工具栏是否有效,caption表示工具栏标题,file节点为工具栏按钮所贴图片,separator表示按钮是分隔符。2. 通过解析xml文件获取工具栏信息来创建工具栏。首先在cmainframe

4、类添加两个数据成员:/* brief 工具栏对应的图像列表。*/cimagelist  m_imgtoobar;/* brief 系统配置文件解析器,具体看我上传的代码。*/cxmlparse m_syssetting;然后实现如下函数:/*!*  brief 获取exe所在的文件夹。*  param inoutstrbinpath exe程序所在的文件夹。*  return 无。*/void cmainframe:getoutputpath(string &strbinpath)tchar szmodulepath_max_path;:getm

5、odulefilename(null,szmodulepath,_max_path);strbinpath = szmodulepath;strbinpath = strbinpath.substr(0,strbinpath.rfind('')+1);/*!*  brief 解析系统配置文件,获取工具栏信息。*  param inoutmytoolbar 工具栏信息。*  return 无。*/void cmainframe:parsexml(toolbar &mytoolbar)string strbinpath;getoutputpat

6、h(strbinpath);string strxmlpath = strbinpath + string(_t("sysconfig.xml");m_syssetting.openxml(strxmlpath);m_syssetting.gettoolbarinfo(mytoolbar);/*!*  brief 根据工具栏图片信息加载工具栏图像列表。*  param inmytoolbar 工具栏信息。*  return 是否成功。true为成功,false表示失败。*/bool cmainframe:loadimagelist(toolba

7、r &mytoolbar)/ 获取按钮图片的个数int nbmpnum = mytoolbar.m_menuitemvec.size();hbitmap  hbitmap    = null;/ 打开所有位图,将其加进图像列表for(int i=0; i<nbmpnum; +i)if (mytoolbar.m_menuitemveci.m_bisseparator)continue;string strbinpath;getoutputpath(strbinpath);string strbmppath = strbinpath + str

8、ing(_t("toolbar");strbmppath = strbmppath + mytoolbar.m_menuitemveci.m_strbmpname;hbitmap = (hbitmap)loadimage(afxgetresourcehandle(),strbmppath.c_str(), image_bitmap, 0, 0, lr_defaultcolor|lr_loadfromfile);if (null=hbitmap)return false;cbitmap  bmp;bmp.attach(hbitmap);m_imgtoobar.add

9、(&bmp, rgb(0, 0, 0);bmp.deleteobject();return true;/*!*  brief 设置工具栏按钮风格。*  param inmytoolbar 工具栏信息。*  return 无。*/bool cmainframe:setstyletoolbar(toolbar &mytoolbar)ctoolbarctrl& tbc = m_wndtoolbar.gettoolbarctrl();/ 删除之前的按钮while(tbc.deletebutton(0);/ 设置当前图像列表tbc.setimagel

10、ist(&m_imgtoobar);int  i   = 0;int  nbtnnum = mytoolbar.m_menuitemvec.size();uint nbtnid = sys_command_begin;int nimgindex = 0;/ 根据按钮属性逐个添加按钮for(i=0; i<nbtnnum; +i)if (mytoolbar.m_menuitemveci.m_bisseparator)tbbutton tb = -1,0,tbstate_enabled,tbstyle_sep,0,0;tbc.addbuttons

11、(1, &tb);elsetbbutton tb = nimgindex,nbtnid,tbstate_enabled,tbstyle_button,0,0;tbc.addbuttons(1, &tb);nimgindex+;nbtnid+;return true;int cmainframe:oncreate(lpcreatestruct lpcreatestruct)if (cframewnd:oncreate(lpcreatestruct) = -1)return -1;/*if (!m_wndtoolbar.createex(this, tbstyle_flat, ws

12、_child | ws_visible | cbrs_top| cbrs_gripper | cbrs_tooltips | cbrs_flyby | cbrs_size_dynamic) |!m_wndtoolbar.loadtoolbar(idr_mainframe)*/ 解析系统配置文件,获取位图信息toolbar apptoolbar;parsexml(apptoolbar);if(!m_wndtoolbar.createex(this, tbstyle_flat, ws_child|ws_visible|cbrs_top|cbrs_gripper|cbrs_tooltips|cbrs

13、_flyby|cbrs_size_dynamic)trace0("未能创建工具栏n");return -1;      / 未能创建m_wndtoolbar.setwindowtext(apptoolbar.m_strcaption.c_str();/ 创建图像列表m_imgtoobar.create(32, 32, ilc_color32|ilc_mask, 0, 0);if(loadimagelist(apptoolbar)/ 添加工具栏按钮setstyletoolbar(apptoolbar);/ 设置工具栏按钮大小m

14、_wndtoolbar.setsizes(csize(32+7, 32+6), csize(32, 32);if (!m_wndstatusbar.create(this) |!m_wndstatusbar.setindicators(indicators,sizeof(indicators)/sizeof(uint)trace0("未能创建状态栏n");return -1;      / 未能创建/ todo: 如果不需要工具栏可停靠,则删除这三行m_wndtoolbar.enabledocking(cbrs_align_

15、any);enabledocking(cbrs_align_any);dockcontrolbar(&m_wndtoolbar);return 0;为使工具栏处于有效状态,还得添加一个简单的消息处理函数,简单如下:/*!*  brief 工具栏按钮响应事件。*  param innid 工具栏按钮id。*  return 无。*/void cmainframe:onbutton(uint nid)switch (nid)/ sys_command_begin为工具栏按钮的起始id值case sys_command_begin:afxmessagebox(_t("你单击的是第一个按钮");break;case sys_command_begin+1:afxmessagebox(_t("你单击的是第二个按钮");break;case sys_command_begin+2:afxmessagebox(_t("你单击的是第三个按钮"

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论