00001 #include "Window.h" 00002 #include "VisualComponent.h" 00003 #include "Decorator.h" 00004 #include "BorderDecorator.h" 00005 #include "ScrollDecorator.h" 00006 #include "TextView.h" 00007 00008 int main() 00009 { 00010 TextView* ptrTextView = new TextView( "HELLO" ); 00011 00012 ScrollDecorator* ptrScrollDecorator = 00013 new ScrollDecorator( 00014 ptrTextView, 00015 ScrollDecorator::INITIAL_SCROLL_POSITION 00016 ); 00017 00018 BorderDecorator* ptrBorderDecorator = 00019 new BorderDecorator( 00020 ptrScrollDecorator, 00021 BorderDecorator::DEFAULT_BORDER_WIDTH 00022 ); 00023 00024 Window* window = new Window; 00025 00026 window->SetContents( ptrBorderDecorator ); 00027 00028 window->Draw(); 00029 window->Resize(); 00030 } 00031 00032 /*Output: 00033 Window-draw: text:HELLO scroll-position:0 border-width:1 00034 00035 Window-resize: *** not implemented *** 00036 */