fixup! query: eliminate query.maximized tristates

This commit is contained in:
Andrew J. Hesford 2024-10-30 14:15:38 -04:00
parent ac2d1b4177
commit e1069a0bea
2 changed files with 9 additions and 8 deletions

View file

@ -53,11 +53,15 @@ enum three_state {
* Therefore when parsing rc.xml, "None" means "Invalid".
*/
enum view_axis {
VIEW_AXIS_INVALID = -1,
VIEW_AXIS_NONE = 0,
VIEW_AXIS_HORIZONTAL = (1 << 0),
VIEW_AXIS_VERTICAL = (1 << 1),
VIEW_AXIS_BOTH = (VIEW_AXIS_HORIZONTAL | VIEW_AXIS_VERTICAL),
/*
* If view_axis is treated as a bitfield, INVALID should never
* set the HORIZONTAL or VERTICAL bits.
*/
VIEW_AXIS_INVALID = (1 << 2),
};
enum view_edge {