{
wxMessageBox(_T("This sample shows wxHtmlListBox class.\n")
_T("\n")
- _T("© 2003 Vadim Zeitlin"),
+ _T("(c) 2003 Vadim Zeitlin"),
_T("About HtmlLbox"),
wxOK | wxICON_INFORMATION,
this);
m_hlbox->SetBackgroundColour(col);
m_hlbox->Refresh();
+#if wxUSE_STATUSBAR
SetStatusText(_T("Background colour changed."));
+#endif // wxUSE_STATUSBAR
}
}
m_hlbox->SetSelectionBackground(col);
m_hlbox->Refresh();
+#if wxUSE_STATUSBAR
SetStatusText(_T("Selection background colour changed."));
+#endif // wxUSE_STATUSBAR
}
}
wxLogMessage(_T("Selected items: %s"), s.c_str());
}
+#if wxUSE_STATUSBAR
SetStatusText(wxString::Format(
_T("# items selected = %lu"),
(unsigned long)m_hlbox->GetSelectedCount()
));
+#endif // wxUSE_STATUSBAR
}
// ============================================================================