home *** CD-ROM | disk | FTP | other *** search
- ///////////////////////////////////////////////////////////////////////////////
- // SAMPLE CODE
- //
- // FileName: ACDFBd4.hpp
- //
- // ClassName: ACompDocFwkMyBundle
- //
- // Description: This is the bundle class. The reason a user version of the
- // IGUIbundle class is created is to override the bundle menu handling.
- // For example in this case handling SelectAll has been
- // overridden so that the view class will be called when
- // the user selects this menu options.
- ///////////////////////////////////////////////////////////////////////////////
- #ifndef _COMPDOCFWK_BUNDLE_
- #define _COMPDOCFWK_BUNDLE_
-
- #ifdef IC_TRACE_DEVELOP
- #include <itrace.hpp>
- #else
- #define IFUNCTRACE_DEVELOP()
- #define ITRACE_DEVELOP(x)
- #endif
-
- #include <iguibndl.hpp>
-
- class ACompDocFwkMyBundle : public IGUIBundle
- {
- public:
- ACompDocFwkMyBundle();
- ~ACompDocFwkMyBundle();
-
- // all that is needed is to overide is the selectall
- virtual void handleSelectAll( Boolean );
- };
-
- #endif
-