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

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

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


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

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

#include <owl\dialog.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 = TXSetupC}}
class TXSetupC : public TDialog {
		TOwnerButton *BackButton, *NextButton;
		FirstSetupList &w_data;
		SetupResults result;

		TComboBox *XIIBox, *XIDBox, *XIFBox, *XIFTBox;
		TEdit *XII_EEdit, *XII_DEdit,
					*XID_EEdit, *XID_DEdit,
					*XIF_EEdit, *XIF_DEdit;

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

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

//{{TXSetupCRSP_TBL_BEGIN}}
protected:
		void NextBNClicked ();
		void BackBNClicked ();

//{{TXSetupCRSP_TBL_END}}
DECLARE_RESPONSE_TABLE(TXSetupC);
};    //{{TXSetupC}}


#endif                                      // __txsetupc_h sentry.

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