home *** CD-ROM | disk | FTP | other *** search
- /* =================
- * HelloPaneHello.cc
- * =================
- */
-
- #include "PedestalDebugging.h"
-
- //#include <QuickDraw.h>
- #include <Icons.h>
-
- #include "HelloPaneHello.hh"
-
- #include "PedView.hh"
-
- HelloPaneHello::HelloPaneHello(PedView &inSuperView)
- : PedPane(inSuperView)
- {
- }
-
- HelloPaneHello::~HelloPaneHello()
- {
- }
-
- void
- HelloPaneHello::Draw()
- {
- //::EraseRect(&qd.thePort->portRect);
- Rect rect;
- ::SetRect(&rect, 0, 0, 128, 128);
- //::PlotIconID(&mBounds, atAbsoluteCenter, ttNone, 128);
- ::PlotIconID(&rect, atAbsoluteCenter, ttNone, 128);
- }
-
- void
- HelloPaneHello::Resize(short inWidth, short inHeight)
- {
- //PedPane::Resize(inWidth, inHeight);
- //mSuperView.Refresh();
- }
-