wxAcceleratorTable(int n, const wxAcceleratorEntry* entries);
~wxAcceleratorTable();
- bool Ok() const;
+ bool IsOk() const;
+ %pythoncode { Ok = IsOk }
};
%mutable;
-wxAcceleratorEntry *wxGetAccelFromString(const wxString& label);
+%pythoncode {
+ def GetAccelFromString(label):
+ entry = AcceleratorEntry()
+ entry.FromString(label)
+ return entry
+}
//---------------------------------------------------------------------------