00001 // $Id: frame.h,v 1.2 2005/06/06 13:17:17 rcr_muc Exp $ 00002 // this class gives us the actual window frame 00003 // 2005-04-19 rcr 00004 00005 #ifndef FRAME_H 00006 #define FRAME_H 00007 00008 #include <qframe.h> 00009 #include <qrect.h> 00010 00011 class Handler; 00012 class border; 00013 00014 class Frame : public QFrame 00015 { 00016 Q_OBJECT 00017 00018 Handler* Parent; 00019 border* Border; 00020 bool smallFrame; 00021 QRect clientGeometry; 00022 public: 00023 Frame( Handler*, border*, bool ); 00024 }; 00025 00026 #endif // FRAME_H