pub trait InsertShapeBox {
// Required methods
fn insert(&mut self, index: usize, shape_box: ShapeBox, draw_type: DrawType);
fn insert_above(&mut self, shape_box: ShapeBox, draw_type: DrawType);
fn insert_under(&mut self, shape_box: ShapeBox, draw_type: DrawType);
}