enum ag_mpane_layout {
AG_MPANE1, /* Single view */
AG_MPANE2V, /* Dual views (left/right) */
AG_MPANE2H, /* Dual views (top/bottom) */
AG_MPANE2L1R, /* Two views left, one view right */
AG_MPANE1L2R, /* One view left, two views right */
AG_MPANE2T1B, /* Two views top, one view bottom */
AG_MPANE1T2B, /* One view top, two views bottom */
AG_MPANE3L1R, /* Three views left, one view right */
AG_MPANE1L3R, /* One view left, three views right */
AG_MPANE3T1B, /* Three views top, one view bottom */
AG_MPANE1T3B, /* One view top, three views bottom */
AG_MPANE4 /* Four views */
};
|