public:
wxMenuEvent(WXTYPE id = 0, int id = 0);
int GetMenuId();
+ bool IsPopup();
};
//---------------------------------------------------------------------------
}
for (int i=0; i<count; i++) {
+#if wxUSE_UNICODE
+ PyList_SetItem(list, i, PyUnicode_FromUnicode(files[i], files[i].Len()));
+#else
PyList_SetItem(list, i, PyString_FromString((const char*)files[i]));
+#endif
}
return list;
}
};
+//---------------------------------------------------------------------------
+
+class wxDisplayChangedEvent : public wxEvent
+{
+public:
+ wxDisplayChangedEvent();
+};
+
+
//---------------------------------------------------------------------------
class wxPaletteChangedEvent : public wxEvent {