mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
46 lines
784 B
TypeScript
46 lines
784 B
TypeScript
import GuiObject from "./GuiObject";
|
|
import { unimplementedWarning } from "../utils";
|
|
|
|
class ComponentBucket extends GuiObject {
|
|
/**
|
|
* getClassName()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "ComponentBucket";
|
|
}
|
|
|
|
getmaxheight() {
|
|
unimplementedWarning("getmaxheight");
|
|
return;
|
|
}
|
|
|
|
getmaxwidth() {
|
|
unimplementedWarning("getmaxwidth");
|
|
return;
|
|
}
|
|
|
|
setscroll(x) {
|
|
unimplementedWarning("setscroll");
|
|
return;
|
|
}
|
|
|
|
getscroll() {
|
|
unimplementedWarning("getscroll");
|
|
return;
|
|
}
|
|
|
|
getnumchildren() {
|
|
unimplementedWarning("getnumchildren");
|
|
return;
|
|
}
|
|
|
|
enumchildren(n) {
|
|
unimplementedWarning("enumchildren");
|
|
return;
|
|
}
|
|
}
|
|
|
|
export default ComponentBucket;
|