// $Revision: 1.3 $ // Copyright (c) 1994-1995 Taligent, Inc. All Rights Reserved. #ifndef TaligentSamples_MOUSEINPUTVIEW #include "MouseInputView.h" #endif #ifndef TaligentSamples_SAMPLEWINDOWPROGRAM #include "SampleWindowProgram.h" #endif #ifndef Taligent_STANDARDTEXT #include #endif void main(int argc, char* argv[]) { TMouseInputView* parentView = new TMouseInputView(TGPoint(350, 250)); parentView->AdoptChild(new TMouseInputView(TGPoint(250, 150), TGPoint(50, 50))); parentView->AdoptChild(new TMouseInputView(TGPoint(250, 50), TGPoint(100, 100))); TSampleWindowProgram program(parentView, TStandardText(argv[0])); program.Run(); }