no real change; just reorganize the sample splitting it in two source files

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-01-14 17:41:21 +00:00
parent 604898dc4a
commit 09ddabf738
14 changed files with 824 additions and 714 deletions

71
samples/image/canvas.h Normal file
View File

@@ -0,0 +1,71 @@
///////////////////////////////////////////////////////////////////////////////
// Name: samples/image/canvas.h
// Purpose: sample showing operations with wxImage
// Author: Robert Roebling
// Modified by: Francesco Montorsi
// Created: 1998
// RCS-ID: $Id$
// Copyright: (c) 1998-2005 Robert Roebling
// License: 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_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()
};