mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-24 02:27:37 +00:00
28 lines
594 B
JavaScript
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;
|