home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / validate.pak / VALIDATX.CPP < prev    next >
C/C++ Source or Header  |  1997-07-23  |  5KB  |  153 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //----------------------------------------------------------------------------
  4. #include <owl\owlpch.h>
  5. #include <owl\applicat.h>
  6. #include <owl\dialog.h>
  7. #include <owl\framewin.h>
  8. #include <owl\edit.h>
  9. #include <owl\checkbox.h>
  10. #include <owl\validate.h>
  11. #include <string.h>  // for strcpy and strcat
  12. #include <stdlib.h>  // for atoi
  13. #include <ctype.h>   // for isdigit and isalpha
  14.  
  15.  
  16. #define CM_EMPINPUT 201
  17.  
  18. #define MAXNAMELEN  35
  19. #define MAXSSLEN    12
  20. #define MAXIDLEN    4
  21. #define MAXDEPTLEN  7
  22. #define MAXSECLEN   3
  23. #define MAXCUSTOMLEN   20
  24.  
  25. struct TEmployeeStruct {
  26.   char NameEdit[MAXNAMELEN];
  27.   char SSEdit[MAXSSLEN];
  28.   char IDEdit[MAXIDLEN];
  29.   char DeptEdit[MAXDEPTLEN];
  30.   char SecEdit[MAXSECLEN];
  31.   BOOL FullTime;
  32.   BOOL Perm;
  33.   BOOL Exempt;
  34.   char CustomEdit[MAXCUSTOMLEN];
  35. };
  36.  
  37. //----------------------------------------------------------------------------
  38.  
  39. class TEmployeeDlg : public TDialog {
  40.   public:
  41.     TEmployeeDlg(TWindow* parent, const char* name, TEmployeeStruct& transfer);
  42.   private:
  43.     TEdit* CustomEdit;
  44.     void CmSetCustom();
  45.  
  46.   DECLARE_RESPONSE_TABLE(TEmployeeDlg);
  47. };
  48. DEFINE_RESPONSE_TABLE1(TEmployeeDlg, TDialog)
  49.   EV_COMMAND(110, CmSetCustom),
  50. END_RESPONSE_TABLE;
  51.  
  52. TEmployeeDlg::TEmployeeDlg(TWindow* parent, const char* name, TEmployeeStruct& transfer)
  53.   : TDialog(parent, name),
  54.     TWindow(parent)
  55. {
  56.   TEdit* edit;
  57.   edit = new TEdit(this, 101, sizeof(transfer.NameEdit));
  58.   edit->SetValidator(new TFilterValidator("A-Za-z. "));
  59.   edit = new TEdit(this, 102, sizeof(transfer.SSEdit));
  60.   edit->SetValidator(new TPXPictureValidator("###-##-####"));
  61.   edit = new TEdit(this, 103, sizeof(transfer.IDEdit));
  62.   edit->SetValidator(new TRangeValidator(1, 999));
  63.   edit = new TEdit(this, 104, sizeof(transfer.DeptEdit));
  64.   edit->SetValidator(new TPXPictureValidator("Sales,Dev,Mfg"));
  65.   edit = new TEdit(this, 105, sizeof(transfer.SecEdit));
  66.   edit->SetValidator(new TPXPictureValidator("11,12,13,14,15"));
  67.   new TCheckBox(this, 106, 0);
  68.   new TCheckBox(this, 107, 0);
  69.   new TCheckBox(this, 108, 0);
  70.   CustomEdit = new TEdit(this, 111, sizeof(transfer.CustomEdit));
  71.   TValidator* v = new TPXPictureValidator("------", TRUE);
  72.   v->UnsetOption(voOnAppend);
  73.   CustomEdit->SetValidator(v);
  74.  
  75.   TransferBuffer = (void far*)&transfer;
  76. }
  77.  
  78. void TEmployeeDlg::CmSetCustom()
  79. {
  80.   char buff[40];
  81.   GetDlgItemText(109, buff, sizeof buff);
  82.   TValidator* v = new TPXPictureValidator(buff, TRUE);
  83.   v->UnsetOption(voOnAppend);
  84.   CustomEdit->SetValidator(v);
  85.   CustomEdit->SetFocus();
  86. }
  87.  
  88. //----------------------------------------------------------------------------
  89.  
  90. class TTestWindow : public TFrameWindow {
  91.   public:
  92.     TTestWindow(TWindow* parent, const char* title);
  93.     void CmEmpInput();
  94.  
  95.   private:
  96.     TEmployeeStruct EmployeeStruct;
  97.  
  98.   DECLARE_RESPONSE_TABLE(TTestWindow);
  99. };
  100.  
  101. DEFINE_RESPONSE_TABLE1(TTestWindow, TFrameWindow)
  102.   EV_COMMAND(CM_EMPINPUT, CmEmpInput),
  103. END_RESPONSE_TABLE;
  104.  
  105.  
  106. TTestWindow::TTestWindow(TWindow* parent, const char* title)
  107.   : TFrameWindow(parent, title),
  108.     TWindow(parent, title)
  109. {
  110.   AssignMenu(200);
  111.   memset(&EmployeeStruct, 0, sizeof EmployeeStruct);
  112. }
  113.  
  114. void
  115. TTestWindow::CmEmpInput()
  116. {
  117.   char empInfo[sizeof(TEmployeeStruct)+5+1];
  118.  
  119.   if (TEmployeeDlg(this,"EMPLOYEEINFO", EmployeeStruct).Execute() == IDOK) {
  120.     strcpy(empInfo, EmployeeStruct.NameEdit);
  121.     strcat(empInfo, "\n");
  122.     strcat(empInfo, EmployeeStruct.SSEdit);
  123.     strcat(empInfo, "\n");
  124.     strcat(empInfo, EmployeeStruct.IDEdit);
  125.     strcat(empInfo, "\n");
  126.     strcat(empInfo, EmployeeStruct.DeptEdit);
  127.     strcat(empInfo, "\n");
  128.     strcat(empInfo, EmployeeStruct.SecEdit);
  129.     strcat(empInfo, "\n");
  130.     strcat(empInfo, EmployeeStruct.FullTime ? "FullTime " : "PartTime ");
  131.     strcat(empInfo, EmployeeStruct.Perm ? "Permanent " : "Temporary ");
  132.     strcat(empInfo, EmployeeStruct.Exempt ? "Exempt " : "NonExempt ");
  133.     MessageBox(empInfo, "Information Stored", MB_OK);
  134.   }
  135. }
  136.  
  137. //----------------------------------------------------------------------------
  138.  
  139. class TValidateApp : public TApplication {
  140.   public:
  141.     TValidateApp() : TApplication("ValidateApp") {}
  142.     void InitMainWindow() {
  143.       EnableCtl3d();
  144.       MainWindow = new TTestWindow(0, "Validate Dialog Input");
  145.     }
  146. };
  147.  
  148. int
  149. OwlMain(int /*argc*/, char* /*argv*/ [])
  150. {
  151.   return TValidateApp().Run();
  152. }
  153.