]>
git.saurik.com Git - wxWidgets.git/blob - samples/png/pngdemo.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Demos PNG reading
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "pngdemo.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 MyFrame
*frame
= (MyFrame
*) NULL
;
28 wxBitmap
*g_TestBitmap
= (wxBitmap
*) NULL
;
36 bool MyApp::OnInit(void)
38 wxImage::AddHandler(new wxPNGHandler
);
40 // Create the main frame window
41 frame
= new MyFrame((wxFrame
*) NULL
, "wxPNGBitmap Demo", wxPoint(0, 0), wxSize(300, 300));
43 // Give it a status line
44 frame
->CreateStatusBar(2);
47 wxMenu
*file_menu
= new wxMenu
;
48 wxMenu
*help_menu
= new wxMenu
;
50 file_menu
->Append(PNGDEMO_LOAD_FILE
, "&Load file", "Load file");
51 file_menu
->Append(PNGDEMO_SAVE_FILE
, "&Save file", "Save file");
52 file_menu
->Append(PNGDEMO_QUIT
, "E&xit", "Quit program");
53 help_menu
->Append(PNGDEMO_ABOUT
, "&About", "About PNG demo");
55 wxMenuBar
*menu_bar
= new wxMenuBar
;
57 menu_bar
->Append(file_menu
, "&File");
58 menu_bar
->Append(help_menu
, "&Help");
60 // Associate the menu bar with the frame
61 frame
->SetMenuBar(menu_bar
);
63 MyCanvas
*canvas
= new MyCanvas(frame
, wxPoint(0, 0), wxSize(100, 100));
65 // Give it scrollbars: the virtual canvas is 20 * 50 = 1000 pixels in each direction
66 // canvas->SetScrollbars(20, 20, 50, 50, 4, 4);
67 frame
->canvas
= canvas
;
71 frame
->SetStatusText("Hello, wxWindows");
76 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
77 EVT_MENU(PNGDEMO_QUIT
, MyFrame::OnQuit
)
78 EVT_MENU(PNGDEMO_ABOUT
, MyFrame::OnAbout
)
79 EVT_MENU(PNGDEMO_LOAD_FILE
, MyFrame::OnLoadFile
)
80 EVT_MENU(PNGDEMO_SAVE_FILE
, MyFrame::OnSaveFile
)
83 // Define my frame constructor
84 MyFrame::MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
85 wxFrame(frame
, -1, title
, pos
, size
)
87 canvas
= (MyCanvas
*) NULL
;
90 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
95 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
97 (void)wxMessageBox("PNG demo\nJulian Smart (c) 1998",
98 "About PNG Demo", wxOK
);
101 void MyFrame::OnSaveFile(wxCommandEvent
& WXUNUSED(event
))
103 wxString f
= wxFileSelector( wxT("Save Image"), (const wxChar
*)NULL
,
104 (const wxChar
*)NULL
,
105 wxT("png"), wxT("PNG files (*.png)|*.png") );
109 wxBitmap
*backstore
= new wxBitmap( 150, 150 );
112 memDC
.SelectObject( *backstore
);
114 memDC
.SetBrush( *wxBLACK_BRUSH
);
115 memDC
.SetPen( *wxWHITE_PEN
);
116 memDC
.DrawRectangle( 0, 0, 150, 150 );
117 memDC
.SetPen( *wxBLACK_PEN
);
118 memDC
.DrawLine( 0, 0, 0, 10 );
119 memDC
.SetTextForeground( *wxWHITE
);
120 memDC
.DrawText( "This is a memory dc.", 10, 10 );
122 memDC
.SelectObject( wxNullBitmap
);
124 backstore
->SaveFile( f
, wxBITMAP_TYPE_PNG
, (wxPalette
*)NULL
);
129 void MyFrame::OnLoadFile(wxCommandEvent
& WXUNUSED(event
))
131 // Show file selector.
132 wxString f
= wxFileSelector(wxT("Open Image"), (const wxChar
*) NULL
,
133 (const wxChar
*) NULL
, wxT("png"),
134 wxT("PNG files (*.png)|*.png"));
141 g_TestBitmap
= new wxBitmap(f
, wxBITMAP_TYPE_PNG
);
142 if (!g_TestBitmap
->Ok())
145 g_TestBitmap
= (wxBitmap
*) NULL
;
151 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
152 EVT_PAINT(MyCanvas::OnPaint
)
155 // Define a constructor for my canvas
156 MyCanvas::MyCanvas(wxWindow
*parent
, const wxPoint
& pos
, const wxSize
& size
):
157 wxScrolledWindow(parent
, -1, pos
, size
)
161 MyCanvas::~MyCanvas(void)
165 // Define the repainting behaviour
166 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
))
169 dc
.SetPen(* wxRED_PEN
);
172 for ( i
= 0; i
< 500; i
+= 10)
174 dc
.DrawLine(0, i
, 800, i
);
176 if ( g_TestBitmap
&& g_TestBitmap
->Ok() )
179 if ( g_TestBitmap
->GetPalette() )
181 memDC
.SetPalette(* g_TestBitmap
->GetPalette());
182 dc
.SetPalette(* g_TestBitmap
->GetPalette());
184 memDC
.SelectObject(* g_TestBitmap
);
186 // Normal, non-transparent blitting
187 dc
.Blit(20, 20, g_TestBitmap
->GetWidth(), g_TestBitmap
->GetHeight(), & memDC
, 0, 0, wxCOPY
, FALSE
);
189 memDC
.SelectObject(wxNullBitmap
);
192 if ( g_TestBitmap
&& g_TestBitmap
->Ok() )
195 memDC
.SelectObject(* g_TestBitmap
);
197 // Transparent blitting if there's a mask in the bitmap
198 dc
.Blit(20 + g_TestBitmap
->GetWidth() + 20, 20, g_TestBitmap
->GetWidth(), g_TestBitmap
->GetHeight(), & memDC
,
201 memDC
.SelectObject(wxNullBitmap
);