// Give it an icon
SetIcon(wxICON(mondrian));
+#if wxUSE_MENUS
// Make a menubar
wxMenu *file_menu = new wxMenu,
*tree_menu = new wxMenu,
SetMenuBar(menu_bar);
menu_bar->Check(TreeTest_ToggleImages, TRUE);
+#endif // wxUSE_MENUS
m_treeCtrl = new MyTreeCtrl(this, TreeTest_Ctrl,
wxDefaultPosition, wxDefaultSize,
- wxTR_HAS_BUTTONS | // wxTR_NO_LINES |
+ wxTR_MAC_BUTTONS | wxTR_NO_LINES |
wxTR_EDIT_LABELS |
#ifndef NO_VARIABLE_HEIGHT
wxTR_HAS_VARIABLE_ROW_HEIGHT |
#endif
wxSUNKEN_BORDER);
- m_treeCtrl->SetBackgroundColour(wxColour(204, 205, 79));
+// m_treeCtrl->SetBackgroundColour( *wxLIGHT_GREY );
m_textCtrl = new wxTextCtrl(this, -1, "",
wxDefaultPosition, wxDefaultSize,
title = _T("Menu for no particular item");
}
+#if wxUSE_MENUS
wxMenu menu(title);
menu.Append(TreeTest_About, _T("&About..."));
menu.Append(TreeTest_Dump, _T("&Dump"));
PopupMenu(&menu, pt);
+#endif // wxUSE_MENUS
}
void MyTreeCtrl::OnRMouseDClick(wxMouseEvent& event)