代码搜索:Graphics
找到约 10,000 项符合「Graphics」的源代码
代码结果 10,000
www.eeworm.com/read/187370/8829030
asm graphics.asm
; ***************************************************************************
; * Project : Electronic Dictionary *
; * Date : 2003.9
www.eeworm.com/read/187370/8829073
h graphics.h
; ***************************************************************************
; * Project : Electronic Dictionary *
; * Date : 2003.9
www.eeworm.com/read/285309/8851510
h graphics.h
www.eeworm.com/read/382196/9042343
lib graphics.lib
www.eeworm.com/read/382196/9042564
h graphics.h
/* graphics.h
Definitions for Graphics Package.
Copyright (c) Borland International 1987,1988
All Rights Reserved.
*/
#if __STDC__
#define _Cdecl
#else
#define _Cdecl cdecl
#endif
www.eeworm.com/read/185213/9049998
h graphics.h
// graphics.h
#ifndef GRAPHICS_H_
#define GRAPHICS_H_
#include "blassic.h"
namespace graphics {
struct Point {
int x, y;
Point (int xx, int yy) : x (xx), y (yy) { }
Point ():
www.eeworm.com/read/185213/9050212
cpp graphics.cpp
// graphics.cpp
#ifdef __BORLANDC__
#pragma warn -8027
#endif
#include "graphics.h"
#include "sysvar.h"
#include "error.h"
#include "var.h"
//#include "cursor.h"
#include "key.h"
#includ
www.eeworm.com/read/381088/9110397
h graphics.h
#pragma once
#include
class CFont;
class CGraphics
{
public:
CGraphics(HWND hWnd);
CGraphics(HDC hParentDc, int w, int h);
~CGraphics(void);
void BeginPaint();
void
www.eeworm.com/read/381088/9110444
cpp graphics.cpp
#include "StdAfx.h"
#include "graphics.h"
CGraphics::CGraphics(HWND hWnd)
{
m_hWnd = hWnd;
m_hDc = NULL;
SetOrigin(0, 0);
m_nColor = RGB(0, 0, 0);
m_nBgColor = RGB(255, 255, 255);
www.eeworm.com/read/282049/9122415
h graphics.h
/////////////////////////////////////////////////////////////////////////////////////////////
// GRAPHICS.H
//////////////////////////////////////////////////////////////////////////////////////////