资源简介
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动画
相关资源
- E4A无障碍跨程序操作类库(带源码、
- 设备管理系统源码
- 安卓wifi直连app源码
- 我的世界源码(易语言版)
- labview编程软件滤波器以及编写程序设
- 我的界面(visual foxpro)源码
- 易语言:一键cf基址源码
- The Secret Path 3D 3D魔方迷宫[源码][scra
- scratch垃圾分类源码(最终版本).sb
- 安卓QQ6.71协议源码易语言,qq协议源码
- 编译原理实验工具及参考源码(lex&
- E盾偷后台工具源码
- UNIX/LINUX编程实践教程的源码
- 十以内加减法练习 powerbuilder源码
- Windows异步套接字网络编程
- 农场开发项目
- VC 获得文件属性 获取文件的创建时
- OCR源码
- 基于MVC模式的会员管理系统
- PLC上位机编程软件
- 用foobar2000听google音乐[更新一下]
- silicon lab公司的收音IC SI47XX全套开发工
- 学生信息管理系统源码
- 读者写者问题(读者优先,写者优先
- MFC程序-碰撞的小球
- vc 柱形图 CBarChart
- 用vc 写的导线测量,针对刚学测绘的
- 用VC 编写的仿QQ聊天室程序源代码
- 毕业论文之温度传感器DS18B20(源码
- 可自定义导航网站源码
评论
共有 条评论