home *** CD-ROM | disk | FTP | other *** search
- #pragma once
-
- class window : public port
- {
- public:
- window( short breedte = 320, short hoogte = 200, Str255 naam = "\pa Window");
- window( short breedte, short hoogte, short xPos, short yPos, Str255 naam = "\pa Window");
- ~window();
- void show() const;
- void hide() const;
- void moveto( int x, int y) const;
-
- protected:
- WindowPtr myWindow;
- CWindowRecord myWindowRecord;
-
- private:
- void makeOne( const Rect &theRect, const Str255 naam);
- };
-