home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / optima / samples.z / AboutBox.wxf < prev    next >
Encoding:
Text File  |  1996-08-13  |  3.1 KB  |  170 lines

  1. Save Format v1.3
  2. @begin Form "AboutBox"
  3.  Exported 0;
  4.  
  5.  @begin Object "WDialog"
  6.   WSCaption 1;
  7.   WSDlgBorder 1;
  8.   WSSysMenu 1;
  9.   WSSystemMenu 1;
  10.   WSMinimizeBox 1;
  11.   WSMaximizeBox 1;
  12.   WSGroup 1;
  13.   WSTabStop 1;
  14.   WSVisible 1;
  15.   Icon "WIcon( WResourceID( ICON_01 ) )";
  16.   FormPositionType "Centered";
  17.   FormAbsTop "161";
  18.   FormAbsLeft "68";
  19.   FDXStructName "AboutBoxFDXStruct";
  20.   Font "8.MS Sans Serif";
  21.   Text "About Animation";
  22.   @begin UserFunction "AboutBox()"
  23.    Compiler 1;
  24.    GencodeSrcLine 143;
  25.    FunctionName "AboutBox::AboutBox()";
  26.   @end;
  27.   @begin UserFunction "~AboutBox()"
  28.    Compiler 1;
  29.    GencodeSrcLine 147;
  30.    FunctionName "AboutBox::~AboutBox()";
  31.   @end;
  32.   ResID 103;
  33.   DesignName AboutBox;
  34.   TabIndex 0;
  35.   DesignRect 63,255,244,104;
  36.  @end;
  37.  
  38.  @begin Object "WLabel"
  39.   WSSCenter 1;
  40.   WSSNotify 1;
  41.   WCCSTop 1;
  42.   WSChild 1;
  43.   WSVisible 1;
  44.   Text "Animation Sample";
  45.   ResID 101;
  46.   DesignName label_1;
  47.   TabIndex 0;
  48.   DesignRect 60,10,110,8;
  49.  @end;
  50.  
  51.  @begin Object "WLabel"
  52.   WSSNotify 1;
  53.   WSChild 1;
  54.   WSVisible 1;
  55.   Text "You can use this sample to open and play animation files. Note the Stop button enabling code in the animation control's AnimationStart and AnimationStop events.";
  56.   ResID 102;
  57.   DesignName label_2;
  58.   TabIndex 1;
  59.   DesignRect 10,25,220,35;
  60.  @end;
  61.  
  62.  @begin Object "WCommandButton"
  63.   WSChild 1;
  64.   WSMaximizeBox 1;
  65.   WSTabStop 1;
  66.   WSVisible 1;
  67.   Default "1";
  68.   Pressed "0";
  69.   Text "OK";
  70.   @begin Event "Click"
  71.    GencodeSrcLine 151;
  72.    FunctionName "AboutBox::cb_1_Click";
  73.   @end;
  74.   ResID 103;
  75.   DesignName cb_1;
  76.   TabIndex 2;
  77.   DesignRect 100,65,40,14;
  78.  @end;
  79.  
  80.  @begin Object "WPictureBox"
  81.   WSSIcon 1;
  82.   WSSNotify 1;
  83.   WCCSTop 1;
  84.   WCCSNoMoveY 1;
  85.   WCCSBottom 1;
  86.   WSChild 1;
  87.   WSVisible 1;
  88.   ResID 104;
  89.   DesignName pictb_1;
  90.   TabIndex 3;
  91.   DesignRect 20,5,16,16;
  92.   @begin ComponentData "pictb_1"
  93.    Picture "WIcon( WResourceID( ICON_01 ) )";
  94.   @end;
  95.  @end;
  96.  
  97.  @begin HPPPrefixBlock
  98. @begin-code HPPPrefix
  99.  
  100. // Declarations added here will be included at the top of the .HPP file
  101.  
  102. @end-code;
  103.   GencodeSrcLine 10;
  104.  @end;
  105.  
  106.  @begin CPPPrefixBlock
  107. @begin-code CPPPrefix
  108.  
  109. // Code added here will be included at the top of the .CPP file
  110.  
  111. //  Include definitions for resources.
  112. #include "WRes.h"
  113.  
  114. @end-code;
  115.   GencodeSrcLine 10;
  116.  @end;
  117.  
  118.  @begin ClassContentsBlock
  119. @begin-code ClassContents
  120.  
  121.     public:
  122.         // add your public instance data here
  123.     private:
  124.         // add your private instance data here
  125.     protected:
  126.         // add your protected instance data here
  127.  
  128. @end-code;
  129.   GencodeSrcLine 47;
  130.  @end;
  131.  
  132. @begin-code GeneratedClassContents
  133.  
  134.         AboutBox();
  135.         ~AboutBox();
  136.  
  137. @end-code;
  138.  
  139. @begin-code Code "AboutBox::AboutBox()"
  140.  
  141. @@CLASSNAME@::@CLASSNAME@()
  142. {
  143.     
  144. }
  145.  
  146. @end-code;
  147.  
  148. @begin-code Code "AboutBox::~AboutBox()"
  149.  
  150. @@CLASSNAME@::~@CLASSNAME@()
  151. {
  152.     
  153. }
  154.  
  155. @end-code;
  156.  
  157. @begin-code Code "AboutBox::cb_1_Click"
  158.  
  159. WBool @CLASSNAME@::cb_1_Click(
  160.     WObject *           source,
  161.     WEventData *        event )
  162. {
  163.     Dismiss( TRUE );
  164.     
  165.     return FALSE;
  166. }
  167.  
  168. @end-code;
  169. @end;
  170.