资源简介
vc 源码 链接文件 捆绑 后门
vc 源码 链接文件 捆绑 后门
vc 源码 链接文件 捆绑 后门
vc 源码 链接文件 捆绑 后门
代码片段和文件信息
//CAutoFont class implementation
#include “stdafx.h“
#include “AutoFont.h“
CAutoFont::CAutoFont()
{
lf.lfHeight=-12;
lf.lfWidth=0;
lf.lfEscapement=0;
lf.lfOrientation=0;
lf.lfWeight=FW_NORMAL;
lf.lfItalic=0;
lf.lfUnderline=0;
lf.lfStrikeOut=0;
lf.lfCharSet=DEFAULT_CHARSET; //ANSI_CHARSET;
lf.lfOutPrecision=OUT_DEFAULT_PRECIS;
lf.lfClipPrecision=CLIP_DEFAULT_PRECIS;
lf.lfQuality=PROOF_QUALITY;
lf.lfPitchAndFamily=VARIABLE_PITCH | FF_ROMAN;
strcpy(lf.lfFaceName “Times New Roman“);
CreateFontIndirect(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::CAutoFont(CString facename)
{
lf.lfHeight=-12;
lf.lfWidth=0;
lf.lfEscapement=0;
lf.lfOrientation=0;
lf.lfWeight=FW_NORMAL;
lf.lfItalic=0;
lf.lfUnderline=0;
lf.lfStrikeOut=0;
lf.lfCharSet=DEFAULT_CHARSET; //ANSI_CHARSET;
lf.lfOutPrecision=OUT_DEFAULT_PRECIS;
lf.lfClipPrecision=CLIP_DEFAULT_PRECIS;
lf.lfQuality=PROOF_QUALITY;
lf.lfPitchAndFamily=VARIABLE_PITCH | FF_ROMAN;
strcpy(lf.lfFaceName (LPCTSTR)facename);
CreateFontIndirect(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::CAutoFont(LOGFONT& logfont)
{
lf=logfont;
CreateFontIndirect(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::CAutoFont(CFont font)
{
HFONT hFont=(HFONT)font;
Attach((HFONT)hFont);
GetLogFont(&lf);
fontColor=0;
hDC=NULL;
}
CAutoFont::~CAutoFont()
{
}
LONG CAutoFont::SetHeight(LONG height)
{
LONG l=lf.lfHeight;
Deleteobject();
lf.lfHeight=height;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetHeightA(LONG height)
{
LONG l=lf.lfHeight;
Deleteobject();
if (height>0)
height=0-height;
lf.lfHeight=height;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetWidth(LONG width)
{
LONG l=lf.lfWidth;
Deleteobject();
lf.lfWidth=width;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetEscapement(LONG esc)
{
LONG l=lf.lfEscapement;
Deleteobject();
lf.lfEscapement=esc;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetOrientation(LONG or)
{
LONG l=lf.lfOrientation;
Deleteobject();
lf.lfOrientation=or;
CreateFontIndirect(&lf);
return l;
}
LONG CAutoFont::SetWeight(LONG weight)
{
LONG l=lf.lfWeight;
Deleteobject();
lf.lfWeight=weight;
CreateFontIndirect(&lf);
return l;
}
BYTE CAutoFont::SetCharset(BYTE charset)
{
BYTE b=lf.lfCharSet;
Deleteobject();
lf.lfCharSet=charset;
CreateFontIndirect(&lf);
return b;
}
BYTE CAutoFont::SetOutPrecision(BYTE op)
{
BYTE b=lf.lfOutPrecision;
Deleteobject();
lf.lfOutPrecision=op;
CreateFontIndirect(&lf);
return b;
}
BYTE CAutoFont::SetClipPrecision(BYTE cp)
{
BYTE b=lf.lfClipPrecision;
Deleteobject();
lf.lfClipPrecision=cp;
CreateFontIndirect(&lf);
return b;
}
BYTE CAutoFont::SetQuality(BYTE qual)
{
BYTE b=lf.lfQuality;
Deleteobject();
lf.lfQuality=qual;
CreateFontIndirect(&lf);
return b;
}
BY
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2525 2001-12-01 16:43 BindFile.cpp
文件 1491 2001-12-01 16:41 BindFile.h
文件 7133 2001-12-18 16:23 BindFile.rc
文件 1853 2001-12-18 15:35 BindFile.clw
文件 1793 2001-12-19 09:15 ReadMe.txt
文件 999 2001-12-01 16:16 StdAfx.h
文件 210 2001-12-01 16:16 StdAfx.cpp
文件 539 2001-12-01 16:16 BindFile.dsw
目录 0 2001-12-01 16:16 RES\
文件 400 2001-12-01 16:16 RES\BindFile.rc2
文件 1078 2001-12-17 15:27 RES\BindFile.ico
文件 18270 2001-12-17 16:45 RES\ButtonsWin3000.bmp
文件 4734 2001-12-17 16:45 RES\Button1.bmp
文件 2340 1999-11-30 08:48 AutoFont.h
文件 2866 2001-02-14 00:16 MemDC.h
文件 2279 2001-07-19 22:52 StaticFilespec.cpp
文件 7542 2000-05-22 10:57 AutoFont.cpp
文件 4265 2001-07-14 19:09 WBButton.h
文件 8683 2001-12-17 16:38 WBButton.cpp
文件 1618 2001-12-17 16:38 StaticFilespec.h
文件 10786 2001-12-18 14:28 GradientProgressCtrl.cpp
文件 2357 2001-12-18 15:05 GradientProgressCtrl.h
文件 1451 2001-12-18 15:32 Resource.h
文件 3805 2001-12-18 15:32 BindFileDlg.h
文件 22615 2001-12-18 16:40 BindFileDlg.cpp
文件 4847 2001-12-18 15:20 BindFile.dsp
文件 51712 2001-12-23 20:29 BindFile.opt
- 上一篇:带有连续值属性的决策树算法
- 下一篇:彗星撞地球64K动画
相关资源
- ntfs源码可编译工程
- uniswap交易合约源码.rar
- MvCameraNode.xlsx
- uni-app前后端实战课悦读全套视频教程
- 微信小程序-树莓派照片监控有后台
- 成绩管理系统源码
- TP源码。
- 微信付费进群源码,修复支付接口免
- AR跳舞游戏源码
- 一键解析各大视频网站VIP视频源码.
- 3d立体相册源码demo
- 基于stm32、0.96寸OLED实现的贪吃蛇小游
- 小甲鱼全系列视频和源码和课件.txt
- 数据结构试验3-二叉树实验报告含源码
- 刷百度下拉词工具 V1.5.rar
- 男装Flash品牌广告源码.rar
- 全自动无风险刷百度下拉菜单工具
- 猜数字游戏 Flash源文件源码.rar
- vc OpenGL制作动态三维的雷达扫描效果
- 微信小程序版论坛社区系统源代码分
- VC 截获QQ聊天内容和登录密码.rar
- VC Agent动画小人仿OFFICE助手动画.ra
- Flash调用外部视频片段生成Flash格式动
- Delphi鼠标区域截图、抓图程序.rar
- 校园新闻微信APP客户端小程序源码.
- 微信悦跑圈跑步轨迹统计小程序源代
- 微信会议管理小程序APP源码.rar
- VC 窗体美化源码_换肤改变窗口风格
- PGP 加密、解密算法的Delphi源代码.ra
- 省钱兄微信小程序、h5版本淘宝客源码
评论
共有 条评论