-
Notifications
You must be signed in to change notification settings - Fork 0
/
STATBAR.H
40 lines (31 loc) · 837 Bytes
/
STATBAR.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// statbar.h : header file
//
#ifndef __STATBAR_H__
#define __STATBAR_H__
/////////////////////////////////////////////////////////////////////////////
// CInetnavStatusBar window
class CInetnavStatusBar : public CStatusBar
{
// Construction
public:
CInetnavStatusBar();
// Attributes
public:
// Operations
public:
BOOL SetText(CString strText);
BOOL SetText(UINT nIDResource);
// for setting the IDLE message
void ShowIdleMessage() { SetText(AFX_IDS_IDLEMESSAGE); }
// Implementation
public:
virtual ~CInetnavStatusBar();
protected:
// Generated message map functions
//{{AFX_MSG(CInetnavStatusBar)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
#endif //__STATBAR_H__