| 245 | } |
| 246 | |
| 247 | void CClickWindowBitmap::OnMainWindowShow ( wxShowEvent& event ) |
| 248 | { |
| 249 | if (event.IsShown()) { |
| 250 | m_btnShowFrame->SetBitmapLabel(m_bmpButtonHideMainWindow); |
| 251 | m_btnShowFrame->SetToolTip(_("Hide main window")); |
| 252 | } |
| 253 | else { |
| 254 | m_btnShowFrame->SetBitmapLabel(m_bmpButtonShowMainWindow); |
| 255 | m_btnShowFrame->SetToolTip(_("Show main window")); |
| 256 | } |
| 257 | // Set to true to propagate events to the text mode clickwindow |
| 258 | event.Skip (true); |
| 259 | } |
| 260 |