-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxBupWhenDone.cpp
126 lines (123 loc) · 3.69 KB
/
wxBupWhenDone.cpp
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
// Auto-generated by wxEC 0.1.33 - 05/12/18 13:09:48
// Do not edit this file - it will be overwritten on next pass
// Make any necessary changes to the source file:
// D:\pkg\wx\MSVC2015\_3.1-2015\GitHubProjects\wxBup-Test\wxBupWhenDone.e
#include "wxBupWhenDone.h"
#include <string.h>
//======================================================================
/**** Enum Class: EWhenDoneTypes ****/
const int EWhenDoneTypes::m_iMapSize = 6;
EWhenDoneTypes::Map_t EWhenDoneTypes::m_Map[EWhenDoneTypes::m_iMapSize];
//----------------------------------------------------------------------
EWhenDoneTypes::EWhenDoneTypes()
{
m_Enum = eWhenDone_Unknown;
EWhenDoneTypes::m_Map[0] = Map_t( eWhenDone_Unknown, "unknown", _T("unknown") );
EWhenDoneTypes::m_Map[1] = Map_t( eWhenDone_DoNothing, "do nothing", _T("do nothing") );
EWhenDoneTypes::m_Map[2] = Map_t( eWhenDone_Exit, "exit", _T("exit") );
EWhenDoneTypes::m_Map[3] = Map_t( eWhenDone_Hibernate, "hibernate", _T("hibernate") );
EWhenDoneTypes::m_Map[4] = Map_t( eWhenDone_LogOff, "logoff", _T("logoff") );
EWhenDoneTypes::m_Map[5] = Map_t( eWhenDone_Shutdown, "shutdown", _T("shutdown") );
}
//----------------------------------------------------------------------
EWhenDoneTypes::~EWhenDoneTypes()
{
}
//----------------------------------------------------------------------
EWhenDoneTypes::Enum EWhenDoneTypes::operator=(int i)
{
m_Enum = AsEnum(i);
return m_Enum;
}
//----------------------------------------------------------------------
EWhenDoneTypes::operator int () const
{
return m_Enum;
}
//----------------------------------------------------------------------
EWhenDoneTypes::Enum EWhenDoneTypes::operator=(const char* sz)
{
m_Enum = AsEnum(sz);
return m_Enum;
}
//----------------------------------------------------------------------
bool EWhenDoneTypes::operator==(const char* sz)
{
return m_Enum == AsEnum(sz);
}
//----------------------------------------------------------------------
EWhenDoneTypes::operator const char* () const
{
return AsName(m_Enum);
}
//----------------------------------------------------------------------
EWhenDoneTypes::Enum EWhenDoneTypes::AsEnum(const char* sz)
{
for(int i=0;i<m_iMapSize;i++)
{
if(strcmp(sz, m_Map[i].szDescription)==0)
{
return (Enum)m_Map[i].iValue;
}
}
return (Enum)m_Map[0].iValue;
}
//----------------------------------------------------------------------
EWhenDoneTypes::Enum EWhenDoneTypes::AsEnum(int e)
{
for(int i=0;i<m_iMapSize;i++)
{
if(m_Map[i].iValue == e)
{
return (Enum)m_Map[i].iValue;
}
}
return (Enum)m_Map[0].iValue;
}
//----------------------------------------------------------------------
const char* EWhenDoneTypes::AsName(int e)
{
for(int i=0;i<m_iMapSize;i++)
{
if(m_Map[i].iValue == e)
{
return m_Map[i].szDescription;
}
}
return m_Map[0].szDescription;
}
//----------------------------------------------------------------------
bool EWhenDoneTypes::GetMap(int iIndex, int& iValue, const char*& szDescription)
{
if(iIndex>=m_iMapSize)
{
return false;
}
iValue = m_Map[iIndex].iValue;
szDescription = m_Map[iIndex].szDescription;
return true;
}
//----------------------------------------------------------------------
bool EWhenDoneTypes::GetMap(int iIndex, int& iValue, wxString& wsDescription)
{
if(iIndex>=m_iMapSize)
{
return false;
}
iValue = m_Map[iIndex].iValue;
wsDescription = m_Map[iIndex].wsDescription;
return true;
}
//----------------------------------------------------------------------
const wxString& EWhenDoneTypes::AsWxName(int e)
{
for(int i=0;i<m_iMapSize;i++)
{
if(m_Map[i].iValue == e)
{
return m_Map[i].wsDescription;
}
}
return m_Map[0].wsDescription;
}
// ------------------------------- eof ------------------------------