⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 palette.h

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////// Name:        wx/mgl/palette.h// Purpose:// Author:      Vaclav Slavik// Created:     2001/03/11// Id:          $Id: palette.h,v 1.14 2006/10/30 19:26:27 VZ Exp $// Copyright:   (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)// Licence:     wxWindows licence/////////////////////////////////////////////////////////////////////////////#ifndef __WX_PALETTE_H__#define __WX_PALETTE_H__#include "wx/defs.h"#include "wx/object.h"#include "wx/gdiobj.h"#include "wx/gdicmn.h"//-----------------------------------------------------------------------------// classes//-----------------------------------------------------------------------------class WXDLLEXPORT wxPalette;struct palette_t;//-----------------------------------------------------------------------------// wxPalette//-----------------------------------------------------------------------------class WXDLLEXPORT wxPalette: public wxPaletteBase{    DECLARE_DYNAMIC_CLASS(wxPalette)public:    wxPalette();    wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);    virtual ~wxPalette();    virtual bool Ok() const { return IsOk(); }    virtual bool IsOk() const;    bool Create(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);    int GetPixel(unsigned char red, unsigned char green, unsigned char blue) const;    bool GetRGB(int pixel, unsigned char *red, unsigned char *green, unsigned char *blue) const;    // implementation    virtual int GetColoursCount() const;    palette_t *GetMGLpalette_t() const;};#endif // __WX_PALETTE_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -