home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjwnd.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  787 b   |  33 lines

  1. #ifndef _DTJWND_HPP
  2. #define _DTJWND_HPP
  3.  
  4. #include "dtjcont.hpp"
  5.  
  6. extern const WChar * Tag_JFormAbsTop;
  7. extern const WChar * Tag_JFormAbsLeft;
  8. extern const WChar * Tag_JFormPositionType;
  9.  
  10. class METAEXPORTCLASSDEF DTJWindow : public DTJContainer
  11. {
  12.     public:
  13.         DTJWindow( const MetaObject * pMetaObj );
  14.         virtual ~DTJWindow();
  15.         
  16.     virtual WJavaObject* GetWJavaObject() const;
  17.  
  18.         virtual void GenCode( MMCodeGeneration mmCodeGen, WStringList & srcList ) const;
  19.  
  20.     enum JFormPositionType {
  21.         JFPT_Error       = 0,
  22.         JFPT_DesignTime  = 1,
  23.         JFPT_Absolute    = 2,
  24.     };
  25.  
  26.     virtual JFormPositionType    GetFormPositionType();
  27. };
  28.  
  29. // needed for mdreader
  30. typedef DTJWindow DTjava__dot__awt__dot__Window__dot__102;
  31.  
  32. #endif // _DTJWND_HPP
  33.