+// ----------------------------------------------------------------------------
+// see-through frame
+// ----------------------------------------------------------------------------
+
+// frame constructor
+SeeThroughFrame::SeeThroughFrame()
+ : wxFrame(NULL, wxID_ANY, "Transparency test: double click here",
+ wxPoint(100, 30), wxSize(300, 300),
+ wxDEFAULT_FRAME_STYLE | wxSTAY_ON_TOP),
+ m_currentState(STATE_SEETHROUGH)
+{
+ SetBackgroundColour(wxColour(255, 255, 255, 255));
+ SetBackgroundStyle(wxBG_STYLE_TRANSPARENT);
+}
+
+// Redraws the whole window on resize
+void SeeThroughFrame::OnSize(wxSizeEvent& WXUNUSED(evt))
+{
+ Refresh();
+}
+
+// Paints a grid of varying hue and alpha
+void SeeThroughFrame::OnPaint(wxPaintEvent& WXUNUSED(evt))
+{
+ wxPaintDC dc(this);
+ dc.SetPen(wxNullPen);
+
+ int xcount = 8;
+ int ycount = 8;
+
+ float xstep = 1. / xcount;
+ float ystep = 1. / ycount;
+
+ int width = GetClientSize().GetWidth();
+ int height = GetClientSize().GetHeight();
+
+ for ( float x = 0.; x < 1.; x += xstep )
+ {
+ for ( float y = 0.; y < 1.; y += ystep )
+ {
+ wxImage::RGBValue v = wxImage::HSVtoRGB(wxImage::HSVValue(x, 1., 1.));
+ dc.SetBrush(wxBrush(wxColour(v.red, v.green, v.blue,
+ (int)(255*(1. - y)))));
+ int x1 = (int)(x * width);
+ int y1 = (int)(y * height);
+ int x2 = (int)((x + xstep) * width);
+ int y2 = (int)((y + ystep) * height);
+ dc.DrawRectangle(x1, y1, x2 - x1, y2 - y1);
+ }
+ }
+}
+
+// Switches between colour and transparent background on doubleclick
+void SeeThroughFrame::OnDoubleClick(wxMouseEvent& WXUNUSED(evt))
+{
+ m_currentState = (State)((m_currentState + 1) % STATE_MAX);
+
+ switch ( m_currentState )
+ {
+ case STATE_OPAQUE:
+ SetBackgroundStyle(wxBG_STYLE_COLOUR);
+ SetTransparent(255);
+ SetTitle("Opaque");
+ break;
+
+ case STATE_SEETHROUGH:
+ SetBackgroundStyle(wxBG_STYLE_TRANSPARENT);
+ SetTransparent(255);
+ SetTitle("See through");
+ break;
+
+ case STATE_TRANSPARENT:
+ SetBackgroundStyle(wxBG_STYLE_COLOUR);
+ SetTransparent(128);
+ SetTitle("Semi-transparent");
+ break;
+
+ case STATE_MAX:
+ wxFAIL_MSG( "unreachable" );
+ }
+
+ Refresh();
+}
+
+BEGIN_EVENT_TABLE(SeeThroughFrame, wxFrame)
+ EVT_LEFT_DCLICK(SeeThroughFrame::OnDoubleClick)
+ EVT_PAINT(SeeThroughFrame::OnPaint)
+ EVT_SIZE(SeeThroughFrame::OnSize)
+END_EVENT_TABLE()
+