IViewH1H3


Describes minimum required functionality from ViewH1H3 widget.

You can find more information in comments below. Overrided methods can be found in corresponding base interface.

/*
    -------------------------------------------
    |                                         |
    |                                         |
    |                                         |
    |                                         |
    |--V--------------------------------------|
    |          |                  |           |
    |          H1                 H2          |
    |          |                  |           |
    |          |                  |           |
    -------------------------------------------
*/
class IViewH1H3 :public virtual IViewControl, public virtual IControl
{
public:
    virtual bool isResizable() = 0;
    virtual float getSeparatorV() = 0;
    virtual float getSeparatorH1() = 0;
    virtual float getSeparatorH2() = 0;

    virtual bool setResizable(const bool value) = 0;
    virtual bool setSeparatorV(const float value) = 0;
    virtual bool setSeparatorH1(const float value) = 0;
    virtual bool setSeparatorH2(const float value) = 0;
};
Namespace: nitisa::ide
Include: Ide/Controls/IViewH1H2.h