// DlgTriggerCtrl.cpp : implementation file
//

#include "stdafx.h"
#include "6046dryend.h"
#include "DlgTriggerCtrl.h"



#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDlgTriggerCtrl dialog


CDlgTriggerCtrl::CDlgTriggerCtrl(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgTriggerCtrl::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgTriggerCtrl)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CDlgTriggerCtrl::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgTriggerCtrl)
	DDX_Control(pDX, IDC_TAB_TRIGGERS, m_ctrlTabTriggers);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgTriggerCtrl, CDialog)
	//{{AFX_MSG_MAP(CDlgTriggerCtrl)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgTriggerCtrl message handlers

BOOL CDlgTriggerCtrl::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	TCITEM tcItem;
	tcItem.mask = TCIF_TEXT;
  
	tcItem.pszText = _T("SBP");
	m_ctrlTabTriggers.InsertItem(0, &tcItem);
 
	tcItem.pszText = _T("SSS HF");
	m_ctrlTabTriggers.InsertItem(1, &tcItem);
  
	tcItem.pszText = _T("SSS LF");
	m_ctrlTabTriggers.InsertItem(2, &tcItem);


	m_ctrlTabTriggers.Init();
	
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}
