BLayout implementation (BALMLayout) using the Auckland Layout Model (ALM). The original ALM was implemented by Christof Lutteroth, the Haiku/C++ version by James Kim. The code needs some review, but the test programs seem to work fine. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23889 a95241bf-73f2-0310-859d-f6bbb57e9c96
39 lines
557 B
C++
39 lines
557 B
C++
#ifndef X_TAB_H
|
|
#define X_TAB_H
|
|
|
|
#include "Variable.h"
|
|
|
|
|
|
namespace BALM {
|
|
|
|
class BALMLayout;
|
|
|
|
/**
|
|
* Vertical grid line (x-tab).
|
|
*/
|
|
class XTab : public Variable {
|
|
|
|
protected:
|
|
XTab(BALMLayout* ls);
|
|
|
|
protected:
|
|
/**
|
|
* Property signifying if there is a constraint which relates
|
|
* this tab to a different tab that is further to the left.
|
|
* Only used for reverse engineering.
|
|
*/
|
|
bool fLeftLink;
|
|
|
|
public:
|
|
friend class Area;
|
|
friend class Column;
|
|
friend class BALMLayout;
|
|
|
|
};
|
|
|
|
} // namespace BALM
|
|
|
|
using BALM::XTab;
|
|
|
|
#endif // X_TAB_H
|