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

📄 colour.h

📁 很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.
💻 H
字号:
/////////////////////////////////////////////////////////////////////////////// Name:        wx/x11/colour.h// Purpose:     wxColour class// Author:      Julian Smart, Robert Roebling// Modified by:// Created:     17/09/98// RCS-ID:      $Id: colour.h,v 1.19 2006/10/08 21:56:19 VZ Exp $// Copyright:   (c) Julian Smart, Robert Roebling// Licence:     wxWindows licence/////////////////////////////////////////////////////////////////////////////#ifndef _WX_COLOUR_H_#define _WX_COLOUR_H_#include "wx/defs.h"#include "wx/object.h"#include "wx/string.h"#include "wx/gdiobj.h"#include "wx/palette.h"//-----------------------------------------------------------------------------// classes//-----------------------------------------------------------------------------class WXDLLIMPEXP_CORE wxDC;class WXDLLIMPEXP_CORE wxPaintDC;class WXDLLIMPEXP_CORE wxBitmap;class WXDLLIMPEXP_CORE wxWindow;class WXDLLIMPEXP_CORE wxColour;//-----------------------------------------------------------------------------// wxColour//-----------------------------------------------------------------------------class WXDLLEXPORT wxColour : public wxColourBase{public:    // constructors    // ------------    wxColour() {}    DEFINE_STD_WXCOLOUR_CONSTRUCTORS    virtual ~wxColour();    bool Ok() const { return IsOk(); }    bool IsOk() const { return m_refData != NULL; }    bool operator == ( const wxColour& col ) const;    bool operator != ( const wxColour& col ) const { return !(*this == col); }    unsigned char Red() const;    unsigned char Green() const;    unsigned char Blue() const;    // Implementation part    void CalcPixel( WXColormap cmap );    unsigned long GetPixel() const;    WXColor *GetColor() const;protected:    // ref counting code    virtual wxObjectRefData *CreateRefData() const;    virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const;    virtual void    InitRGBA(unsigned char r, unsigned char g, unsigned char b, unsigned char a);    virtual bool FromString(const wxChar *str);private:    DECLARE_DYNAMIC_CLASS(wxColour)};#endif// _WX_COLOUR_H_

⌨️ 快捷键说明

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