/**** * * UNDER CONSTRUCTION. This example is only a shell at present. See the other * individual examples in this directory. * * This file illustrates the use of just about all the useful interactors * available in the InterViews toolkit. Each form of interactor is created and * exercised in a function named UseXXX, where XXX is the interactor form. For * example, UseButton creates and exercises some buttons. * */ main() { /* * A world must set as the basis for an InterViews application. The world * is the root window that contains all interactors used in an interface. */ World* w = new World; /* * UseAdjuster(); UseBanner(); UseBitmap(); UseBorder(); UseBox(); UseBrush(); UseButton(); UseCanvas(); UseChiefDeputy(); // Obsolete UseColor(); UseConnection(); // Obsolete UseControl(); UseCursor(); UseDeck(); UseDeputy(); // Obsolete UseDialog(); UseEvent(); UseFileBrowser(); UseFileChooser(); UseFont(); UseFrame(); UseGlue(); UseInteractor(); UseMenu(); UseMessage(); UseObjectSpace(); UseObjectStub(); UsePainter(); UsePanner(); UsePattern(); UsePerspective(); UsePropSheet(); UseRaster(); UseResource(); UseRubband(); UseScene(); UseScroller(); UseSensor(); UseShape(); UseStrBrowser(); UseStrChooser(); UseStringEditor(); UseSubject(); UseTable(); UseTextBuffer(); UseTextDisplay(); UseTextEditor(); UseTransformer(); UseTray(); UseViewport(); * */ }