pen.cpp
来自「A*算法 A*算法 A*算法 A*算法A*算法A*算法」· C++ 代码 · 共 123 行
CPP
123 行
/////////////////////////////////////////////////////////////////////////////
// Name: src/palmos/pen.cpp
// Purpose: wxPen
// Author: William Osborne - minimal working wxPalmOS port
// Modified by:
// Created: 10/13/04
// RCS-ID: $Id: pen.cpp,v 1.2 2005/01/21 21:04:03 ABX Exp $
// Copyright: (c) William Osborne
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "pen.h"
#endif
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include <stdio.h>
#include "wx/setup.h"
#include "wx/list.h"
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/pen.h"
#endif
static int wx2msPenStyle(int wx_style);
IMPLEMENT_DYNAMIC_CLASS(wxPen, wxGDIObject)
wxPenRefData::wxPenRefData()
{
}
wxPenRefData::wxPenRefData(const wxPenRefData& data)
{
}
wxPenRefData::~wxPenRefData()
{
}
// Pens
wxPen::wxPen()
{
}
wxPen::~wxPen()
{
}
// Should implement Create
wxPen::wxPen(const wxColour& col, int Width, int Style)
{
}
wxPen::wxPen(const wxBitmap& stipple, int Width)
{
}
bool wxPen::RealizeResource()
{
return false;
}
WXHANDLE wxPen::GetResourceHandle() const
{
return 0;
}
bool wxPen::FreeResource(bool WXUNUSED(force))
{
return false;
}
bool wxPen::IsFree() const
{
return false;
}
void wxPen::Unshare()
{
}
void wxPen::SetColour(const wxColour& col)
{
}
void wxPen::SetColour(unsigned char r, unsigned char g, unsigned char b)
{
}
void wxPen::SetWidth(int Width)
{
}
void wxPen::SetStyle(int Style)
{
}
void wxPen::SetStipple(const wxBitmap& Stipple)
{
}
void wxPen::SetDashes(int nb_dashes, const wxDash *Dash)
{
}
void wxPen::SetJoin(int Join)
{
}
void wxPen::SetCap(int Cap)
{
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?