IViewH2H2


Describes minimum required functionality from ViewH2H2 widget.

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

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