webamp/experiments/modern/src/runtime/PopupMenu.js
2019-08-05 08:11:57 -07:00

28 lines
594 B
JavaScript

import GuiObject from "./GuiObject";
import { unimplementedWarning } from "../utils";
class PopupMenu extends GuiObject {
/**
* getclassname()
*
* Returns the class name for the object.
* @ret The class name.
*/
getclassaname() {
return "PopupMenu";
}
addcommand(txt, id, checked, disabled) {
unimplementedWarning("addcommand");
}
addseparator() {
unimplementedWarning("addseparator");
}
checkcommand(id, check) {
unimplementedWarning("checkcommand");
}
popatmouse() {
unimplementedWarning("popatmouse");
}
}
export default PopupMenu;