home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////
- //
- // Source file for FaceDerived
- //
- // This file generated by BuilderXcessory.
- /////////////////////////////////////////////////////////////
-
- #include "FaceDerived.h"
- #include <Vk/VkFormat.h> // Typed line
-
- FaceDerived::FaceDerived(const char *name, Widget parent) :
- Face(name, parent)
- {
- _count = 0; // Typed line
- }
-
-
- FaceDerived::~FaceDerived()
- {
- // Empty
- }
-
-
- const char * FaceDerived::className() // classname
- {
- return ("FaceDerived");
- }
-
-
- // Typed lines
-
- void FaceDerived::updateTimeCallback(VkCallbackObject *,
- void *,
- void *)
- {
- _count++; // Typed line
-
- const char *str = VkFormat("%d", _count); // Typed line
-
- XtVaSetValues(_text, // Typed line
- XtVaTypedArg, XmNlabelString,
- XmRString, str, strlen(str)+1,
- NULL);
-
- }
-
-