class Slit; // forward reference
class BFont;
class XAtom;
+struct Strut;
enum TextJustify { LeftJustify = 1, RightJustify, CenterJustify };
int bullet, bullet_pos;
};
-struct Strut {
- unsigned int top, bottom, left, right;
-
- Strut(void): top(0), bottom(0), left(0), right(0) {}
-};
-
class BScreen : public ScreenInfo {
private:
bool root_colormap_installed, managed, geom_visible;
int _x1, _y1, _x2, _y2;
};
+struct Strut {
+ unsigned int top, bottom, left, right;
+
+ Strut(void): top(0), bottom(0), left(0), right(0) {}
+};
+
/* XXX: this needs autoconf help */
const unsigned int BSENTINEL = 65535;