Скачиваний:
25
Добавлен:
01.05.2014
Размер:
1.75 Кб
Скачать
#if !defined(__tstpfrst_h)              // Sentry, use file only if it's not already included.
#define __tstpfrst_h

/*  Project first
    
    Copyright © 1997 by US. All Rights Reserved.

    SUBSYSTEM:    first.exe Application
    FILE:         tstpfrst.h
    AUTHOR:       US


    OVERVIEW
    ========
    Class definition for TSetupFirst (TDialog).      
*/

#include <owl\owlpch.h>
#pragma hdrstop

#include <owl\dialog.h>
#include <owl\button.h>
#include <owl\edit.h>
#include <owl\combobox.h>

#include "firstapp.rh"            // Definition of all resources.
#include "ownrbttn.h"							// Definition of a drawable button

// Work
#include "w-data.h"

//{{TDialog = TSetupFirst}}

class TSetupFirst : public TDialog {
		TOwnerButton *BackButton, *NextButton, *StopButton;
    FirstSetupList &w_data;
    TComboBox *TitleEdit,
							*MethodList,
							*VKNoiseList;
    TEdit *MEdit, *FEdit, *KFEdit,
    			*QFEdit, *SigmaEdit,
          *LengthEdit;
    SetupResults result;

public:
    TSetupFirst (TWindow* parent, FirstSetupList &results, TResId resId = IDD_SETUP,
    	TModule* module = 0);
    virtual ~TSetupFirst ();

//{{TSetupFirstVIRTUAL_BEGIN}}
public:
    virtual BOOL CanClose ();
    virtual BOOL EvInitDialog (HWND hWndFocus);
    virtual void SetupWindow ();
//{{TSetupFirstVIRTUAL_END}}

//{{TSetupFirstRSP_TBL_BEGIN}}
protected:
    void StopBNClicked ();
    void NextBNClicked ();
    void BackBNClicked ();

    void CBNSelchange ();
    void XIBNClicked ();
    void WPBNClicked ();
//{{TSetupFirstRSP_TBL_END}}
DECLARE_RESPONSE_TABLE(TSetupFirst);
};    //{{TSetupFirst}}


#endif                                      // __tstpfrst_h sentry.

Соседние файлы в папке SOURCE