3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
73 lines
1.9 KiB
C++
73 lines
1.9 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: samples/image/canvas.h
|
|
// Purpose: sample showing operations with wxImage
|
|
// Author: Robert Roebling
|
|
// Modified by: Francesco Montorsi
|
|
// Created: 1998
|
|
// Copyright: (c) 1998-2005 Robert Roebling
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/scrolwin.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// MyCanvas
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class MyCanvas: public wxScrolledWindow
|
|
{
|
|
public:
|
|
MyCanvas( wxWindow *parent, wxWindowID, const wxPoint &pos, const wxSize &size );
|
|
~MyCanvas();
|
|
|
|
void OnPaint( wxPaintEvent &event );
|
|
void CreateAntiAliasedBitmap();
|
|
|
|
wxBitmap my_horse_png;
|
|
wxBitmap my_horse_jpeg;
|
|
wxBitmap my_horse_gif;
|
|
wxBitmap my_horse_bmp;
|
|
wxBitmap my_horse_bmp2;
|
|
wxBitmap my_horse_pcx;
|
|
wxBitmap my_horse_pnm;
|
|
wxBitmap my_horse_tiff;
|
|
wxBitmap my_horse_tga;
|
|
wxBitmap my_horse_xpm;
|
|
wxBitmap my_horse_ico32;
|
|
wxBitmap my_horse_ico16;
|
|
wxBitmap my_horse_ico;
|
|
wxBitmap my_horse_cur;
|
|
wxBitmap my_png_from_res,
|
|
my_png_from_mem;
|
|
|
|
wxBitmap my_smile_xbm;
|
|
wxBitmap my_square;
|
|
wxBitmap my_anti;
|
|
|
|
wxBitmap my_horse_asciigrey_pnm;
|
|
wxBitmap my_horse_rawgrey_pnm;
|
|
|
|
wxBitmap colorized_horse_jpeg;
|
|
wxBitmap my_cmyk_jpeg;
|
|
|
|
wxBitmap my_toucan;
|
|
wxBitmap my_toucan_flipped_horiz;
|
|
wxBitmap my_toucan_flipped_vert;
|
|
wxBitmap my_toucan_flipped_both;
|
|
wxBitmap my_toucan_grey;
|
|
wxBitmap my_toucan_head;
|
|
wxBitmap my_toucan_scaled_normal;
|
|
wxBitmap my_toucan_scaled_high;
|
|
wxBitmap my_toucan_blur;
|
|
|
|
int xH, yH;
|
|
int m_ani_images;
|
|
wxBitmap *my_horse_ani;
|
|
|
|
private:
|
|
wxBitmap m_bmpSmileXpm;
|
|
wxIcon m_iconSmileXpm;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|