]>
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
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
23 MyFrame
*frame
= (MyFrame
*) NULL
;
24 wxBitmap
*g_TestBitmap
= (wxBitmap
*) NULL
;
28 bool MyApp::OnInit(void)
30 wxImage::AddHandler(new wxPNGHandler
);
32 // Create the main frame window
33 frame
= new MyFrame((wxFrame
*) NULL
, _T("wxPNGBitmap Demo"), wxPoint(0, 0), wxSize(300, 300));
36 // Give it a status line
37 frame
->CreateStatusBar(2);
38 #endif // wxUSE_STATUSBAR
41 wxMenu
*file_menu
= new wxMenu
;
42 wxMenu
*help_menu
= new wxMenu
;
44 file_menu
->Append(PNGDEMO_LOAD_FILE
, _T("&Load file"), _T("Load file"));
45 file_menu
->Append(PNGDEMO_SAVE_FILE
, _T("&Save file"), _T("Save file"));
46 file_menu
->Append(PNGDEMO_QUIT
, _T("E&xit"), _T("Quit program"));
47 help_menu
->Append(PNGDEMO_ABOUT
, _T("&About"), _T("About PNG demo"));
49 wxMenuBar
*menu_bar
= new wxMenuBar
;
51 menu_bar
->Append(file_menu
, _T("&File"));
52 menu_bar
->Append(help_menu
, _T("&Help"));
54 // Associate the menu bar with the frame
55 frame
->SetMenuBar(menu_bar
);
57 MyCanvas
*canvas
= new MyCanvas(frame
, wxPoint(0, 0), wxSize(100, 100));
59 // Give it scrollbars: the virtual canvas is 20 * 50 = 1000 pixels in each direction
60 // canvas->SetScrollbars(20, 20, 50, 50, 4, 4);
61 frame
->canvas
= canvas
;
66 frame
->SetStatusText(_T("Hello, wxWidgets"));
67 #endif // wxUSE_STATUSBAR
72 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
73 EVT_MENU(PNGDEMO_QUIT
, MyFrame::OnQuit
)
74 EVT_MENU(PNGDEMO_ABOUT
, MyFrame::OnAbout
)
75 EVT_MENU(PNGDEMO_LOAD_FILE
, MyFrame::OnLoadFile
)
76 EVT_MENU(PNGDEMO_SAVE_FILE
, MyFrame::OnSaveFile
)
79 // Define my frame constructor
80 MyFrame::MyFrame(wxFrame
*frame
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
):
81 wxFrame(frame
, wxID_ANY
, title
, pos
, size
)
83 canvas
= (MyCanvas
*) NULL
;
92 g_TestBitmap
= (wxBitmap
*) NULL
;
96 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
101 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
103 (void)wxMessageBox(_T("PNG demo\nJulian Smart (c) 1998"),
104 _T("About PNG Demo"), wxOK
);
107 void MyFrame::OnSaveFile(wxCommandEvent
& WXUNUSED(event
))
110 wxString f
= wxFileSelector( wxT("Save Image"), (const wxChar
*)NULL
,
111 (const wxChar
*)NULL
,
112 wxT("png"), wxT("PNG files (*.png)|*.png") );
114 if (f
.empty()) return;
116 wxBitmap
*backstore
= new wxBitmap( 150, 150 );
119 memDC
.SelectObject( *backstore
);
121 memDC
.SetBrush( *wxBLACK_BRUSH
);
122 memDC
.SetPen( *wxWHITE_PEN
);
123 memDC
.DrawRectangle( 0, 0, 150, 150 );
124 memDC
.SetPen( *wxBLACK_PEN
);
125 memDC
.DrawLine( 0, 0, 0, 10 );
126 memDC
.SetTextForeground( *wxWHITE
);
127 memDC
.DrawText( _T("This is a memory dc."), 10, 10 );
129 memDC
.SelectObject( wxNullBitmap
);
131 backstore
->SaveFile( f
, wxBITMAP_TYPE_PNG
, (wxPalette
*)NULL
);
134 #endif // wxUSE_FILEDLG
137 void MyFrame::OnLoadFile(wxCommandEvent
& WXUNUSED(event
))
140 // Show file selector.
141 wxString f
= wxFileSelector(wxT("Open Image"), (const wxChar
*) NULL
,
142 (const wxChar
*) NULL
, wxT("png"),
143 wxT("PNG files (*.png)|*.png"));
151 g_TestBitmap
= new wxBitmap(f
, wxBITMAP_TYPE_PNG
);
152 if (!g_TestBitmap
->Ok())
155 g_TestBitmap
= (wxBitmap
*) NULL
;
159 #endif // wxUSE_FILEDLG
162 BEGIN_EVENT_TABLE(MyCanvas
, wxScrolledWindow
)
163 EVT_PAINT(MyCanvas::OnPaint
)
166 // Define a constructor for my canvas
167 MyCanvas::MyCanvas(wxWindow
*parent
, const wxPoint
& pos
, const wxSize
& size
):
168 wxScrolledWindow(parent
, wxID_ANY
, pos
, size
)
172 // Define the repainting behaviour
173 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
))
176 dc
.SetPen(* wxRED_PEN
);
179 for ( i
= 0; i
< 500; i
+= 10)
181 dc
.DrawLine(0, i
, 800, i
);
183 if ( g_TestBitmap
&& g_TestBitmap
->Ok() )
186 if ( g_TestBitmap
->GetPalette() )
188 memDC
.SetPalette(* g_TestBitmap
->GetPalette());
189 dc
.SetPalette(* g_TestBitmap
->GetPalette());
191 memDC
.SelectObject(* g_TestBitmap
);
193 // Normal, non-transparent blitting
194 dc
.Blit(20, 20, g_TestBitmap
->GetWidth(), g_TestBitmap
->GetHeight(), & memDC
, 0, 0, wxCOPY
, false);
196 memDC
.SelectObject(wxNullBitmap
);
199 if ( g_TestBitmap
&& g_TestBitmap
->Ok() )
202 memDC
.SelectObject(* g_TestBitmap
);
204 // Transparent blitting if there's a mask in the bitmap
205 dc
.Blit(20 + g_TestBitmap
->GetWidth() + 20, 20, g_TestBitmap
->GetWidth(), g_TestBitmap
->GetHeight(), & memDC
,
208 memDC
.SelectObject(wxNullBitmap
);