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