/* * This is a simple example that illustrates push buttons with graphic * backgrounds. It uses the PanintedPushButton class, q.v. in ../paintbutton. */ #include "face.h" #include main (int argc, char** argv) { World* world = new World("Fisher's Face", argc, argv); FaceAndButtons* face = new FaceAndButtons(); face->Compose(world); world->InsertApplication(face); world->Run(); delete world; }