Blame | Last modification | View Log | RSS feed
//---------------------------------------------------------------------------#ifndef TestScenarioPropertiesH#define TestScenarioPropertiesH//---------------------------------------------------------------------------#include <Classes.hpp>#include <Controls.hpp>#include <StdCtrls.hpp>#include <Forms.hpp>#include "AdvPageControl.hpp"#include <ADODB.hpp>#include <ComCtrls.hpp>#include <DB.hpp>#include <Buttons.hpp>#include "AdvEdit.hpp"#include "DBAdvEd.hpp"#include <DBCtrls.hpp>#include "AdvSpin.hpp"#include "DBAdvSp.hpp"#include <Mask.hpp>#include <ActnList.hpp>//---------------------------------------------------------------------------class TTestScenarioPropertiesForm : public TForm{__published: // IDE-managed ComponentsTAdvPageControl *AdvPageControl1;TADOQuery *TestScenarioPropertiesQuery;TDataSource *TestScenarioPropertiesDataSource;TBitBtn *OK;TBitBtn *Cancel;TBitBtn *Apply;TLabel *NameLabel;TAdvTabSheet *AdvTabSheet1;TAdvTabSheet *AdvTabSheet2;TDBAdvEdit *Name;TDBMemo *Description;TLabel *DescriptionLabel;TDBAdvEdit *TestCase;TLabel *TestCaseLabel;TLabel *SequenceNumberLabel;TDBAdvEdit *SequenceNumber;TDBAdvSpinEdit *BatchSize;TDBAdvSpinEdit *RepeatCount;TLabel *BatchSizeLabel;TLabel *RepeatCountLabel;TDBAdvEdit *ProjectCode;TDBAdvEdit *Iteration;TLabel *ProjectCodeLabel;TLabel *IterationLabel;TActionList *ActionList1;void __fastcall DescriptionChange(TObject *Sender);void __fastcall BatchSizeChange(TObject *Sender);void __fastcall RepeatCountChange(TObject *Sender);void __fastcall ApplyClick(TObject *Sender);void __fastcall FormShow(TObject *Sender);void __fastcall OKClick(TObject *Sender);private: // User declarationsint m_testScenario;bool m_modified;public: // User declarations__fastcall TTestScenarioPropertiesForm(TComponent* Owner);void __fastcall ShowForm( const int & testScenario );};//---------------------------------------------------------------------------extern PACKAGE TTestScenarioPropertiesForm *TestScenarioPropertiesForm;//---------------------------------------------------------------------------#endif