]> git.saurik.com Git - wxWidgets.git/blame - contrib/include/wx/ogl/bmpshape.h
Added files so sample links
[wxWidgets.git] / contrib / include / wx / ogl / bmpshape.h
CommitLineData
1fc25a89
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: bmpshape.h
3// Purpose: wxBitmapShape
4// Author: Julian Smart
5// Modified by:
6// Created: 12/07/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _OGL_BITMAP_H_
13#define _OGL_BITMAP_H_
14
ab7ce33c 15#if defined(__GNUG__) && !defined(__APPLE__)
1fc25a89
JS
16#pragma interface "bmpshape.h"
17#endif
18
19#include <wx/ogl/basic.h>
20
21class wxBitmapShape: public wxRectangleShape
22{
23 DECLARE_DYNAMIC_CLASS(wxBitmapShape)
24 public:
25 wxBitmapShape();
26 ~wxBitmapShape();
27
28 void OnDraw(wxDC& dc);
29
2b5f62a0 30#if wxUSE_PROLOGIO
1fc25a89
JS
31 // I/O
32 void WriteAttributes(wxExpr *clause);
33 void ReadAttributes(wxExpr *clause);
34#endif
35
36 // Does the copying for this object
37 void Copy(wxShape& copy);
38
39 void SetSize(double w, double h, bool recursive = TRUE);
40 inline wxBitmap& GetBitmap() const { return (wxBitmap&) m_bitmap; }
41 void SetBitmap(const wxBitmap& bm);
42 inline void SetFilename(const wxString& f) { m_filename = f; };
43 inline wxString GetFilename() const { return m_filename; }
44
45private:
46 wxBitmap m_bitmap;
47 wxString m_filename;
48};
49
50#endif
51 // _OGL_BITMAP_H_
52
53