Describes form listener which can be used to get notifications on certain form actions and work with form in more similar to dialog boxes way.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IFormListener
{
public:
virtual void OnClose(IForm *sender) = 0; // Called when form has just been closed
virtual void OnRestore(IForm *sender) = 0; // Called when form has just been restored
virtual void OnMinimize(IForm *sender) = 0; // Called when form has just been minimized
virtual void OnMaximize(IForm *sender) = 0; // Called when form has just been maximized
};
Namespace: | nitisa |
Include: | Nitisa/Interfaces/IFormListener.h |