You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
873 B
35 lines
873 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
#if !defined( MXBITMAPWINDOW_H ) |
|
#define MXBITMAPWINDOW_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
#include "mxBitmapTools.h" |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: |
|
//----------------------------------------------------------------------------- |
|
class mxBitmapWindow : public mxWindow |
|
{ |
|
public: |
|
mxBitmapWindow( mxWindow *parent, int x, int y, int w, int h, int style = 0, const char *bitmap = 0 ); |
|
virtual ~mxBitmapWindow ( void ); |
|
|
|
virtual void setImage( const char *bitmap ); |
|
|
|
virtual void redraw (); |
|
|
|
virtual bool Load( const char *bitmap ); |
|
private: |
|
|
|
mxbitmapdata_t m_Bitmap; |
|
|
|
}; |
|
|
|
#endif // MXBITMAPWINDOW_H
|