mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
15783d12f8
svn path=/trunk/icecast/; revision=3787
99 lines
2.9 KiB
C++
99 lines
2.9 KiB
C++
#if !defined(AFX_TABCTRLSSL_H__75BE48A7_864C_11D5_9F04_000102FB9990__INCLUDED_)
|
|
#define AFX_TABCTRLSSL_H__75BE48A7_864C_11D5_9F04_000102FB9990__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// TabCtrlEx.h : header file
|
|
//
|
|
|
|
#include <afxtempl.h>
|
|
#include "TabPageSSL.h"
|
|
|
|
#ifdef _DEBUG
|
|
#pragma pack (push, 1)
|
|
|
|
typedef struct {
|
|
WORD dlgVer;
|
|
WORD signature;
|
|
DWORD helpID;
|
|
DWORD exStyle;
|
|
DWORD style;
|
|
WORD cDlgItems;
|
|
short x;
|
|
short y;
|
|
short cx;
|
|
short cy;
|
|
} DLGTEMPLATEEX;
|
|
|
|
#pragma pack (pop)
|
|
#endif // _DEBUG
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CTabCtrlSSL window
|
|
|
|
class CTabCtrlSSL : public CTabCtrl {
|
|
public:
|
|
// Construction
|
|
CTabCtrlSSL ();
|
|
// Destruction
|
|
virtual ~CTabCtrlSSL (void);
|
|
// Page Functions
|
|
int AddSSLPage (LPCTSTR pszTitle, int nPageID, CTabPageSSL* pTabPage);
|
|
int AddSSLPage (LPCTSTR pszTitle, int nPageID, LPCTSTR pszTemplateName);
|
|
int AddSSLPage (LPCTSTR pszTitle, int nPageID, int nTemplateID);
|
|
BOOL RemoveSSLPage (int nIndex);
|
|
int GetSSLPageCount (void);
|
|
BOOL GetSSLPageTitle (int nIndex, CString& strTitle);
|
|
BOOL SetSSLPageTitle (int nIndex, LPCTSTR pszTitle);
|
|
int GetSSLPageID (int nIndex);
|
|
int SetSSLPageID (int nIndex, int nPageID);
|
|
BOOL ActivateSSLPage (int nIndex);
|
|
int GetSSLActivePage (void);
|
|
CWnd* GetSSLPage (int nIndex);
|
|
int GetSSLPageIndex (int nPageID);
|
|
void ResizeDialog (int nIndex, int cx, int cy);
|
|
|
|
protected:
|
|
struct TabDelete {
|
|
CTabPageSSL* pTabPage;
|
|
BOOL bDelete;
|
|
};
|
|
CArray<TabDelete, TabDelete> m_tabs;
|
|
CArray<HWND, HWND> m_hFocusWnd;
|
|
CArray<int, int> m_nPageIDs;
|
|
|
|
int AddPage (LPCTSTR pszTitle, int nPageID, TabDelete tabDelete);
|
|
|
|
virtual BOOL OnInitPage (int nIndex, int nPageID);
|
|
virtual void OnActivatePage (int nIndex, int nPageID);
|
|
virtual void OnDeactivatePage (int nIndex, int nPageID);
|
|
virtual void OnDestroyPage (int nIndex, int nPageID);
|
|
virtual BOOL OnCommand (WPARAM wParam, LPARAM lParam);
|
|
virtual BOOL OnNotify (WPARAM wParam, LPARAM lParam, LRESULT* pResult);
|
|
virtual BOOL OnCmdMsg (UINT nID, int nCode, void* pExtra,
|
|
AFX_CMDHANDLERINFO* pHandlerInfo);
|
|
|
|
#ifdef _DEBUG
|
|
BOOL CheckDialogTemplate (LPCTSTR pszTemplateName);
|
|
#endif // _DEBUG
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CTabCtrlSSL)
|
|
afx_msg void OnDestroy (void);
|
|
afx_msg void OnSetFocus (CWnd* pOldWnd);
|
|
afx_msg void OnKillFocus (CWnd* pNewWnd);
|
|
afx_msg void OnSelChanging (NMHDR* pNMHDR, LRESULT* pResult);
|
|
afx_msg void OnSelChange (NMHDR* pNMHDR, LRESULT* pResult);
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_TABCTRLSSL_H__75BE48A7_864C_11D5_9F04_000102FB9990__INCLUDED_)
|