00001 /*-------------------------------------------------------------------- 00002 * vframe.h 00003 * 00004 */ 00005 00006 #ifndef VFRAME_H 00007 #define VFRAME_H 00008 00009 #include "tcltk_calling_convention.h" 00010 #include "vwidget.h" 00011 #include "vtcl.h" 00012 00013 class vframe : public vwidget { 00014 00015 public: 00016 vframe(vwidget *par, bool expand = true ); 00017 ~vframe(void); 00018 void destroy(void); 00019 virtual int kind(void) { return WIDGET_FRAME; } 00020 00021 /* interface with tcl/tk */ 00022 static int TCLTK_CALLING_CONVENTION vframe_cmd(ClientData clientData, Tcl_Interp *interp, 00023 int argc, char *argv[]); 00024 }; 00025 00026 #endif