摘要: 使用白色作为透明色Mask创建不规则region发几张图片(程序以bmp做例子,但是论坛不能传bmp)上来做个具体例子:normaldownfocusdiablemask 1 //Header File 2 3 #pragma once 4 5 6 // CRgnButton 7 8 #define WM_CXSHADE_RADIO WM_USER+0x100 9 #define ALLOC_UNIT 10010 11 class CRgnButton : public CButton12 {13 DECLARE_DYNAMIC(CRgnButton)14 15 pub... 阅读全文
posted @ 2012-08-23 17:30 Jojodru 阅读(782) 评论(1) 推荐(0) 编辑
摘要: 工作中碰到需要处理超过2GB的文件,考虑到还要跨平台封装C库函数成一个类,提供常见的一般IO操作 1 //Header File 2 #ifndef __LARGE_FILE_H 3 #define __LARGE_FILE_H 4 5 //This Marco forces all file access calls to use the 64 bit variants 6 #define FILE_OFFSET_BITS 64 7 8 #include <cstdio> 9 #include <string> 10 11 class CLargeFile { 12. 阅读全文
posted @ 2012-08-23 15:24 Jojodru 阅读(395) 评论(0) 推荐(0) 编辑