IViewH3H1


Describes minimum required functionality from ViewH3H1 widget.

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

/*
    -------------------------------------------
    |          |                  |           |
    |          H1                 H2          |
    |          |                  |           |
    |          |                  |           |
    |--V--------------------------------------|
    |                                         |
    |                                         |
    |                                         |
    |                                         |
    -------------------------------------------
*/
class IViewH3H1 :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/IViewH3H1.h