home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / winfe / TestcaseDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.8 KB  |  62 lines

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18. // TabStopDlg.h : header file
  19. //
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CWhiteBoxDlg dialog
  23.  
  24. #include "tclist.h"
  25. #include "TestCaseManager.h"
  26.  
  27. class CWhiteBoxDlg : public CDialog
  28. {
  29. // Construction
  30. public:
  31.     CWhiteBoxDlg(CWnd* pParent = NULL);    // standard constructor
  32.     ~CWhiteBoxDlg();
  33. // Dialog Data
  34.     //{{AFX_DATA(CWhiteBoxDlg)
  35.     enum { IDD = IDD_QA_DIALOG };
  36.     CTCList    m_list;
  37.     CButton    m_delete;
  38.     //}}AFX_DATA
  39.  
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(CWhiteBoxDlg)
  42.     protected:
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47.     CTestCaseManager m_tcManager;
  48.     void ListTestCases();
  49. protected:
  50.     // Generated message map functions
  51.     //{{AFX_MSG(CWhiteBoxDlg)
  52.     virtual BOOL OnInitDialog();
  53.     afx_msg void OnAdd();
  54.     afx_msg void OnDelete();
  55.     afx_msg void OnRun();
  56.     afx_msg void OnSelChangeList();
  57.     afx_msg void OnSave();
  58.     afx_msg void OnImport();
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.