-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathIconAuswahlMandant.cpp
192 lines (166 loc) · 4.03 KB
/
IconAuswahlMandant.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
// IconAuswahlMandant.cpp : implementation file
//
// Diese Datei ist Bestandteil von EasyCash&Tax, der freien EÜR-Fibu
//
// Copyleft (GPLv3) 2020 Thomas Mielke
//
// Dies ist freie Software; Sie dürfen sie unter den Bedingungen der
// GNU General Public License, wie von der Free Software Foundation
// veröffentlicht, weiterverteilen und/oder modifizieren; entweder gemäß
// Version 3 der Lizenz oder (nach Ihrer Option) jeder späteren Version.
//
// Diese Software wird in der Hoffnung weiterverbreitet, dass sie nützlich
// sein wird, jedoch OHNE IRGENDEINE GARANTIE, auch ohne die implizierte
// Garantie der MARKTREIFE oder der VERWENDBARKEIT FÜR EINEN BESTIMMTEN ZWECK.
// Mehr Details finden Sie in der GNU Lesser General Public License.
//
// Sie sollten eine Kopie der GNU General Public License Version 3 zusammen mit
// dieser Software erhalten haben; falls nicht, schreiben Sie an die Free
// Software Foundation, Inc., 51 Franklin St, 5th Floor, Boston, MA 02110, USA.
#include "stdafx.h"
#include "XFolderDialog.h"
#include "easycash.h"
#include "IconAuswahlMandant.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CIconAuswahlMandant dialog
CIconAuswahlMandant::CIconAuswahlMandant(CEasyCashView* pParent /*=NULL*/)
: CIconAuswahl(IDD_ICONAUSWAHL_MANDANT, pParent)
{
//{{AFX_DATA_INIT(CIconAuswahlMandant)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CIconAuswahlMandant::DoDataExchange(CDataExchange* pDX)
{
CIconAuswahl::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CIconAuswahlMandant)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CIconAuswahlMandant, CIconAuswahl)
//{{AFX_MSG_MAP(CIconAuswahlMandant)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CIconAuswahlMandant message handlers
/////////////////////////////////////////////////////////////////////////////
// CIconAuswahlMandant virtuals
static IconInfo Icons[] = {
"Standard",
"Einkaufstüte",
"Kiste",
"Glas",
"Zettel",
"Füller",
"Bleistift",
"Tresor",
"Schreibmaschine",
"Notizblock",
"CD",
"Festplatte",
"Maus",
"Computer",
"Notebook",
"Platine",
"Wassermann",
"Schaf",
"Krebs",
"Schütze",
"Skorpion",
"Drache",
"Möbel",
"Tor",
"Obst",
"Brot",
"Käse",
"Kreuz",
"Geschenk",
"Kranz",
"Kosmetik",
"Schuh",
"Handy",
"Uhr",
"Kaktus",
"Kerze",
"Wecker",
"Zauberei",
"Bügeleisen",
"Video",
"Medikament",
"Ente",
"Spielzeug",
"Mikrofon",
"Keyboard",
"Trommel",
"Lautsprecher",
"Hund",
"Schädel",
"Vogel",
"Fisch",
"Internet",
"Ausrufungszeichen",
"Hütchen",
"Leuchtturm",
"Pinsel",
"Ziegel",
"Teppichmesser",
"Ölkanne",
"Träger",
"Zange",
"Globus",
"Qualle",
"Schwamm",
"Mond",
"Rakete",
"Trepanation",
"Bär",
"Papierkrieg",
"Solar"
};
IconInfo* CIconAuswahlMandant::GetIcons()
{
return Icons;
}
int CIconAuswahlMandant::GetIconCount()
{
return sizeof(Icons)/sizeof(Icons[0]);
}
void CIconAuswahlMandant::Neu()
{
}
BOOL CIconAuswahlMandant::ChooseProperty(CString &csProperty)
{
if (csProperty.IsEmpty())
if (!SHGetSpecialFolderPath(AfxGetMainWnd()->GetSafeHwnd(), csProperty.GetBuffer(MAX_PATH), CSIDL_PERSONAL, FALSE))
csProperty = "C:\\";
CString csTitle = (CString)GetProperty() + " auswählen";
// Mandantenverzeichnis wählen
if (SelectFolder(csProperty.GetBuffer(MAX_PATH), (LPCTSTR)csTitle))
{
csProperty.ReleaseBuffer();
if (csProperty.GetLength() && csProperty[csProperty.GetLength()-1] == '\\')
csProperty = csProperty.Left(csProperty.GetLength()-1);
return TRUE;
}
else
return FALSE;
}
void CIconAuswahlMandant::Umbenennen(int nElement)
{
}
void CIconAuswahlMandant::Loeschen(int nElement)
{
}
int CIconAuswahlMandant::IconAuswahl()
{
// Icon wählen
CIconAuswahlMandant dlgIcon(m_pParent);
dlgIcon.DoModal();
return dlgIcon.m_nSelected;
}