diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-12-21 18:20:32 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-12-21 18:20:32 +0000 |
commit | 7ec2da4c782dce0486cb763b5f23c2b73636054c (patch) | |
tree | f0de331ba9d12a77ac3921c9b59e332f215a38ac /TAO/utils/NamingViewer/NamingViewerDlg.h | |
parent | 050b3c596d140de0c3236ce7cae927a5864c969b (diff) | |
download | ATCD-7ec2da4c782dce0486cb763b5f23c2b73636054c.tar.gz |
ChangeLogTag:Tue Dec 21 08:02:43 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'TAO/utils/NamingViewer/NamingViewerDlg.h')
-rw-r--r-- | TAO/utils/NamingViewer/NamingViewerDlg.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/TAO/utils/NamingViewer/NamingViewerDlg.h b/TAO/utils/NamingViewer/NamingViewerDlg.h new file mode 100644 index 00000000000..fbda6676e4d --- /dev/null +++ b/TAO/utils/NamingViewer/NamingViewerDlg.h @@ -0,0 +1,61 @@ +// $Id$ +// NamingViewerDlg.h : header file +// + +#if !defined(AFX_NAMINGVIEWERDLG_H__B9C0EB98_AD28_11D3_BF1F_00C0F03C565A__INCLUDED_) +#define AFX_NAMINGVIEWERDLG_H__B9C0EB98_AD28_11D3_BF1F_00C0F03C565A__INCLUDED_ + +#if _MSC_VER > 1000 +#pragma once +#endif // _MSC_VER > 1000 + +#include "orbsvcs/CosNamingC.h" +#include "NamingTreeCtrl.h" +///////////////////////////////////////////////////////////////////////////// +// CNamingViewerDlg dialog + +class CNamingViewerDlg : public CDialog +{ +// Construction +public: + CNamingViewerDlg(CORBA::ORB_ptr pORB, CWnd* pParent = NULL); // standard constructor + +// Dialog Data + //{{AFX_DATA(CNamingViewerDlg) + enum { IDD = IDD_NAMINGVIEWER_DIALOG }; + CNamingTreeCtrl m_Tree; + CString m_Server; + //}}AFX_DATA + + // ClassWizard generated virtual function overrides + //{{AFX_VIRTUAL(CNamingViewerDlg) + protected: + virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support + //}}AFX_VIRTUAL + +// Implementation +protected: + HICON m_hIcon; + + // Generated message map functions + //{{AFX_MSG(CNamingViewerDlg) + virtual BOOL OnInitDialog(); + afx_msg void OnSysCommand(UINT nID, LPARAM lParam); + afx_msg void OnPaint(); + afx_msg HCURSOR OnQueryDragIcon(); + afx_msg void OnSelectNs(); + afx_msg void OnSize(UINT nType, int cx, int cy); + //}}AFX_MSG + afx_msg void OnGetMinMaxInfo( MINMAXINFO FAR* lpMMI ); + DECLARE_MESSAGE_MAP() + + void Resolve(); + + CORBA::ORB_ptr m_pORB; + CosNaming::NamingContext_var m_RootContext; +}; + +//{{AFX_INSERT_LOCATION}} +// Microsoft Visual C++ will insert additional declarations immediately before the previous line. + +#endif // !defined(AFX_NAMINGVIEWERDLG_H__B9C0EB98_AD28_11D3_BF1F_00C0F03C565A__INCLUDED_) |