]> git.saurik.com Git - wxWidgets.git/blame - src/motif/icon.cpp
Start of actual filling in of wxFrame.
[wxWidgets.git] / src / motif / icon.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: icon.cpp
3// Purpose: wxIcon class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "icon.h"
14#endif
15
16#include "wx/icon.h"
f97c9854
JS
17#include "wx/window.h"
18
338dd992
JJ
19#ifdef __VMS__
20#pragma message disable nosimpint
21#endif
f97c9854
JS
22#include <Xm/Xm.h>
23#include <X11/cursorfont.h>
338dd992
JJ
24#ifdef __VMS__
25#pragma message enable nosimpint
26#endif
f97c9854
JS
27
28#include "wx/motif/private.h"
4bb6408c 29
4bb6408c 30IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxBitmap)
4bb6408c
JS
31
32/*
2d120f83
JS
33* Icons
34*/
4bb6408c 35
f97c9854 36wxIcon::wxIcon()
4bb6408c 37{
4bb6408c
JS
38}
39
f97c9854
JS
40// Create from XBM data
41wxIcon::wxIcon(const char bits[], int width, int height)
4bb6408c 42{
f97c9854 43 (void) Create((void*) bits, wxBITMAP_TYPE_XBM_DATA, width, height, 1);
4bb6408c
JS
44}
45
f97c9854 46// Create from XPM data
a4294b78 47wxIcon::wxIcon(char **data)
4bb6408c 48{
f97c9854 49 (void) Create((void*) data, wxBITMAP_TYPE_XPM_DATA, 0, 0, 0);
4bb6408c
JS
50}
51
52wxIcon::wxIcon(const wxString& icon_file, long flags,
2d120f83
JS
53 int desiredWidth, int desiredHeight)
54
4bb6408c
JS
55{
56 LoadFile(icon_file, flags, desiredWidth, desiredHeight);
57}
58
59wxIcon::~wxIcon()
60{
61}
62
63bool wxIcon::LoadFile(const wxString& filename, long type,
2d120f83 64 int desiredWidth, int desiredHeight)
4bb6408c 65{
2d120f83
JS
66 UnRef();
67
68 m_refData = new wxBitmapRefData;
69
70 wxBitmapHandler *handler = FindHandler(type);
71
72 if ( handler )
73 return handler->LoadFile(this, filename, type, desiredWidth, desiredHeight);
74 else
75 return FALSE;
4bb6408c
JS
76}
77