/* * Copyright 2006 - 2010, Haiku, Inc. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef X_TAB_H #define X_TAB_H #include #include "LinearSpec.h" #include "Variable.h" namespace BALM { class BALMLayout; /** * Vertical grid line (x-tab). */ class XTab : public Variable, public BReferenceable { public: virtual ~XTab(); friend class BALMLayout; protected: XTab(BALMLayout* layout); private: BALMLayout* fALMLayout; }; class YTab : public Variable, public BReferenceable { public: virtual ~YTab(); friend class BALMLayout; protected: YTab(BALMLayout* layout); private: BALMLayout* fALMLayout; }; } // namespace BALM using BALM::XTab; using BALM::YTab; typedef BObjectList XTabList; typedef BObjectList YTabList; #endif // X_TAB_H