#ifndef ATEXTDIALOG_HPP #define ATEXTDIALOG_HPP #include //IFrameWindow Class (Parent) #include //ICommandHandler (Parent) #include //ICheckBox Class #include "bogwin.hpp" //************************************************************************** // Class: AOptionsDialog * // * // Purpose: Dialog window for the C++ Hello World sample application. * // It is a subclass of IFrameWindow, ICommandHandler * // * //************************************************************************** class AOptionsDialog : public IFrameWindow, public ICommandHandler { public: AOptionsDialog (IWindow * ownerWnd, unsigned long rid, TBogWindow* pbwindow) ; ~AOptionsDialog(); protected: virtual Boolean command(ICommandEvent& cmdevt); //Process the dialog command events private: TBogWindow* pbwin; IEntryField* timerDuration; ICheckBox* soundCheckBox; }; #endif