MSGBOX.CPP
资源名称:dos_gui.zip [点击查看]
上传用户:wtrl82617
上传日期:2007-01-07
资源大小:187k
文件大小:1k
源码类别:
界面编程
开发平台:
DOS
- // 1993 (c) ALL RIGHTS RESERVED
- // AUTHOR: XuYongYong
- /* --------------------------------------------------------
- MSGBOX.CPP
- -------------------------------------------------------- */
- #include "msgbox.h"
- msgbox_class::msgbox_class(char *title,char *msg_contents,int atype )
- :dialog_class(0xAAAA,title,
- (win_living_viewport.right-win_living_viewport.left-360)/2,
- (win_living_viewport.bottom-win_living_viewport.top-160)/2,
- 360,160)
- { int x,y;
- x=( bounds.right-bounds.left -textwidth (msg_contents ) ) / 2;
- if (x<0) x=0;
- // insert_control(msg_tstatic=new Tstatic (11,"",x,20,380-x,20,
- // msg_contents,ALIGN_MIDDLE) );
- insert_control(msg_tstatic=new Tstatic (11,"",LINE_WIDTH,20,
- bounds.right-bounds.left-2*LINE_WIDTH,20,msg_contents,ALIGN_MIDDLE) );
- if ( atype & MB_ERROR ) puts ("