-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppToolBar.hpp
57 lines (49 loc) · 1.25 KB
/
AppToolBar.hpp
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: APPTOOLBAR.HPP
** COMPONENT: The Application.
** DESCRIPTION: The CAppToolBar class declaration.
**
*******************************************************************************
*/
// Check for previous inclusion
#ifndef APPTOOLBAR_HPP
#define APPTOOLBAR_HPP
#if _MSC_VER > 1000
#pragma once
#endif
#include <WCL/ToolBar.hpp>
#include <WCL/CmdBtn.hpp>
/******************************************************************************
**
** This is the applications toolbar.
**
*******************************************************************************
*/
class CAppToolBar : public CToolBar
{
public:
//
// Constructors/Destructor.
//
CAppToolBar(WCL::IMsgThread& thread, WCL::ICmdController& controller);
~CAppToolBar();
//
// Members.
//
CCmdButton m_btnSelProf;
CCmdButton m_btnRescan;
CCmdButton m_btnMove;
CCmdButton m_btnCopy;
CCmdButton m_btnDelete;
CCmdButton m_btnCopyTo;
CCmdButton m_btnHelp;
};
/******************************************************************************
**
** Implementation of inline functions.
**
*******************************************************************************
*/
#endif //APPTOOLBAR_HPP