1 | #include "Common.h"
|
---|
2 |
|
---|
3 |
|
---|
4 | void ScreenToClient(HWND hwnd,RECT *pRect){
|
---|
5 | ScreenToClient(hwnd,(POINT *)pRect);
|
---|
6 | ScreenToClient(hwnd,(POINT *)(((long)(void *)pRect)+sizeof(POINT)));
|
---|
7 | }
|
---|
8 | void ClientToScreen(HWND hwnd,RECT *pRect){
|
---|
9 | ClientToScreen(hwnd,(POINT *)pRect);
|
---|
10 | ClientToScreen(hwnd,(POINT *)(((long)(void *)pRect)+sizeof(POINT)));
|
---|
11 | }
|
---|
12 |
|
---|
13 |
|
---|
14 | typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE hProcess,PBOOL Wow64Process);
|
---|
15 | BOOL IsWow64(void){
|
---|
16 | ///////////////////////////////////////////////////////////
|
---|
17 | // ProjectEditor.exeがWOW64技術で動作しているのかどうか
|
---|
18 | ///////////////////////////////////////////////////////////
|
---|
19 | BOOL bIsWow64 = FALSE;
|
---|
20 | LPFN_ISWOW64PROCESS fnIsWow64Process = (LPFN_ISWOW64PROCESS)GetProcAddress(GetModuleHandle("kernel32"),"IsWow64Process");
|
---|
21 |
|
---|
22 | if (NULL != fnIsWow64Process)
|
---|
23 | {
|
---|
24 | if (!fnIsWow64Process(GetCurrentProcess(),&bIsWow64))
|
---|
25 | {
|
---|
26 | // handle error
|
---|
27 | bIsWow64 = FALSE;
|
---|
28 | }
|
---|
29 | }
|
---|
30 | return bIsWow64;
|
---|
31 | }
|
---|
32 |
|
---|
33 | void URLEncode(LPSTR pszSrc){
|
---|
34 | char *temp;
|
---|
35 | temp=(char *)malloc(65535);
|
---|
36 |
|
---|
37 | int i,i2;
|
---|
38 | for (i = 0,i2=0; ; i++,i2++)
|
---|
39 | {
|
---|
40 | if(pszSrc[i]=='\0'){
|
---|
41 | temp[i2] = 0;
|
---|
42 | break;
|
---|
43 | }
|
---|
44 |
|
---|
45 | // 英数字 _ . - は変換しないでそのまま
|
---|
46 | if (isalnum((BYTE)pszSrc[i]) || pszSrc[i] == '_' || pszSrc[i] == '.' || pszSrc[i] == '-'){
|
---|
47 | temp[i2] = pszSrc[i];
|
---|
48 | }
|
---|
49 | // それ以外は %3B のような形式に変換
|
---|
50 | else{
|
---|
51 | sprintf(temp+i2,"%%%02X", (BYTE)pszSrc[i]);
|
---|
52 | i2+=lstrlen(temp+i2);
|
---|
53 | i2--;
|
---|
54 | }
|
---|
55 | }
|
---|
56 |
|
---|
57 | lstrcpy(pszSrc,temp);
|
---|
58 | free(temp);
|
---|
59 | }
|
---|
60 |
|
---|
61 | void Digit(int num,char *buffer){
|
---|
62 | char temporary[255];
|
---|
63 | int i,iPos;
|
---|
64 |
|
---|
65 | sprintf(temporary,"%d",abs(num));
|
---|
66 |
|
---|
67 | //カンマが不要の場合は抜ける
|
---|
68 | if(lstrlen(temporary)<=3){
|
---|
69 | wsprintf(buffer,"%d",num);
|
---|
70 | return;
|
---|
71 | }
|
---|
72 |
|
---|
73 | //合計の文字数からバッファを確保
|
---|
74 | if(num<0){
|
---|
75 | buffer[0]='-';
|
---|
76 | iPos=1;
|
---|
77 | }
|
---|
78 | else{
|
---|
79 | buffer[0]=0;
|
---|
80 | iPos=0;
|
---|
81 | }
|
---|
82 |
|
---|
83 | //3桁毎にカンマを加えながら文字列をコピーする
|
---|
84 | int iFirst;
|
---|
85 | iFirst=lstrlen(temporary)%3;
|
---|
86 | if(iFirst==0) iFirst=3;
|
---|
87 | memcpy(buffer+iPos,temporary,iFirst);
|
---|
88 | iPos+=iFirst;
|
---|
89 |
|
---|
90 | int i2;
|
---|
91 | i2=(lstrlen(temporary)-4)/3;
|
---|
92 |
|
---|
93 | for(i=0;i<=i2;i++){
|
---|
94 | buffer[iPos]=',';
|
---|
95 | iPos++;
|
---|
96 | memcpy(buffer+iPos,temporary+i*3+iFirst,3);
|
---|
97 | iPos+=3;
|
---|
98 | buffer[iPos]=0;
|
---|
99 | }
|
---|
100 | }
|
---|
101 |
|
---|
102 | void RectNaturalFormat(RECT *ReadRect,RECT *CopyRect){
|
---|
103 | if(ReadRect->left > ReadRect->right){
|
---|
104 | CopyRect->left=ReadRect->right;
|
---|
105 | CopyRect->right=ReadRect->left;
|
---|
106 | }
|
---|
107 | else{
|
---|
108 | CopyRect->left=ReadRect->left;
|
---|
109 | CopyRect->right=ReadRect->right;
|
---|
110 | }
|
---|
111 | if(ReadRect->top > ReadRect->bottom){
|
---|
112 | CopyRect->top=ReadRect->bottom;
|
---|
113 | CopyRect->bottom=ReadRect->top;
|
---|
114 | }
|
---|
115 | else{
|
---|
116 | CopyRect->top=ReadRect->top;
|
---|
117 | CopyRect->bottom=ReadRect->bottom;
|
---|
118 | }
|
---|
119 | }
|
---|
120 | void RectNaturalFormat(int *x1,int *y1,int *x2,int *y2){
|
---|
121 | int temp;
|
---|
122 | if(*x1>*x2){
|
---|
123 | temp=*x1;
|
---|
124 | *x1=*x2;
|
---|
125 | *x2=temp;
|
---|
126 | }
|
---|
127 | if(*y1>*y2){
|
---|
128 | temp=*y1;
|
---|
129 | *y1=*y2;
|
---|
130 | *y2=temp;
|
---|
131 | }
|
---|
132 | }
|
---|
133 | void KillSpaces(char *str1,char *str2){
|
---|
134 | int i,i2,IsStr;
|
---|
135 | for(i=0,i2=0,IsStr=0;;i++,i2++){
|
---|
136 | while((str1[i]==' '||str1[i]=='\t')&&IsStr==0&&str1[i]!='\0') i++;
|
---|
137 | if(str1[i]=='\"') IsStr^=1;
|
---|
138 | str2[i2]=str1[i];
|
---|
139 | if(str1[i]=='\0') break;
|
---|
140 | }
|
---|
141 | }
|
---|
142 | void RemoveStringQuotes(char *str){
|
---|
143 | int i;
|
---|
144 | if(str[0]!='\"') return;
|
---|
145 | for(i=0;;i++){
|
---|
146 | str[i]=str[i+1];
|
---|
147 | if(str[i]=='\"') break;
|
---|
148 | }
|
---|
149 | str[i]=0;
|
---|
150 | }
|
---|
151 | void SlideString(char *buffer, int slide){
|
---|
152 | char *temp;
|
---|
153 | temp=(char *)malloc(lstrlen(buffer)+1);
|
---|
154 | lstrcpy(temp,buffer);
|
---|
155 | lstrcpy(buffer+slide,temp);
|
---|
156 | free(temp);
|
---|
157 | }
|
---|
158 | void SlideBuffer(char *buffer,int length,int slide){
|
---|
159 | void *temp;
|
---|
160 | temp=malloc(length+1);
|
---|
161 | memcpy(temp,buffer,length);
|
---|
162 | memcpy(buffer+slide,temp,length);
|
---|
163 | free(temp);
|
---|
164 | }
|
---|
165 | BOOL IsVariableTopChar(char c){
|
---|
166 | if((c>='A'&&c<='Z')||(c>='a'&&c<='z')||c=='_') return 1;
|
---|
167 | return 0;
|
---|
168 | }
|
---|
169 | bool IsNumberChar( char c ){
|
---|
170 | if(c>='0'&&c<='9'){
|
---|
171 | return true;
|
---|
172 | }
|
---|
173 | return false;
|
---|
174 | }
|
---|
175 | BOOL IsVariableChar(char c){
|
---|
176 | if((c>='A'&&c<='Z')||(c>='a'&&c<='z')||(c>='0'&&c<='9')||
|
---|
177 | c=='_'||c=='.'||c=='$') return 1;
|
---|
178 | return 0;
|
---|
179 | }
|
---|
180 |
|
---|
181 | BOOL IsCommandBackDelimitation(char *buffer,int pos){
|
---|
182 | if(buffer[pos]=='\n'||buffer[pos]==':') return 1;
|
---|
183 | return 0;
|
---|
184 | }
|
---|
185 | BOOL IsCommandDelimitation(char *buffer,int p){
|
---|
186 | if(buffer[p]=='\r'&&buffer[p+1]=='\n') return 2;
|
---|
187 | if(buffer[p]=='\n'||buffer[p]==':'||buffer[p]=='\0') return 1;
|
---|
188 | return 0;
|
---|
189 | }
|
---|
190 |
|
---|
191 | char *ComparisonString( char *str1, char *str2, bool isBigSmall, bool isWordUnit ){
|
---|
192 | char *temp1 = (char *)malloc( lstrlen( str1 ) +1 );
|
---|
193 | char *temp2 = (char *)malloc( lstrlen( str2 ) +1 );
|
---|
194 |
|
---|
195 | lstrcpy( temp1, str1 );
|
---|
196 | lstrcpy( temp2, str2 );
|
---|
197 |
|
---|
198 | if( isBigSmall == false ){
|
---|
199 | // 大文字小文字を区別しない場合
|
---|
200 | // すべて大文字にしておく
|
---|
201 | CharUpper( temp1 );
|
---|
202 | CharUpper( temp2 );
|
---|
203 | }
|
---|
204 |
|
---|
205 | int len2 = lstrlen( temp2 );
|
---|
206 |
|
---|
207 | const char *temp3 = strstr( temp1, temp2 );
|
---|
208 | while( temp3 ){
|
---|
209 | if( isWordUnit ){
|
---|
210 | int pos = (int)temp3 - (int)temp1;
|
---|
211 | if( pos == 0 ){
|
---|
212 | if( !( IsVariableTopChar( temp1[len2] ) || IsNumberChar( temp1[len2] ) ) ){
|
---|
213 | break;
|
---|
214 | }
|
---|
215 | }
|
---|
216 | else{
|
---|
217 | if( !( IsVariableTopChar( temp1[pos-1] ) || IsNumberChar( temp1[pos-1] ) )
|
---|
218 | && !( IsVariableTopChar( temp1[pos+len2] ) || IsNumberChar( temp1[pos+len2] ) )
|
---|
219 | ){
|
---|
220 | break;
|
---|
221 | }
|
---|
222 | }
|
---|
223 | }
|
---|
224 | else{
|
---|
225 | break;
|
---|
226 | }
|
---|
227 |
|
---|
228 | temp3 = strstr( temp3 + 1, temp2 );
|
---|
229 | }
|
---|
230 |
|
---|
231 | char *result = NULL;
|
---|
232 | if( temp3 ){
|
---|
233 | int pos = (int)temp3 - (int)temp1;
|
---|
234 | result = str1 + pos;
|
---|
235 | }
|
---|
236 |
|
---|
237 | free( temp1 );
|
---|
238 | free( temp2 );
|
---|
239 |
|
---|
240 | return result;
|
---|
241 | }
|
---|
242 | int GetOneParameter(char *Parameter,int pos,char *retAns){
|
---|
243 | int i,i2,IsStr,PareNum;
|
---|
244 | for(i=pos,i2=0,IsStr=0,PareNum=0;;i++,i2++){
|
---|
245 | if(IsDBCSLeadByte(Parameter[i])){
|
---|
246 | retAns[i2]=Parameter[i];
|
---|
247 | retAns[++i2]=Parameter[++i];
|
---|
248 | continue;
|
---|
249 | }
|
---|
250 | if(Parameter[i]=='\"') IsStr^=1;
|
---|
251 | if(Parameter[i]=='('&&IsStr==0) PareNum++;
|
---|
252 | if(Parameter[i]==')'&&IsStr==0) PareNum--;
|
---|
253 | if(Parameter[i]==','&&IsStr==0&&PareNum==0){
|
---|
254 | retAns[i2]=0;
|
---|
255 | break;
|
---|
256 | }
|
---|
257 | retAns[i2]=Parameter[i];
|
---|
258 | if(Parameter[i]=='\0'||Parameter[i]=='\r'&&Parameter[i+1]=='\n'){
|
---|
259 | retAns[i2]=0;
|
---|
260 | break;
|
---|
261 | }
|
---|
262 | }
|
---|
263 | if(Parameter[i]==',') i++;
|
---|
264 | return i;
|
---|
265 | }
|
---|
266 | int GetStringInPare(char *buffer,char *ReadBuffer){
|
---|
267 | int i,IsStr,PareNum;
|
---|
268 | for(i=0,IsStr=0,PareNum=0;;i++){
|
---|
269 | buffer[i]=ReadBuffer[i];
|
---|
270 | if(ReadBuffer[i]=='\"') IsStr^=1;
|
---|
271 | else if(ReadBuffer[i]=='('&&IsStr==0) PareNum++;
|
---|
272 | else if(ReadBuffer[i]==')'&&IsStr==0){
|
---|
273 | PareNum--;
|
---|
274 | if(PareNum==0){
|
---|
275 | i++;
|
---|
276 | buffer[i]=0;
|
---|
277 | break;
|
---|
278 | }
|
---|
279 | }
|
---|
280 | else if(ReadBuffer[i]=='\0') return 0;
|
---|
281 | }
|
---|
282 | return i;
|
---|
283 | }
|
---|
284 | int GetStringInBracket(char *buffer,char *ReadBuffer){
|
---|
285 | int i,IsStr,PareNum;
|
---|
286 | for(i=0,IsStr=0,PareNum=0;;i++){
|
---|
287 | buffer[i]=ReadBuffer[i];
|
---|
288 | if(IsDBCSLeadByte(ReadBuffer[i])){
|
---|
289 | i++;
|
---|
290 | buffer[i]=ReadBuffer[i];
|
---|
291 | continue;
|
---|
292 | }
|
---|
293 | if(ReadBuffer[i]=='\"') IsStr^=1;
|
---|
294 | else if(ReadBuffer[i]=='['&&IsStr==0) PareNum++;
|
---|
295 | else if(ReadBuffer[i]==']'&&IsStr==0){
|
---|
296 | PareNum--;
|
---|
297 | if(PareNum==0){
|
---|
298 | i++;
|
---|
299 | buffer[i]=0;
|
---|
300 | break;
|
---|
301 | }
|
---|
302 | }
|
---|
303 | else if(ReadBuffer[i]=='\0') return 0;
|
---|
304 | }
|
---|
305 | return i;
|
---|
306 | }
|
---|
307 | void JumpBlank(char *pBuf,int *piPos){
|
---|
308 | int i;
|
---|
309 | i=*piPos;
|
---|
310 |
|
---|
311 | while(1){
|
---|
312 | while(pBuf[i]==' '||pBuf[i]=='\t') i++;
|
---|
313 | if(pBuf[i]=='\0') break;
|
---|
314 | if(pBuf[i]=='\''){
|
---|
315 | //注釈文(一行)
|
---|
316 | for(i++;;i++){
|
---|
317 | if(pBuf[i]=='\0') break;
|
---|
318 | if(pBuf[i]=='\r'&&pBuf[i+1]=='\n'){
|
---|
319 | i+=2;
|
---|
320 | break;
|
---|
321 | }
|
---|
322 | }
|
---|
323 | while(pBuf[i]==' '||pBuf[i]=='\t') i++;
|
---|
324 | }
|
---|
325 | if(pBuf[i]=='/'&&pBuf[i+1]=='*'){
|
---|
326 | //注釈文(複数行)
|
---|
327 | i+=2;
|
---|
328 | while(!(pBuf[i]=='*'&&pBuf[i+1]=='/')){
|
---|
329 | i++;
|
---|
330 | if(pBuf[i]=='\0') break;
|
---|
331 | }
|
---|
332 | if(pBuf[i]){
|
---|
333 | i+=2;
|
---|
334 | }
|
---|
335 | }
|
---|
336 | while(pBuf[i]=='\r'&&pBuf[i+1]=='\n') i+=2;
|
---|
337 |
|
---|
338 | if(!(
|
---|
339 | pBuf[i]==' '||
|
---|
340 | pBuf[i]=='\t'||
|
---|
341 | pBuf[i]=='\''||
|
---|
342 | (pBuf[i]=='/'&&pBuf[i+1]=='*')
|
---|
343 | )) break;
|
---|
344 | }
|
---|
345 |
|
---|
346 | *piPos=i;
|
---|
347 | }
|
---|
348 |
|
---|
349 | BOOL CheckParenthesis(char *buffer){
|
---|
350 | int i,IsStr,PareNum,sw;
|
---|
351 | _int8 bracket[1024];
|
---|
352 |
|
---|
353 | for(i=0,IsStr=0,PareNum=0,sw=0;;i++){
|
---|
354 | if(buffer[i]=='\"'){
|
---|
355 | IsStr^=1;
|
---|
356 | continue;
|
---|
357 | }
|
---|
358 |
|
---|
359 | else if(buffer[i]=='('&&IsStr==0){
|
---|
360 | bracket[PareNum]=0;
|
---|
361 | PareNum++;
|
---|
362 | }
|
---|
363 | else if(buffer[i]=='['&&IsStr==0){
|
---|
364 | bracket[PareNum]=1;
|
---|
365 | PareNum++;
|
---|
366 | }
|
---|
367 |
|
---|
368 | else if(buffer[i]==')'&&IsStr==0){
|
---|
369 | PareNum--;
|
---|
370 | if(bracket[PareNum]!=0||PareNum<0){
|
---|
371 | //"カッコ \'( )\'"
|
---|
372 | return 0;
|
---|
373 | }
|
---|
374 | }
|
---|
375 | else if(buffer[i]==']'&&IsStr==0){
|
---|
376 | PareNum--;
|
---|
377 | if(bracket[PareNum]!=1||PareNum<0){
|
---|
378 | //"カッコ \'( )\'"
|
---|
379 | return 0;
|
---|
380 | }
|
---|
381 | }
|
---|
382 |
|
---|
383 | else if(buffer[i]=='\n'||buffer[i]=='\0'){
|
---|
384 |
|
---|
385 | //"カッコ \'( )\'"
|
---|
386 | if(buffer[i]=='\0'){
|
---|
387 | if(PareNum!=0){
|
---|
388 | return 0;
|
---|
389 | }
|
---|
390 |
|
---|
391 | if(IsStr!=0){
|
---|
392 | return 0;
|
---|
393 | }
|
---|
394 | }
|
---|
395 | if(buffer[i]=='\0') break;
|
---|
396 |
|
---|
397 | sw=0;
|
---|
398 | }
|
---|
399 | }
|
---|
400 | return 1;
|
---|
401 | }
|
---|
402 |
|
---|
403 | DWORD GetValue(char *value){
|
---|
404 | unsigned long ans;
|
---|
405 | if(value[0]=='&'){
|
---|
406 | if(value[1]=='o'||value[1]=='O') sscanf(value+2,"%o",&ans);
|
---|
407 | if(value[1]=='h'||value[1]=='H') sscanf(value+2,"%x",&ans);
|
---|
408 | }
|
---|
409 | else ans=atol(value);
|
---|
410 | return ans;
|
---|
411 | }
|
---|
412 | BOOL IsManagementCommand(int ComNum){
|
---|
413 | switch(ComNum){
|
---|
414 | case -1:
|
---|
415 | case COM_ABSTRACT:
|
---|
416 | case COM_CLASS:
|
---|
417 | case COM_CONST:
|
---|
418 | case COM_DEBUG:
|
---|
419 | case COM_DECLARE:
|
---|
420 | case COM_DEF:
|
---|
421 | case COM_DIM:
|
---|
422 | case COM_DO:
|
---|
423 | case COM_END:
|
---|
424 | case COM_ENUM:
|
---|
425 | case COM_FOR:
|
---|
426 | case COM_FUNCTION:
|
---|
427 | case COM_GOSUB:
|
---|
428 | case COM_GOTO:
|
---|
429 | case COM_IF:
|
---|
430 | case COM_INHERITS:
|
---|
431 | case COM_INTERFACE:
|
---|
432 | case COM_LOOP:
|
---|
433 | case COM_NEXT:
|
---|
434 | case COM_PRIVATE:
|
---|
435 | case COM_PROTECTED:
|
---|
436 | case COM_PUBLIC:
|
---|
437 | case COM_RETURN:
|
---|
438 | case COM_SELECT:
|
---|
439 | case COM_SUB:
|
---|
440 | case COM_TYPE:
|
---|
441 | case COM_TYPEDEF:
|
---|
442 | case COM_VIRTUAL:
|
---|
443 | case COM_OVERRIDE:
|
---|
444 | case COM_WEND:
|
---|
445 | case COM_WHILE:
|
---|
446 | case COM_WITH:
|
---|
447 | return 1;
|
---|
448 | default:
|
---|
449 | break;
|
---|
450 | }
|
---|
451 | return 0;
|
---|
452 | }
|
---|
453 | int IsBasicReservedWord(char *str){
|
---|
454 | if(str[0]=='a'||str[0]=='A'){
|
---|
455 | if(lstrcmpi(str,"Abstract")==0) return COM_ABSTRACT;
|
---|
456 | if(lstrcmpi(str,"As")==0) return -1;
|
---|
457 | }
|
---|
458 | else if(str[0]=='b'||str[0]=='B'){
|
---|
459 | if(lstrcmpi(str,"Beep")==0) return COM_BEEP;
|
---|
460 | if(lstrcmp(str,"Boolean")==0) return -1;
|
---|
461 | if(lstrcmpi(str,"ByRef")==0) return -1;
|
---|
462 | if(lstrcmpi(str,"ByVal")==0) return -1;
|
---|
463 | if(lstrcmp(str,"Byte")==0) return -1;
|
---|
464 | }
|
---|
465 | else if(str[0]=='c'||str[0]=='C'){
|
---|
466 | if(lstrcmpi(str,"Case")==0) return -1;
|
---|
467 | if(lstrcmp(str,"Char")==0) return -1;
|
---|
468 | if(lstrcmpi(str,"ChDir")==0) return COM_CHDIR;
|
---|
469 | if(lstrcmpi(str,"Circle")==0) return COM_CIRCLE;
|
---|
470 | if(lstrcmpi(str,"Class")==0) return COM_CLASS;
|
---|
471 | if(lstrcmpi(str,"Close")==0) return COM_CLOSE;
|
---|
472 | if(lstrcmpi(str,"Cls")==0) return COM_CLS;
|
---|
473 | if(lstrcmpi(str,"Color")==0) return COM_COLOR;
|
---|
474 | if(lstrcmpi(str,"Const")==0) return COM_CONST;
|
---|
475 | if(lstrcmpi(str,"Continue")==0) return -1;
|
---|
476 | }
|
---|
477 | else if(str[0]=='d'||str[0]=='D'){
|
---|
478 | if(lstrcmpi(str,"Debug")==0) return COM_DEBUG;
|
---|
479 | if(lstrcmpi(str,"Declare")==0) return COM_DECLARE;
|
---|
480 | if(lstrcmpi(str,"Def")==0) return COM_DEF;
|
---|
481 | if(lstrcmpi(str,"Delete")==0) return -1;
|
---|
482 | if(lstrcmpi(str,"DelWnd")==0) return COM_DELWND;
|
---|
483 | if(lstrcmpi(str,"Dim")==0) return COM_DIM;
|
---|
484 | if(lstrcmpi(str,"Do")==0) return COM_DO;
|
---|
485 | if(lstrcmp(str,"Double")==0) return -1;
|
---|
486 | if(lstrcmp(str,"DWord")==0) return -1;
|
---|
487 | }
|
---|
488 | else if(str[0]=='e'||str[0]=='E'){
|
---|
489 | if(lstrcmpi(str,"Else")==0) return -1;
|
---|
490 | if(lstrcmpi(str,"ElseIf")==0) return -1;
|
---|
491 | if(lstrcmpi(str,"End")==0) return COM_END;
|
---|
492 | if(lstrcmpi(str,"EndIf")==0) return -1;
|
---|
493 | if(lstrcmpi(str,"EndFunction")==0) return -1;
|
---|
494 | if(lstrcmpi(str,"EndSub")==0) return -1;
|
---|
495 | if(lstrcmpi(str,"EndType")==0) return -1;
|
---|
496 | if(lstrcmpi(str,"EndSelect")==0) return -1;
|
---|
497 | if(lstrcmpi(str,"EndWith")==0) return -1;
|
---|
498 | if(lstrcmpi(str,"Enum")==0) return COM_ENUM;
|
---|
499 | if(lstrcmpi(str,"Exit")==0) return -1;
|
---|
500 | if(lstrcmpi(str,"ExitDo")==0) return -1;
|
---|
501 | if(lstrcmpi(str,"ExitFor")==0) return -1;
|
---|
502 | if(lstrcmpi(str,"ExitFunction")==0) return -1;
|
---|
503 | if(lstrcmpi(str,"ExitSub")==0) return -1;
|
---|
504 | if(lstrcmpi(str,"ExitWhile")==0) return -1;
|
---|
505 | }
|
---|
506 | else if(str[0]=='f'||str[0]=='F'){
|
---|
507 | if(lstrcmp(str,"False")==0) return -1;
|
---|
508 | if(lstrcmpi(str,"Field")==0) return COM_FIELD;
|
---|
509 | if(lstrcmpi(str,"For")==0) return COM_FOR;
|
---|
510 | if(lstrcmpi(str,"Function")==0) return COM_FUNCTION;
|
---|
511 | }
|
---|
512 | else if(str[0]=='g'||str[0]=='G'){
|
---|
513 | if(lstrcmpi(str,"Get")==0) return COM_GET;
|
---|
514 | if(lstrcmpi(str,"GoSub")==0) return COM_GOSUB;
|
---|
515 | if(lstrcmpi(str,"Goto")==0) return COM_GOTO;
|
---|
516 | }
|
---|
517 | else if(str[0]=='i'||str[0]=='I'){
|
---|
518 | if(lstrcmpi(str,"If")==0) return COM_IF;
|
---|
519 | if(lstrcmpi(str,"Inherits")==0) return COM_INHERITS;
|
---|
520 | if(lstrcmpi(str,"Input")==0) return COM_INPUT;
|
---|
521 | if(lstrcmp(str,"Int64")==0) return -1;
|
---|
522 | if(lstrcmp(str,"Integer")==0) return -1;
|
---|
523 | if(lstrcmpi(str,"Interface")==0) return COM_INTERFACE;
|
---|
524 | }
|
---|
525 | else if(str[0]=='k'||str[0]=='K'){
|
---|
526 | if(lstrcmpi(str,"Kill")==0) return COM_KILL;
|
---|
527 | }
|
---|
528 | else if(str[0]=='l'||str[0]=='L'){
|
---|
529 | if(lstrcmpi(str,"Let")==0) return COM_LET;
|
---|
530 | if(lstrcmpi(str,"Line")==0) return COM_LINE;
|
---|
531 | if(lstrcmpi(str,"Locate")==0) return COM_LOCATE;
|
---|
532 | if(lstrcmp(str,"Long")==0) return -1;
|
---|
533 | if(lstrcmpi(str,"Loop")==0) return COM_LOOP;
|
---|
534 | }
|
---|
535 | else if(str[0]=='m'||str[0]=='M'){
|
---|
536 | if(lstrcmpi(str,"MkDir")==0) return COM_MKDIR;
|
---|
537 | if(lstrcmpi(str,"MsgBox")==0) return COM_MSGBOX;
|
---|
538 | }
|
---|
539 | else if(str[0]=='n'||str[0]=='N'){
|
---|
540 | if(lstrcmpi(str,"Namespace")==0) return -1;
|
---|
541 | if(lstrcmpi(str,"Next")==0) return COM_NEXT;
|
---|
542 | if(lstrcmpi(str,"New")==0) return -1;
|
---|
543 | if(lstrcmpi(str,"Nothing")==0) return -1;
|
---|
544 | }
|
---|
545 | else if(str[0]=='o'||str[0]=='O'){
|
---|
546 | if(lstrcmpi(str,"Open")==0) return COM_OPEN;
|
---|
547 | if(lstrcmpi(str,"Operator")==0) return -1;
|
---|
548 | if(lstrcmpi(str,"Override")==0) return COM_OVERRIDE;
|
---|
549 | }
|
---|
550 | else if(str[0]=='p'||str[0]=='P'){
|
---|
551 | if(lstrcmpi(str,"Paint")==0) return COM_PAINT;
|
---|
552 | if(lstrcmpi(str,"Print")==0) return COM_PRINT;
|
---|
553 | if(lstrcmpi(str,"Private")==0) return COM_PRIVATE;
|
---|
554 | if(lstrcmpi(str,"Protected")==0) return COM_PROTECTED;
|
---|
555 | if(lstrcmpi(str,"PSet")==0) return COM_PSET;
|
---|
556 | if(lstrcmpi(str,"Put")==0) return COM_PUT;
|
---|
557 | if(lstrcmpi(str,"Public")==0) return COM_PUBLIC;
|
---|
558 | }
|
---|
559 | else if(str[0]=='q'||str[0]=='Q'){
|
---|
560 | if(lstrcmp(str,"QWord")==0) return -1;
|
---|
561 | }
|
---|
562 | else if(str[0]=='r'||str[0]=='R'){
|
---|
563 | if(lstrcmpi(str,"Randomize")==0) return COM_RANDOMIZE;
|
---|
564 | if(lstrcmpi(str,"Rem")==0) return COM_REM;
|
---|
565 | if(lstrcmpi(str,"Return")==0) return COM_RETURN;
|
---|
566 | }
|
---|
567 | else if(str[0]=='s'||str[0]=='S'){
|
---|
568 | if(lstrcmp(str,"SByte")==0) return -1;
|
---|
569 | if(lstrcmpi(str,"Select")==0) return COM_SELECT;
|
---|
570 | if(lstrcmpi(str,"SelectCase")==0) return COM_SELECT;
|
---|
571 | if(lstrcmp(str,"Single")==0) return -1;
|
---|
572 | if(lstrcmpi(str,"Sleep")==0) return COM_SLEEP;
|
---|
573 | if(lstrcmpi(str,"Static")==0) return -1;
|
---|
574 | if(lstrcmpi(str,"Sub")==0) return COM_SUB;
|
---|
575 | if(lstrcmpi(str,"Super")==0) return -1;
|
---|
576 | }
|
---|
577 | else if(str[0]=='t'||str[0]=='T'){
|
---|
578 | if(lstrcmpi(str,"Then")==0) return -1;
|
---|
579 | if(lstrcmpi(str,"This")==0) return -1;
|
---|
580 | if(lstrcmp(str,"True")==0) return -1;
|
---|
581 | if(lstrcmpi(str,"Type")==0) return COM_TYPE;
|
---|
582 | if(lstrcmpi(str,"TypeDef")==0) return COM_TYPEDEF;
|
---|
583 | }
|
---|
584 | else if(str[0]=='u'||str[0]=='U'){
|
---|
585 | if(lstrcmpi(str,"Until")==0) return -1;
|
---|
586 | }
|
---|
587 | else if(str[0]=='v'||str[0]=='V'){
|
---|
588 | if(lstrcmpi(str,"Virtual")==0) return COM_VIRTUAL;
|
---|
589 | }
|
---|
590 | else if(str[0]=='w'||str[0]=='W'){
|
---|
591 | if(lstrcmpi(str,"Wend")==0) return COM_WEND;
|
---|
592 | if(lstrcmpi(str,"While")==0) return COM_WHILE;
|
---|
593 | if(lstrcmpi(str,"Window")==0) return COM_WINDOW;
|
---|
594 | if(lstrcmpi(str,"With")==0) return COM_WITH;
|
---|
595 | if(lstrcmp(str,"Word")==0) return -1;
|
---|
596 | if(lstrcmpi(str,"Write")==0) return COM_WRITE;
|
---|
597 | }
|
---|
598 | else if(str[0]=='#'){
|
---|
599 | if(lstrcmpi(str,"#include")==0) return -1;
|
---|
600 | if(lstrcmpi(str,"#strict")==0) return -1;
|
---|
601 | if(lstrcmpi(str,"#console")==0) return -1;
|
---|
602 | if(lstrcmpi(str,"#prompt")==0) return -1;
|
---|
603 | if(lstrcmpi(str,"#N88BASIC")==0) return -1;
|
---|
604 | if(lstrcmpi(str,"#define")==0) return -1;
|
---|
605 | if(lstrcmpi(str,"#ifdef")==0) return -1;
|
---|
606 | if(lstrcmpi(str,"#ifndef")==0) return -1;
|
---|
607 | if(lstrcmpi(str,"#else")==0) return -1;
|
---|
608 | if(lstrcmpi(str,"#endif")==0) return -1;
|
---|
609 | }
|
---|
610 | return 0;
|
---|
611 | }
|
---|
612 |
|
---|
613 | HBITMAP CreateGradationBitmap(SIZE *pSize,COLORREF color1,COLORREF color2){
|
---|
614 | //グラデーションビットマップを生成
|
---|
615 |
|
---|
616 | BITMAPINFO BitmapInfo;
|
---|
617 | memset(&BitmapInfo.bmiHeader,0,sizeof(BITMAPINFOHEADER));
|
---|
618 | BitmapInfo.bmiHeader.biSize=sizeof(BITMAPINFOHEADER);
|
---|
619 | BitmapInfo.bmiHeader.biWidth=pSize->cx;
|
---|
620 | BitmapInfo.bmiHeader.biHeight=pSize->cy;
|
---|
621 | BitmapInfo.bmiHeader.biPlanes=1;
|
---|
622 | BitmapInfo.bmiHeader.biBitCount=24;
|
---|
623 |
|
---|
624 | HDC hdc;
|
---|
625 | hdc=GetDC(GetDesktopWindow());
|
---|
626 |
|
---|
627 | HBITMAP hBitmap;
|
---|
628 | BYTE *pByte;
|
---|
629 | hBitmap=CreateDIBSection(hdc,&BitmapInfo,DIB_RGB_COLORS,(void **)&pByte,0,0);
|
---|
630 |
|
---|
631 | int i,i2,x,y;
|
---|
632 | COLORREF rgb;
|
---|
633 | i=BitmapInfo.bmiHeader.biWidth*3;
|
---|
634 | if(i%sizeof(LONG)!=0) i+=sizeof(LONG)-(i%sizeof(LONG));
|
---|
635 | for(y=0;y<BitmapInfo.bmiHeader.biHeight;y++){
|
---|
636 | if(y<BitmapInfo.bmiHeader.biHeight/2-2) rgb=color2;
|
---|
637 | else if(y>BitmapInfo.bmiHeader.biHeight/2+2) rgb=color1;
|
---|
638 | else{
|
---|
639 | double ratio;
|
---|
640 | ratio=((double)y-((double)BitmapInfo.bmiHeader.biHeight/(double)2-(double)2))/(double)4;
|
---|
641 | //ratio=(double)y/(double)BitmapInfo.bmiHeader.biHeight;
|
---|
642 | rgb=RGB(
|
---|
643 | LOBYTE(LOWORD(color2))+(int)(double)(LOBYTE(LOWORD(color1))-LOBYTE(LOWORD(color2)))*(ratio), //赤要素
|
---|
644 | HIBYTE(LOWORD(color2))+(int)(double)(HIBYTE(LOWORD(color1))-HIBYTE(LOWORD(color2)))*(ratio), //緑要素
|
---|
645 | LOBYTE(HIWORD(color2))+(int)(double)(LOBYTE(HIWORD(color1))-LOBYTE(HIWORD(color2)))*(ratio) //青要素
|
---|
646 | );
|
---|
647 | }
|
---|
648 | for(x=0;x<BitmapInfo.bmiHeader.biWidth;x++){
|
---|
649 | i2=y*i+x*3;
|
---|
650 | pByte[i2+2]=LOBYTE(LOWORD(rgb));
|
---|
651 | pByte[i2+1]=HIBYTE(LOWORD(rgb));
|
---|
652 | pByte[i2]=LOBYTE(HIWORD(rgb));
|
---|
653 | }
|
---|
654 | }
|
---|
655 |
|
---|
656 | ReleaseDC(GetDesktopWindow(),hdc);
|
---|
657 |
|
---|
658 | return hBitmap;
|
---|
659 | }
|
---|
660 | HBITMAP CreateVertGradationBitmap(SIZE *pSize,COLORREF color1,COLORREF color2){
|
---|
661 | //グラデーションビットマップを生成
|
---|
662 |
|
---|
663 | BITMAPINFO BitmapInfo;
|
---|
664 | memset(&BitmapInfo.bmiHeader,0,sizeof(BITMAPINFOHEADER));
|
---|
665 | BitmapInfo.bmiHeader.biSize=sizeof(BITMAPINFOHEADER);
|
---|
666 | BitmapInfo.bmiHeader.biWidth=pSize->cx;
|
---|
667 | BitmapInfo.bmiHeader.biHeight=pSize->cy;
|
---|
668 | BitmapInfo.bmiHeader.biPlanes=1;
|
---|
669 | BitmapInfo.bmiHeader.biBitCount=24;
|
---|
670 |
|
---|
671 | HDC hdc;
|
---|
672 | hdc=GetDC(GetDesktopWindow());
|
---|
673 |
|
---|
674 | HBITMAP hBitmap;
|
---|
675 | BYTE *pByte;
|
---|
676 | hBitmap=CreateDIBSection(hdc,&BitmapInfo,DIB_RGB_COLORS,(void **)&pByte,0,0);
|
---|
677 |
|
---|
678 | int i,i2,x,y;
|
---|
679 | COLORREF rgb;
|
---|
680 | i=BitmapInfo.bmiHeader.biWidth*3;
|
---|
681 | if(i%sizeof(LONG)!=0) i+=sizeof(LONG)-(i%sizeof(LONG));
|
---|
682 | for(y=0;y<BitmapInfo.bmiHeader.biHeight;y++){
|
---|
683 | if(y<BitmapInfo.bmiHeader.biHeight/2-2) rgb=color2;
|
---|
684 | else if(y>BitmapInfo.bmiHeader.biHeight/2+2) rgb=color1;
|
---|
685 | else{
|
---|
686 | double ratio;
|
---|
687 | ratio=(double)y/(double)BitmapInfo.bmiHeader.biHeight;
|
---|
688 | rgb=RGB(
|
---|
689 | LOBYTE(LOWORD(color2))+(int)(double)(LOBYTE(LOWORD(color1))-LOBYTE(LOWORD(color2)))*(ratio), //赤要素
|
---|
690 | HIBYTE(LOWORD(color2))+(int)(double)(HIBYTE(LOWORD(color1))-HIBYTE(LOWORD(color2)))*(ratio), //緑要素
|
---|
691 | LOBYTE(HIWORD(color2))+(int)(double)(LOBYTE(HIWORD(color1))-LOBYTE(HIWORD(color2)))*(ratio) //青要素
|
---|
692 | );
|
---|
693 | }
|
---|
694 | for(x=0;x<BitmapInfo.bmiHeader.biWidth;x++){
|
---|
695 | i2=y*i+x*3;
|
---|
696 | pByte[i2+2]=LOBYTE(LOWORD(rgb));
|
---|
697 | pByte[i2+1]=HIBYTE(LOWORD(rgb));
|
---|
698 | pByte[i2]=LOBYTE(HIWORD(rgb));
|
---|
699 | }
|
---|
700 | }
|
---|
701 |
|
---|
702 | ReleaseDC(GetDesktopWindow(),hdc);
|
---|
703 |
|
---|
704 | return hBitmap;
|
---|
705 | }
|
---|
706 | HBITMAP CreateHorzGradationBitmap(SIZE *pSize,COLORREF color1,COLORREF color2){
|
---|
707 | //グラデーションビットマップを生成
|
---|
708 |
|
---|
709 | BITMAPINFO BitmapInfo;
|
---|
710 | memset(&BitmapInfo.bmiHeader,0,sizeof(BITMAPINFOHEADER));
|
---|
711 | BitmapInfo.bmiHeader.biSize=sizeof(BITMAPINFOHEADER);
|
---|
712 | BitmapInfo.bmiHeader.biWidth=pSize->cx;
|
---|
713 | BitmapInfo.bmiHeader.biHeight=pSize->cy;
|
---|
714 | BitmapInfo.bmiHeader.biPlanes=1;
|
---|
715 | BitmapInfo.bmiHeader.biBitCount=24;
|
---|
716 |
|
---|
717 | HDC hdc;
|
---|
718 | hdc=GetDC(GetDesktopWindow());
|
---|
719 |
|
---|
720 | HBITMAP hBitmap;
|
---|
721 | BYTE *pByte;
|
---|
722 | hBitmap=CreateDIBSection(hdc,&BitmapInfo,DIB_RGB_COLORS,(void **)&pByte,0,0);
|
---|
723 |
|
---|
724 | int i,i2,x,y;
|
---|
725 | COLORREF rgb;
|
---|
726 | i=BitmapInfo.bmiHeader.biWidth*3;
|
---|
727 | if(i%sizeof(LONG)!=0) i+=sizeof(LONG)-(i%sizeof(LONG));
|
---|
728 | for(x=0;x<BitmapInfo.bmiHeader.biWidth;x++){
|
---|
729 | double ratio;
|
---|
730 | ratio=(double)x/(double)BitmapInfo.bmiHeader.biWidth;
|
---|
731 | rgb=RGB(
|
---|
732 | LOBYTE(LOWORD(color1))+(int)(double)(LOBYTE(LOWORD(color2))-LOBYTE(LOWORD(color1)))*(ratio), //赤要素
|
---|
733 | HIBYTE(LOWORD(color1))+(int)(double)(HIBYTE(LOWORD(color2))-HIBYTE(LOWORD(color1)))*(ratio), //緑要素
|
---|
734 | LOBYTE(HIWORD(color1))+(int)(double)(LOBYTE(HIWORD(color2))-LOBYTE(HIWORD(color1)))*(ratio) //青要素
|
---|
735 | );
|
---|
736 | for(y=0;y<BitmapInfo.bmiHeader.biHeight;y++){
|
---|
737 | i2=y*i+x*3;
|
---|
738 | pByte[i2+2]=LOBYTE(LOWORD(rgb));
|
---|
739 | pByte[i2+1]=HIBYTE(LOWORD(rgb));
|
---|
740 | pByte[i2]=LOBYTE(HIWORD(rgb));
|
---|
741 | }
|
---|
742 | }
|
---|
743 |
|
---|
744 | ReleaseDC(GetDesktopWindow(),hdc);
|
---|
745 |
|
---|
746 | return hBitmap;
|
---|
747 | }
|
---|
748 | HICON CreateGrayIcon(HICON hBaseIcon){
|
---|
749 | ////////////////////////
|
---|
750 | // 淡色アイコンを生成
|
---|
751 | ////////////////////////
|
---|
752 |
|
---|
753 | HICON hGrayIcon;
|
---|
754 |
|
---|
755 | ICONINFO IconInfo;
|
---|
756 | GetIconInfo(hBaseIcon,&IconInfo);
|
---|
757 |
|
---|
758 |
|
---|
759 | //ビットマップを加工
|
---|
760 | BITMAP Bitmap;
|
---|
761 | GetObject(IconInfo.hbmColor,sizeof(Bitmap),&Bitmap);
|
---|
762 |
|
---|
763 | BITMAPINFO BitmapInfo;
|
---|
764 | memset(&BitmapInfo.bmiHeader,0,sizeof(BITMAPINFOHEADER));
|
---|
765 | BitmapInfo.bmiHeader.biSize=sizeof(BITMAPINFOHEADER);
|
---|
766 | BitmapInfo.bmiHeader.biWidth=Bitmap.bmWidth;
|
---|
767 | BitmapInfo.bmiHeader.biHeight=Bitmap.bmHeight;
|
---|
768 | BitmapInfo.bmiHeader.biPlanes=1;
|
---|
769 | BitmapInfo.bmiHeader.biBitCount=24;
|
---|
770 | BitmapInfo.bmiHeader.biCompression=BI_RGB;
|
---|
771 |
|
---|
772 | HDC hdc;
|
---|
773 | hdc=GetDC(GetDesktopWindow());
|
---|
774 |
|
---|
775 | BYTE *pByte;
|
---|
776 | pByte=(BYTE *)HeapAlloc(hHeap,0,Bitmap.bmWidth*Bitmap.bmHeight*sizeof(COLORREF));
|
---|
777 | GetDIBits(hdc,
|
---|
778 | IconInfo.hbmColor,
|
---|
779 | 0,
|
---|
780 | Bitmap.bmHeight,
|
---|
781 | (void *)pByte,
|
---|
782 | &BitmapInfo,
|
---|
783 | DIB_RGB_COLORS);
|
---|
784 |
|
---|
785 | int i,i2,x,y;
|
---|
786 | i=BitmapInfo.bmiHeader.biWidth*3;
|
---|
787 | if(i%sizeof(LONG)!=0) i+=sizeof(LONG)-(i%sizeof(LONG));
|
---|
788 | for(x=0;x<BitmapInfo.bmiHeader.biWidth;x++){
|
---|
789 | for(y=0;y<BitmapInfo.bmiHeader.biHeight;y++){
|
---|
790 | i2=y*i+x*3;
|
---|
791 | if(pByte[i2+2]==0&&pByte[i2+1]==0&&pByte[i2]==0){
|
---|
792 | //透明色
|
---|
793 | //何もしない
|
---|
794 | }
|
---|
795 | else{
|
---|
796 | double ratio=0.5; //明るさ
|
---|
797 |
|
---|
798 | pByte[i2+2]+=(BYTE)((double)(255-pByte[i2+2])*ratio);
|
---|
799 | pByte[i2+1]+=(BYTE)((double)(255-pByte[i2+1])*ratio);
|
---|
800 | pByte[i2]+=(BYTE)((double)(255-pByte[i2])*ratio);
|
---|
801 |
|
---|
802 | pByte[i2+2]=(BYTE)(((int)pByte[i2+2]+(int)pByte[i2+1]+(int)pByte[i2])/3);
|
---|
803 | pByte[i2+1]=pByte[i2+2];
|
---|
804 | pByte[i2]=pByte[i2+2];
|
---|
805 | }
|
---|
806 | }
|
---|
807 | }
|
---|
808 |
|
---|
809 | SetDIBits(hdc,
|
---|
810 | IconInfo.hbmColor,
|
---|
811 | 0,
|
---|
812 | Bitmap.bmHeight,
|
---|
813 | (void *)pByte,
|
---|
814 | &BitmapInfo,
|
---|
815 | DIB_RGB_COLORS);
|
---|
816 |
|
---|
817 | HeapDefaultFree(pByte);
|
---|
818 |
|
---|
819 | ReleaseDC(GetDesktopWindow(),hdc);
|
---|
820 |
|
---|
821 |
|
---|
822 | hGrayIcon=CreateIconIndirect(&IconInfo);
|
---|
823 |
|
---|
824 | //不要なビットマップを破棄
|
---|
825 | DeleteObject(IconInfo.hbmMask);
|
---|
826 | DeleteObject(IconInfo.hbmColor);
|
---|
827 |
|
---|
828 | return hGrayIcon;
|
---|
829 | }
|
---|
830 | void GetSize(SIZE *pSize,RECT *pRect){
|
---|
831 | pSize->cx=pRect->right-pRect->left;
|
---|
832 | pSize->cy=pRect->bottom-pRect->top;
|
---|
833 | }
|
---|
834 | BOOL HitTest(RECT *pRect,POINT *pPos){
|
---|
835 | if(pRect->left<=pPos->x&&pPos->x<pRect->right&&
|
---|
836 | pRect->top<=pPos->y&&pPos->y<pRect->bottom) return 1;
|
---|
837 | return 0;
|
---|
838 | }
|
---|
839 | BOOL Rectangle(HDC hdc,RECT *pRect){
|
---|
840 | return Rectangle(hdc,pRect->left,pRect->top,pRect->right,pRect->bottom);
|
---|
841 | }
|
---|
842 |
|
---|
843 | void ComboBox_SetSelText(HWND hCombo,char *lpszText){
|
---|
844 | SendMessage(hCombo,CB_SETCURSEL,
|
---|
845 | SendMessage(hCombo,CB_FINDSTRINGEXACT,0,(LPARAM)lpszText),
|
---|
846 | 0);
|
---|
847 | }
|
---|
848 |
|
---|
849 | void SetCursorByState(int state){
|
---|
850 | if(state==FRAME_UPPER_LEFT||state==FRAME_LOWER_RIGHT) SetCursor(LoadCursor(0,IDC_SIZENWSE));
|
---|
851 | else if(state==FRAME_UPPER_RIGHT||state==FRAME_LOWER_LEFT) SetCursor(LoadCursor(0,IDC_SIZENESW));
|
---|
852 | else if(state==FRAME_LEFT||state==FRAME_RIGHT) SetCursor(LoadCursor(0,IDC_SIZEWE));
|
---|
853 | else if(state==FRAME_UPPER||state==FRAME_LOWER) SetCursor(LoadCursor(0,IDC_SIZENS));
|
---|
854 | else if(state==FRAME_INSIDE) SetCursor(LoadCursor(0,IDC_SIZEALL));
|
---|
855 | else SetCursor(LoadCursor(0,IDC_ARROW));
|
---|
856 | }
|
---|
857 |
|
---|
858 | void SetTextEditColorDesign(TEXTEDIT_COLOR_INFO *pColorInfo,CTheme *pobj_Theme,BOOL bRedraw){
|
---|
859 | pColorInfo->rgbDefault=pobj_Theme->TextColorInfo.rgbDefault;
|
---|
860 | pColorInfo->rgbComment=pobj_Theme->TextColorInfo.rgbComment;
|
---|
861 | pColorInfo->rgbStatement=pobj_Theme->TextColorInfo.rgbStatement;
|
---|
862 | pColorInfo->rgbString=pobj_Theme->TextColorInfo.rgbString;
|
---|
863 | pColorInfo->rgbCursorBack=pobj_Theme->TextColorInfo.rgbCursorBack;
|
---|
864 | pColorInfo->rgbBackground=pobj_Theme->TextColorInfo.rgbBackground;
|
---|
865 |
|
---|
866 | //アクティブテーマにセット
|
---|
867 | lstrcpy(pobj_nv->szActiveTheme,pobj_Theme->m_name);
|
---|
868 |
|
---|
869 | //テーマ依存の描画リソースを取得
|
---|
870 | pobj_DBTheme->unlock();
|
---|
871 | pobj_DBTheme->lock();
|
---|
872 |
|
---|
873 | if(bRedraw){
|
---|
874 | //再描画
|
---|
875 | extern MDIINFO MdiInfo[MAX_WNDNUM];
|
---|
876 | int i;
|
---|
877 | for(i=0;i<MAX_WNDNUM;i++){
|
---|
878 | if(MdiInfo[i].hwnd){
|
---|
879 | if(IS_DOCUMENT_TEXT(MdiInfo[i].DocType)){
|
---|
880 | SetTextEditWordColor(i);
|
---|
881 | InvalidateRect(MdiInfo[i].pMdiTextEdit->hEdit,NULL,0);
|
---|
882 | }
|
---|
883 | }
|
---|
884 | }
|
---|
885 | }
|
---|
886 | }
|
---|
887 |
|
---|
888 | BOOL SetupProjectEditor(void){
|
---|
889 | extern HINSTANCE hInst;
|
---|
890 | int i;
|
---|
891 | char str[MAX_PATH],temporary[MAX_PATH];
|
---|
892 |
|
---|
893 |
|
---|
894 | //リソース用DLLをマッピング
|
---|
895 | #if defined(JPN)
|
---|
896 | //日本語リソース
|
---|
897 | sprintf(temporary,"%sSubOperation\\res.dll",pj_editor_Dir);
|
---|
898 | #else
|
---|
899 | //英語リソース
|
---|
900 | sprintf(temporary,"%sSubOperation\\res_e.dll",pj_editor_Dir);
|
---|
901 | #endif
|
---|
902 | hResInst=LoadLibrary(temporary);
|
---|
903 |
|
---|
904 | //アイコンリソースDLLをマッピング
|
---|
905 | sprintf(temporary,"%sSubOperation\\icon_res.dll",pj_editor_Dir);
|
---|
906 | hIconResInst=LoadLibrary(temporary);
|
---|
907 |
|
---|
908 | //LuxCtrl.dllをマッピング
|
---|
909 | sprintf(temporary,"%sSubOperation\\LuxCtrl.dll",pj_editor_Dir);
|
---|
910 | hLib_LuxCtrl=LoadLibrary(temporary);
|
---|
911 | if(!hLib_LuxCtrl){
|
---|
912 | MessageBox(0,"LuxCtrl.dllの読み込みに失敗しました。",APPLICATION_NAME,MB_OK|MB_ICONEXCLAMATION);
|
---|
913 | return 0;
|
---|
914 | }
|
---|
915 | LuxToolbar_CreateInstance=
|
---|
916 | (PROC_LuxToolbar_CreateInstance)GetProcAddress(hLib_LuxCtrl,"LuxToolbar_CreateInstance");
|
---|
917 |
|
---|
918 |
|
---|
919 | //モジュールディレクトリを取得
|
---|
920 | GetModuleFileName(hInst,temporary,MAX_PATH);
|
---|
921 | _splitpath(temporary,pj_editor_Dir,str,NULL,NULL);
|
---|
922 | lstrcat(pj_editor_Dir,str);
|
---|
923 |
|
---|
924 | //ヒープオブジェクトを作成
|
---|
925 | extern HANDLE hHeap;
|
---|
926 | hHeap=HeapCreate(HEAP_GENERATE_EXCEPTIONS,0,0);
|
---|
927 |
|
---|
928 |
|
---|
929 | //自動バックアップ用のディレクトリを生成
|
---|
930 | CreateBackupDir();
|
---|
931 |
|
---|
932 |
|
---|
933 | //COMを初期化
|
---|
934 | CoInitialize(0);
|
---|
935 |
|
---|
936 | //スクリーンサイズを取得
|
---|
937 | ScreenX=GetSystemMetrics(SM_CXSCREEN);
|
---|
938 | ScreenY=GetSystemMetrics(SM_CYSCREEN);
|
---|
939 |
|
---|
940 | //コンパイラ名をセット(デフォルトはWin32)
|
---|
941 | extern char *lpszCompilerName;
|
---|
942 | lpszCompilerName=WIN32_COMPILER_NAME;
|
---|
943 |
|
---|
944 | //不揮発性のデータを取得
|
---|
945 | pobj_nv=new CNonVolatile;
|
---|
946 | pobj_nv->load();
|
---|
947 |
|
---|
948 |
|
---|
949 | //アルファブレンド用のAPIを取得
|
---|
950 | extern FWINLAYER pSetLayeredWindowAttributes;
|
---|
951 | extern HINSTANCE hUser32Lib;
|
---|
952 | hUser32Lib=LoadLibrary("user32.dll");
|
---|
953 | pSetLayeredWindowAttributes=(FWINLAYER)GetProcAddress(hUser32Lib,"pSetLayeredWindowAttributes");
|
---|
954 |
|
---|
955 |
|
---|
956 |
|
---|
957 |
|
---|
958 | /////////////////////
|
---|
959 | // フォントを定義
|
---|
960 | /////////////////////
|
---|
961 |
|
---|
962 | //パラメータ ヒント フォント
|
---|
963 | extern METHODCHECKINFO MethodCheckInfo;
|
---|
964 | MethodCheckInfo.hFont=CreateFontIndirect(&MethodCheckInfo.LogFont);
|
---|
965 | i=MethodCheckInfo.LogFont.lfWeight;
|
---|
966 | MethodCheckInfo.LogFont.lfWeight=FW_BOLD;
|
---|
967 | MethodCheckInfo.hBoldFont=CreateFontIndirect(&MethodCheckInfo.LogFont);
|
---|
968 | MethodCheckInfo.LogFont.lfWeight=i;
|
---|
969 |
|
---|
970 | //ステータスバー フォント
|
---|
971 | LOGFONT LogFont;
|
---|
972 | extern HFONT hStatusFont;
|
---|
973 | LogFont.lfHeight=-12;
|
---|
974 | LogFont.lfWidth=0;
|
---|
975 | LogFont.lfEscapement=0;
|
---|
976 | LogFont.lfOrientation=0;
|
---|
977 | LogFont.lfWeight=FW_REGULAR;
|
---|
978 | LogFont.lfItalic=NULL;
|
---|
979 | LogFont.lfUnderline=NULL;
|
---|
980 | LogFont.lfStrikeOut=NULL;
|
---|
981 | LogFont.lfCharSet=SHIFTJIS_CHARSET;
|
---|
982 | LogFont.lfOutPrecision=OUT_STRING_PRECIS;
|
---|
983 | LogFont.lfClipPrecision=CLIP_STROKE_PRECIS;
|
---|
984 | LogFont.lfQuality=DRAFT_QUALITY;
|
---|
985 | LogFont.lfPitchAndFamily=VARIABLE_PITCH;
|
---|
986 | sprintf(LogFont.lfFaceName,"MS Pゴシック");
|
---|
987 | hStatusFont=CreateFontIndirect(&LogFont);
|
---|
988 |
|
---|
989 | //ハイパーリンク フォント
|
---|
990 | extern HFONT hHyperLinkFont;
|
---|
991 | LogFont.lfHeight=-12;
|
---|
992 | LogFont.lfWidth=0;
|
---|
993 | LogFont.lfEscapement=0;
|
---|
994 | LogFont.lfOrientation=0;
|
---|
995 | LogFont.lfWeight=FW_REGULAR;
|
---|
996 | LogFont.lfItalic=NULL;
|
---|
997 | LogFont.lfUnderline=TRUE;
|
---|
998 | LogFont.lfStrikeOut=NULL;
|
---|
999 | LogFont.lfCharSet=SHIFTJIS_CHARSET;
|
---|
1000 | LogFont.lfOutPrecision=OUT_STRING_PRECIS;
|
---|
1001 | LogFont.lfClipPrecision=CLIP_STROKE_PRECIS;
|
---|
1002 | LogFont.lfQuality=DRAFT_QUALITY;
|
---|
1003 | LogFont.lfPitchAndFamily=VARIABLE_PITCH;
|
---|
1004 | sprintf(LogFont.lfFaceName,"MS Pゴシック");
|
---|
1005 | hHyperLinkFont=CreateFontIndirect(&LogFont);
|
---|
1006 |
|
---|
1007 | //ルーラー フォント
|
---|
1008 | extern HFONT hRulerFont;
|
---|
1009 | LogFont.lfHeight=-10;
|
---|
1010 | LogFont.lfWidth=0;
|
---|
1011 | LogFont.lfEscapement=0;
|
---|
1012 | LogFont.lfOrientation=0;
|
---|
1013 | LogFont.lfWeight=FW_REGULAR;
|
---|
1014 | LogFont.lfItalic=NULL;
|
---|
1015 | LogFont.lfUnderline=0;
|
---|
1016 | LogFont.lfStrikeOut=NULL;
|
---|
1017 | LogFont.lfCharSet=SHIFTJIS_CHARSET;
|
---|
1018 | LogFont.lfOutPrecision=OUT_STRING_PRECIS;
|
---|
1019 | LogFont.lfClipPrecision=CLIP_STROKE_PRECIS;
|
---|
1020 | LogFont.lfQuality=DRAFT_QUALITY;
|
---|
1021 | LogFont.lfPitchAndFamily=VARIABLE_PITCH;
|
---|
1022 | sprintf(LogFont.lfFaceName,"MS ゴシック");
|
---|
1023 | hRulerFont=CreateFontIndirect(&LogFont);
|
---|
1024 |
|
---|
1025 | //行番号の描画用
|
---|
1026 | extern HFONT hFont_LineNumber;
|
---|
1027 | LogFont.lfHeight=-11;
|
---|
1028 | LogFont.lfWidth=0;
|
---|
1029 | LogFont.lfEscapement=0;
|
---|
1030 | LogFont.lfOrientation=0;
|
---|
1031 | LogFont.lfWeight=FW_BOLD;
|
---|
1032 | LogFont.lfItalic=NULL;
|
---|
1033 | LogFont.lfUnderline=NULL;
|
---|
1034 | LogFont.lfStrikeOut=NULL;
|
---|
1035 | LogFont.lfCharSet=ANSI_CHARSET;
|
---|
1036 | LogFont.lfOutPrecision=OUT_STRING_PRECIS;
|
---|
1037 | LogFont.lfClipPrecision=CLIP_STROKE_PRECIS;
|
---|
1038 | LogFont.lfQuality=DRAFT_QUALITY;
|
---|
1039 | LogFont.lfPitchAndFamily=VARIABLE_PITCH;
|
---|
1040 | sprintf(LogFont.lfFaceName,"Courier New");
|
---|
1041 | hFont_LineNumber=CreateFontIndirect(&LogFont);
|
---|
1042 |
|
---|
1043 | //メニューフォント
|
---|
1044 | NONCLIENTMETRICS NCMetrics;
|
---|
1045 | NCMetrics.cbSize = sizeof( NONCLIENTMETRICS );
|
---|
1046 | SystemParametersInfo( SPI_GETNONCLIENTMETRICS, sizeof( NONCLIENTMETRICS ), &NCMetrics, 0 );
|
---|
1047 | hMenuFont=CreateFontIndirect(&NCMetrics.lfMenuFont);
|
---|
1048 |
|
---|
1049 |
|
---|
1050 |
|
---|
1051 | //背景ブラシ
|
---|
1052 | extern HBRUSH h3DFaceBackBrush;
|
---|
1053 | h3DFaceBackBrush=CreateSolidBrush(GetSysColor(COLOR_3DFACE));
|
---|
1054 |
|
---|
1055 | //アイコン
|
---|
1056 | extern HICON hOwnerIcon,hBasicProgramIcon,hTextDocumentIcon,hWindowDocumentIcon;
|
---|
1057 | hOwnerIcon=(HICON)LoadImage(hInst,MAKEINTRESOURCE(IDI_MAIN),IMAGE_ICON,16,16,LR_DEFAULTCOLOR);
|
---|
1058 | hBasicProgramIcon=(HICON)LoadImage(hResInst,MAKEINTRESOURCE(IDI_BASICPROGRAM),IMAGE_ICON,16,16,LR_DEFAULTCOLOR);
|
---|
1059 | hTextDocumentIcon=(HICON)LoadImage(hResInst,MAKEINTRESOURCE(IDI_TEXTDOCUMENT),IMAGE_ICON,16,16,LR_DEFAULTCOLOR);
|
---|
1060 | hWindowDocumentIcon=(HICON)LoadImage(hResInst,MAKEINTRESOURCE(IDI_WINDOW),IMAGE_ICON,16,16,LR_DEFAULTCOLOR);
|
---|
1061 |
|
---|
1062 |
|
---|
1063 |
|
---|
1064 |
|
---|
1065 | //メインメニュー
|
---|
1066 | pobj_MainMenu=new CMenuEx(LoadMenu(hResInst,MAKEINTRESOURCE(IDR_MAINMENU)));
|
---|
1067 |
|
---|
1068 | pobj_MainMenu->InitOwnerDraw(1); //オーナー描画の初期化
|
---|
1069 |
|
---|
1070 | CSubMenuEx *pobj_FileMenu;
|
---|
1071 | pobj_FileMenu=pobj_MainMenu->ppobj_MenuItemData[0]->pobj_SubMenu;
|
---|
1072 |
|
---|
1073 | //未完成
|
---|
1074 | extern HMENU hFirstMainMenu;
|
---|
1075 | hFirstMainMenu=0;
|
---|
1076 |
|
---|
1077 | //「最近使ったファイル」サブメニューを取得(と同時にも正規のメニュー文字列を指定)
|
---|
1078 | for(i=0;i<pobj_FileMenu->iMenuItemNum;i++){
|
---|
1079 | if(pobj_FileMenu->ppobj_MenuItemData[i]->str){
|
---|
1080 | if(lstrcmp(pobj_FileMenu->ppobj_MenuItemData[i]->str,"FileHistory")==0){
|
---|
1081 | pobj_FileMenu->RenameMenuItem(i,"最近使ったファイル(&F)");
|
---|
1082 |
|
---|
1083 | extern CSubMenuEx *pobj_FileHistoryMenu;
|
---|
1084 | pobj_FileHistoryMenu=pobj_FileMenu->ppobj_MenuItemData[i]->pobj_SubMenu;
|
---|
1085 | }
|
---|
1086 |
|
---|
1087 | #ifndef THETEXT
|
---|
1088 | //「最近使ったプロジェクト」サブメニューを取得(と同時にも正規のメニュー文字列を指定)
|
---|
1089 | //※ProjectEditorのみ
|
---|
1090 | if(lstrcmp(pobj_FileMenu->ppobj_MenuItemData[i]->str,"ProjectHistory")==0){
|
---|
1091 | pobj_FileMenu->RenameMenuItem(i,"最近使ったプロジェクト(&J)");
|
---|
1092 |
|
---|
1093 | extern CSubMenuEx *pobj_ProjectHistoryMenu;
|
---|
1094 | pobj_ProjectHistoryMenu=pobj_FileMenu->ppobj_MenuItemData[i]->pobj_SubMenu;
|
---|
1095 | }
|
---|
1096 | #endif
|
---|
1097 | }
|
---|
1098 | }
|
---|
1099 |
|
---|
1100 | #define ICONSET(itemID,iconID) pobj_MainMenu->SetIcon(itemID,(HICON)LoadImage(hIconResInst,MAKEINTRESOURCE(iconID),IMAGE_ICON,16,16,0));
|
---|
1101 | //メニューアイコンをセット
|
---|
1102 |
|
---|
1103 | //ファイル
|
---|
1104 | ICONSET(IDM_NEW,IDI_NEW);
|
---|
1105 | ICONSET(IDM_OPEN,IDI_OPEN);
|
---|
1106 | ICONSET(IDM_SAVE,IDI_SAVE);
|
---|
1107 | ICONSET(IDM_ALLSAVE,IDI_ALLSAVE);
|
---|
1108 | ICONSET(IDM_PREVIEW,IDI_PREVIEW);
|
---|
1109 | ICONSET(IDM_PRINTOUT,IDI_PRINT);
|
---|
1110 |
|
---|
1111 | //編集
|
---|
1112 | ICONSET(IDM_CUT,IDI_CUT);
|
---|
1113 | ICONSET(IDM_COPY,IDI_COPY);
|
---|
1114 | ICONSET(IDM_PASTE,IDI_PASTE);
|
---|
1115 | ICONSET(IDM_UNDO,IDI_UNDO);
|
---|
1116 | ICONSET(IDM_REDO,IDI_REDO);
|
---|
1117 | ICONSET(IDM_FIND,IDI_FIND);
|
---|
1118 |
|
---|
1119 | //表示
|
---|
1120 | ICONSET(IDM_SET,IDI_OPTION);
|
---|
1121 |
|
---|
1122 | //変換
|
---|
1123 | ICONSET(IDM_CONV_ALPHA_SMALL,IDI_CONV_ALPHA_SMALL);
|
---|
1124 | ICONSET(IDM_CONV_ALPHA_BIG,IDI_CONV_ALPHA_BIG);
|
---|
1125 | ICONSET(IDM_CONV_HALF,IDI_CONV_HALF);
|
---|
1126 | ICONSET(IDM_CONV_MULTI,IDI_CONV_MULTI);
|
---|
1127 | ICONSET(IDM_CONV_KATAKANA,IDI_CONV_KATAKANA);
|
---|
1128 | ICONSET(IDM_CONV_HIRAGANA,IDI_CONV_HIRAGANA);
|
---|
1129 |
|
---|
1130 | //ヘルプ
|
---|
1131 | ICONSET(IDM_TOPIC,IDI_HELP);
|
---|
1132 |
|
---|
1133 | #ifdef THETEXT
|
---|
1134 | //TheTextのみの機能
|
---|
1135 | ICONSET(IDM_STRING_COUNT,IDI_STRINGCOUNT);
|
---|
1136 | #else
|
---|
1137 | //ProjectEditorのみの機能
|
---|
1138 |
|
---|
1139 | //リリース
|
---|
1140 | ICONSET(IDM_RELEASECOMPILE,IDI_RELEASECOMPILE);
|
---|
1141 | ICONSET(IDM_RELEASERUN,IDI_RELEASERUN);
|
---|
1142 |
|
---|
1143 | //デバッグ
|
---|
1144 | ICONSET(IDM_ATTACH,IDI_ATTACH);
|
---|
1145 | ICONSET(IDM_DEBUGCOMPILE,IDI_DEBUGCOMPILE);
|
---|
1146 | ICONSET(IDM_DEBUG,IDI_DEBUGRUN);
|
---|
1147 | ICONSET(IDM_BREAKPOINT,IDI_BREAKPOINT);
|
---|
1148 | ICONSET(IDM_STEP_IN,IDI_STEPIN);
|
---|
1149 | ICONSET(IDM_STEP_OVER,IDI_STEPOVER);
|
---|
1150 | ICONSET(IDM_STEP_CURSOR,IDI_STEPTOCURSOR);
|
---|
1151 | ICONSET(IDM_DEBUG_PAUSE,IDI_DEBUGPAUSE);
|
---|
1152 | ICONSET(IDM_DEBUG_STOP,IDI_DEBUGSTOP);
|
---|
1153 |
|
---|
1154 | //コミュニティ
|
---|
1155 | ICONSET(IDM_COMMUNITY,IDI_COMMUNITY_MAIN);
|
---|
1156 | ICONSET(IDM_COMMU_SEARCH,IDI_COMMUNITY_FIND);
|
---|
1157 | ICONSET(IDM_COMMU_PM,IDI_COMMUNITY_PRIVATEMSG);
|
---|
1158 | ICONSET(ID_COMMU_FORUM1,IDI_COMMUNITY_FORUM);
|
---|
1159 | ICONSET(ID_COMMU_FORUM2,IDI_COMMUNITY_FORUM);
|
---|
1160 | ICONSET(ID_COMMU_FORUM3,IDI_COMMUNITY_FORUM);
|
---|
1161 | ICONSET(ID_COMMU_FORUM4,IDI_COMMUNITY_FORUM);
|
---|
1162 | ICONSET(ID_COMMU_FORUM5,IDI_COMMUNITY_FORUM);
|
---|
1163 | ICONSET(ID_COMMU_FORUM6,IDI_COMMUNITY_FORUM_SECRET);
|
---|
1164 | ICONSET(ID_COMMU_FORUM7,IDI_COMMUNITY_FORUM);
|
---|
1165 | ICONSET(ID_COMMU_FORUM8,IDI_COMMUNITY_FORUM);
|
---|
1166 | #endif
|
---|
1167 |
|
---|
1168 | #undef ICONSET
|
---|
1169 |
|
---|
1170 |
|
---|
1171 |
|
---|
1172 |
|
---|
1173 | extern HMENU hEditMenuBase,hEditMenu;
|
---|
1174 | hEditMenuBase=LoadMenu(hResInst,MAKEINTRESOURCE(IDR_EDITMENU));
|
---|
1175 | hEditMenu=GetSubMenu(hEditMenuBase,0);
|
---|
1176 |
|
---|
1177 | extern HMENU hRebarMenuBase,hRebarMenu;
|
---|
1178 | hRebarMenuBase=LoadMenu(hResInst,MAKEINTRESOURCE(IDR_REBARMENU));
|
---|
1179 | hRebarMenu=GetSubMenu(hRebarMenuBase,0);
|
---|
1180 |
|
---|
1181 | extern HMENU hTabMenuBase,hTabMenu,hTabColorMenu;
|
---|
1182 | hTabMenuBase=LoadMenu(hResInst,MAKEINTRESOURCE(IDR_TABMENU));
|
---|
1183 | hTabMenu=GetSubMenu(hTabMenuBase,0);
|
---|
1184 | hTabColorMenu=GetSubMenu(hTabMenu,0);
|
---|
1185 |
|
---|
1186 | extern HMENU hFileTreeMenuBase;
|
---|
1187 | hFileTreeMenuBase=LoadMenu(hResInst,MAKEINTRESOURCE(IDR_PROJECTVIEW_FILETREEMENU));
|
---|
1188 |
|
---|
1189 | extern HMENU hProcedureTreeMenuBase;
|
---|
1190 | hProcedureTreeMenuBase=LoadMenu(hResInst,MAKEINTRESOURCE(IDR_PROJECTVIEW_PROCEDURETREEMENU));
|
---|
1191 |
|
---|
1192 | extern HMENU hMaterialTreeMenuBase;
|
---|
1193 | hMaterialTreeMenuBase=LoadMenu(hResInst,MAKEINTRESOURCE(IDR_PROJECTVIEW_MATERIALTREEMENU));
|
---|
1194 |
|
---|
1195 | extern HMENU hRadMenuBase;
|
---|
1196 | hRadMenuBase=LoadMenu(hResInst,MAKEINTRESOURCE(IDR_RADCONTEXTMENU));
|
---|
1197 |
|
---|
1198 | //クリップボードのデータ形式(RAD用)を新規登録
|
---|
1199 | extern DWORD dwRadClipboardID;
|
---|
1200 | dwRadClipboardID=RegisterClipboardFormat("ProjectEditor-RAD");
|
---|
1201 |
|
---|
1202 | //256色の標準パレットを読み込む
|
---|
1203 | extern RGBQUAD DefaultColorTable256[256];
|
---|
1204 | HANDLE hFile;
|
---|
1205 | DWORD dw;
|
---|
1206 | sprintf(temporary,"%sSubOperation\\8bit.plt",pj_editor_Dir);
|
---|
1207 | hFile=CreateFile(temporary,GENERIC_READ,FILE_SHARE_READ|FILE_SHARE_WRITE,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
|
---|
1208 | if(hFile==INVALID_HANDLE_VALUE){
|
---|
1209 | //"\"%s\" ファイルの読み込みに失敗しました。"
|
---|
1210 | sprintf(str,STRING_ERROR_CANT_FILEOPEN,temporary);
|
---|
1211 | MessageBox(NULL,str,STRING_ERROR,MB_OK|MB_ICONEXCLAMATION);
|
---|
1212 | return 0;
|
---|
1213 | }
|
---|
1214 | ReadFile(hFile,DefaultColorTable256,sizeof(RGBQUAD)*256,&dw,NULL);
|
---|
1215 | CloseHandle(hFile);
|
---|
1216 |
|
---|
1217 |
|
---|
1218 |
|
---|
1219 | //デザインテーマオブジェクトを生成
|
---|
1220 | pobj_DBTheme=new CDBTheme();
|
---|
1221 |
|
---|
1222 |
|
---|
1223 | /////////////////////////
|
---|
1224 | // カラーデザインを設定
|
---|
1225 | CTheme *pobj_Theme;
|
---|
1226 | pobj_Theme=pobj_DBTheme->GetActiveTheme();
|
---|
1227 | if(!pobj_Theme) pobj_Theme=pobj_DBTheme->ppobj_Theme[0];
|
---|
1228 |
|
---|
1229 | SetTextEditColorDesign(&tci,pobj_Theme,0);
|
---|
1230 |
|
---|
1231 |
|
---|
1232 | #ifndef THETEXT
|
---|
1233 | /////////////////////////////////////////////////////
|
---|
1234 | // ProjectEditorのみ
|
---|
1235 | /////////////////////////////////////////////////////
|
---|
1236 |
|
---|
1237 |
|
---|
1238 | //クラスビュー管理オブジェクトを生成
|
---|
1239 | pobj_ClassTreeView=new CClassTreeView();
|
---|
1240 |
|
---|
1241 |
|
---|
1242 | /////////////////////////
|
---|
1243 | // basic.sbpの内容を取得
|
---|
1244 | /////////////////////////
|
---|
1245 |
|
---|
1246 | extern char *pHeaderBuf;
|
---|
1247 | sprintf(temporary,"%sbasic.sbp",pobj_nv->szIncludeDir);
|
---|
1248 | GetFullPath( temporary, pj_editor_Dir );
|
---|
1249 | pHeaderBuf=ReadBuffer(temporary);
|
---|
1250 |
|
---|
1251 | if( !pHeaderBuf ){
|
---|
1252 | pHeaderBuf=(char *)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,1);
|
---|
1253 | }
|
---|
1254 |
|
---|
1255 | //ファイルをインクルード
|
---|
1256 | pHeaderBuf=IncludeFiles(pHeaderBuf);
|
---|
1257 |
|
---|
1258 |
|
---|
1259 | //デバッガ管理オブジェクトを生成
|
---|
1260 | pobj_Debugger=new CDebugger();
|
---|
1261 | #endif
|
---|
1262 |
|
---|
1263 |
|
---|
1264 | //ブレークポイント管理オブジェクトを生成
|
---|
1265 | extern CDBBreakPoint *pobj_DBBreakPoint;
|
---|
1266 | pobj_DBBreakPoint=new CDBBreakPoint();
|
---|
1267 |
|
---|
1268 |
|
---|
1269 | return 1;
|
---|
1270 | }
|
---|
1271 | void EndProjectEditor(void){
|
---|
1272 |
|
---|
1273 | #ifndef THETEXT
|
---|
1274 | /////////////////////////////////////////////////////
|
---|
1275 | // ProjectEditorのみ
|
---|
1276 | /////////////////////////////////////////////////////
|
---|
1277 |
|
---|
1278 |
|
---|
1279 | //クラスビュー管理オブジェクトを破棄
|
---|
1280 | delete pobj_ClassTreeView;
|
---|
1281 | pobj_ClassTreeView=0;
|
---|
1282 |
|
---|
1283 | //basic.sbpのソースコードバッファを解放
|
---|
1284 | extern char *pHeaderBuf;
|
---|
1285 | HeapDefaultFree(pHeaderBuf);
|
---|
1286 |
|
---|
1287 | //デバッガ管理オブジェクトを破棄
|
---|
1288 | delete pobj_Debugger;
|
---|
1289 | #endif
|
---|
1290 |
|
---|
1291 | //ブレークポイント管理オブジェクトを破棄
|
---|
1292 | extern CDBBreakPoint *pobj_DBBreakPoint;
|
---|
1293 | delete pobj_DBBreakPoint;
|
---|
1294 |
|
---|
1295 | //デザインテーマオブジェクトを破棄
|
---|
1296 | delete pobj_DBTheme;
|
---|
1297 |
|
---|
1298 | //不揮発性のデータを保存
|
---|
1299 | pobj_nv->save();
|
---|
1300 | delete pobj_nv;
|
---|
1301 | pobj_nv=0;
|
---|
1302 |
|
---|
1303 | //メインメニューオブジェクトを破棄
|
---|
1304 | delete pobj_MainMenu;
|
---|
1305 | pobj_MainMenu=0;
|
---|
1306 |
|
---|
1307 | extern HFONT hStatusFont;
|
---|
1308 | DeleteObject(hStatusFont);
|
---|
1309 | extern HFONT hHyperLinkFont;
|
---|
1310 | DeleteObject(hHyperLinkFont);
|
---|
1311 | extern HFONT hRulerFont;
|
---|
1312 | DeleteObject(hRulerFont);
|
---|
1313 | extern HFONT hFont_LineNumber;
|
---|
1314 | DeleteObject(hFont_LineNumber);
|
---|
1315 | extern METHODCHECKINFO MethodCheckInfo;
|
---|
1316 | DeleteObject(MethodCheckInfo.hFont);
|
---|
1317 | DeleteObject(MethodCheckInfo.hBoldFont);
|
---|
1318 | extern HICON hOwnerIcon,hBasicProgramIcon,hTextDocumentIcon,hWindowDocumentIcon;
|
---|
1319 | DestroyIcon(hOwnerIcon);
|
---|
1320 | DestroyIcon(hBasicProgramIcon);
|
---|
1321 | DestroyIcon(hTextDocumentIcon);
|
---|
1322 | DestroyIcon(hWindowDocumentIcon);
|
---|
1323 | extern HMENU hEditMenuBase,hRebarMenuBase,hTabMenuBase;
|
---|
1324 | DestroyMenu(hEditMenuBase);
|
---|
1325 | DestroyMenu(hRebarMenuBase);
|
---|
1326 | DestroyMenu(hTabMenuBase);
|
---|
1327 | extern HMENU hFileTreeMenuBase;
|
---|
1328 | DestroyMenu(hFileTreeMenuBase);
|
---|
1329 | extern HMENU hProcedureTreeMenuBase;
|
---|
1330 | DestroyMenu(hProcedureTreeMenuBase);
|
---|
1331 | extern HMENU hMaterialTreeMenuBase;
|
---|
1332 | DestroyMenu(hMaterialTreeMenuBase);
|
---|
1333 | extern HMENU hRadMenuBase;
|
---|
1334 | DestroyMenu(hRadMenuBase);
|
---|
1335 |
|
---|
1336 | //背景ブラシ
|
---|
1337 | extern HBRUSH h3DFaceBackBrush;
|
---|
1338 | DeleteObject(h3DFaceBackBrush);
|
---|
1339 |
|
---|
1340 | //スタンダードツールバーを破棄
|
---|
1341 | if(pobj_StandardToolbar){
|
---|
1342 | pobj_StandardToolbar->Release();
|
---|
1343 | pobj_StandardToolbar=0;
|
---|
1344 | }
|
---|
1345 |
|
---|
1346 | //ビルドツールバーを破棄
|
---|
1347 | if(pobj_ReleaseToolbar){
|
---|
1348 | pobj_ReleaseToolbar->Release();
|
---|
1349 | pobj_ReleaseToolbar=0;
|
---|
1350 | }
|
---|
1351 |
|
---|
1352 | //デバッガ用ツールバーを破棄
|
---|
1353 | if(pobj_DebuggerToolbar){
|
---|
1354 | pobj_DebuggerToolbar->Release();
|
---|
1355 | pobj_DebuggerToolbar=0;
|
---|
1356 | }
|
---|
1357 |
|
---|
1358 | //ヒープオブジェクトを解放
|
---|
1359 | extern HANDLE hHeap;
|
---|
1360 | HeapDestroy(hHeap);
|
---|
1361 |
|
---|
1362 | //DLLを解放
|
---|
1363 | FreeLibrary(hResInst);
|
---|
1364 | FreeLibrary(hIconResInst);
|
---|
1365 | FreeLibrary(hLib_LuxCtrl);
|
---|
1366 |
|
---|
1367 | //アルファブレンド用のAPIを解放
|
---|
1368 | extern HINSTANCE hUser32Lib;
|
---|
1369 | FreeLibrary(hUser32Lib);
|
---|
1370 |
|
---|
1371 |
|
---|
1372 |
|
---|
1373 |
|
---|
1374 | //////////////////////////////////////
|
---|
1375 | // バックアップ用ファイルを削除
|
---|
1376 | //////////////////////////////////////
|
---|
1377 | extern char szBackupDirPath[MAX_PATH];
|
---|
1378 | RemoveDirectoryStrong(szBackupDirPath);
|
---|
1379 |
|
---|
1380 | }
|
---|
1381 |
|
---|
1382 | //各ウィンドウ生成
|
---|
1383 | void SetupWindow(HWND hwnd){
|
---|
1384 | extern HINSTANCE hInst;
|
---|
1385 | extern HMENU hFirstMainMenu;
|
---|
1386 | RECT rect;
|
---|
1387 | CLIENTCREATESTRUCT ccs;
|
---|
1388 |
|
---|
1389 | INITCOMMONCONTROLSEX InitCommCtrl;
|
---|
1390 | InitCommCtrl.dwSize=sizeof(INITCOMMONCONTROLSEX);
|
---|
1391 | InitCommCtrl.dwICC=ICC_COOL_CLASSES|ICC_PAGESCROLLER_CLASS|ICC_WIN95_CLASSES|ICC_TAB_CLASSES;
|
---|
1392 | InitCommonControlsEx(&InitCommCtrl);
|
---|
1393 |
|
---|
1394 | //タブウィンドウ
|
---|
1395 | pobj_MainTab=new CMainTab(hwnd);
|
---|
1396 |
|
---|
1397 | //MDIの親ウィンドウ(クライアントウィンドウ)を作成
|
---|
1398 | ccs.hWindowMenu=hFirstMainMenu;
|
---|
1399 | ccs.idFirstChild=ID_FIRSTCHILD;
|
---|
1400 | GetClientRect(hwnd,&rect);
|
---|
1401 | hClient=CreateWindowEx(WS_EX_CLIENTEDGE,"MDICLIENT",NULL,
|
---|
1402 | WS_CHILD|WS_CLIPCHILDREN|WS_CLIPSIBLINGS|WS_VISIBLE,
|
---|
1403 | 0,0,0,0,
|
---|
1404 | hwnd,(HMENU)1,hInst,(LPSTR)&ccs);
|
---|
1405 |
|
---|
1406 | //レバーオブジェクトを生成
|
---|
1407 | pobj_Rebar=new CMainRebar(hwnd);
|
---|
1408 |
|
---|
1409 | //ステータスバー
|
---|
1410 | extern HWND hStatusBar;
|
---|
1411 | extern HFONT hStatusFont;
|
---|
1412 | hStatusBar=CreateStatusWindow(
|
---|
1413 | WS_VISIBLE|WS_CHILD|WS_CLIPSIBLINGS|SBARS_SIZEGRIP|CCS_BOTTOM,
|
---|
1414 | NULL,hwnd,NULL);
|
---|
1415 | SendMessage(hStatusBar,WM_SETFONT,(long)hStatusFont,0);
|
---|
1416 |
|
---|
1417 | //プロジェクト ビュー
|
---|
1418 | extern HWND hProjectView;
|
---|
1419 | extern HWND hProjectView_ToolWindow;
|
---|
1420 | RECT *prc;
|
---|
1421 | prc=&pobj_nv->rectProjectView;
|
---|
1422 | hProjectView_ToolWindow=CreateWindowEx(WS_EX_TOOLWINDOW,"ProjectView_ToolWindow","ProjectView",
|
---|
1423 | WS_POPUP|WS_CAPTION|WS_SYSMENU|WS_THICKFRAME|WS_CLIPCHILDREN,
|
---|
1424 | prc->left,prc->top,prc->right-prc->left,prc->bottom-prc->top,
|
---|
1425 | hwnd,0,hInst,0);
|
---|
1426 | hProjectView=CreateWindowEx(WS_EX_STATICEDGE,"ProjectView","ProjectView",
|
---|
1427 | WS_CHILD|WS_CLIPCHILDREN,
|
---|
1428 | 0,0,0,0,
|
---|
1429 | hwnd,0,hInst,0);
|
---|
1430 | if(pobj_nv->bClipProjectView==0){
|
---|
1431 | SetWindowLong(hProjectView,GWL_EXSTYLE,0);
|
---|
1432 | SetParent(hProjectView,hProjectView_ToolWindow);
|
---|
1433 | ResizeProjectView_ToolWindow();
|
---|
1434 | }
|
---|
1435 |
|
---|
1436 | //メニュー状態を設定
|
---|
1437 | ResetState_DocMenu();
|
---|
1438 |
|
---|
1439 |
|
---|
1440 | //SideWebを生成
|
---|
1441 | pobj_SideWeb=new CSideWeb(hwnd);
|
---|
1442 | }
|
---|
1443 |
|
---|
1444 | //実行コマンド
|
---|
1445 | BOOL SetRunning(HWND hChild){
|
---|
1446 | extern MDIINFO MdiInfo[MAX_WNDNUM];
|
---|
1447 | extern LPSTR DefFileFilter;
|
---|
1448 | int WndNum;
|
---|
1449 | char temporary[MAX_PATH],temp2[MAX_PATH];
|
---|
1450 | HANDLE hFind;
|
---|
1451 | WIN32_FIND_DATA wfd;
|
---|
1452 |
|
---|
1453 | extern char *lpszCompilerName;
|
---|
1454 | sprintf(temporary,"%s%s",pj_editor_Dir,lpszCompilerName);
|
---|
1455 | hFind=FindFirstFile(temporary,&wfd);
|
---|
1456 | if(hFind==INVALID_HANDLE_VALUE){
|
---|
1457 | //"BasicCompiler.exe が見つかりません"
|
---|
1458 | MessageBox(hOwner,STRING_ERROR_NOBASICCOMPILER,STRING_ERROR,MB_OK|MB_ICONEXCLAMATION);
|
---|
1459 | return FALSE;
|
---|
1460 | }
|
---|
1461 | FindClose(hFind);
|
---|
1462 |
|
---|
1463 | WndNum=GetWndNum(hChild);
|
---|
1464 | if(IS_DOCUMENT_TEXT(MdiInfo[WndNum].DocType)){
|
---|
1465 | if(MdiInfo[WndNum].path[0]=='\0'){
|
---|
1466 | //"保存先のファイルを指定してください"
|
---|
1467 | if(!GetFilePathDialog(hOwner,temp2,DefFileFilter,STRING_FILESAVETITLE_DEFAULT,0)) return FALSE;
|
---|
1468 |
|
---|
1469 | if(!SaveDocument(hChild,temp2)) return 0;
|
---|
1470 | }
|
---|
1471 | else{
|
---|
1472 | if( MdiInfo[WndNum].pMdiTextEdit->IsModified() ){
|
---|
1473 | if(!SaveDocument(hChild,NULL)) return 0;
|
---|
1474 | }
|
---|
1475 | else{
|
---|
1476 | if(hFind=FindFirstFile(MdiInfo[WndNum].path,&wfd)){
|
---|
1477 | if(hFind==INVALID_HANDLE_VALUE){
|
---|
1478 | if(!SaveDocument(hChild,NULL)) return 0;
|
---|
1479 | }
|
---|
1480 | else FindClose(hFind);
|
---|
1481 | }
|
---|
1482 | }
|
---|
1483 | }
|
---|
1484 | }
|
---|
1485 | return 1;
|
---|
1486 | }
|
---|
1487 |
|
---|
1488 | BOOL IsNeedCompile(char *FileName,BOOL bDebug){
|
---|
1489 | char temporary[MAX_PATH],temp2[MAX_PATH],temp3[MAX_PATH];
|
---|
1490 | HANDLE hFind,hFile;
|
---|
1491 | WIN32_FIND_DATA wfd;
|
---|
1492 | FILETIME SourceTime,ExeTime;
|
---|
1493 |
|
---|
1494 | _splitpath(FileName,temporary,temp2,temp3,NULL);
|
---|
1495 | lstrcat(temporary,temp2);
|
---|
1496 | lstrcat(temporary,temp3);
|
---|
1497 | if(bDebug) lstrcat(temporary,"_debug.exe");
|
---|
1498 | else lstrcat(temporary,".exe");
|
---|
1499 |
|
---|
1500 | hFind=FindFirstFile(temporary,&wfd);
|
---|
1501 | if(hFind==INVALID_HANDLE_VALUE) return 1;
|
---|
1502 | FindClose(hFind);
|
---|
1503 |
|
---|
1504 | hFile=CreateFile(FileName,GENERIC_READ,FILE_SHARE_READ|FILE_SHARE_WRITE,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
|
---|
1505 | GetFileTime(hFile,NULL,NULL,&SourceTime);
|
---|
1506 | CloseHandle(hFile);
|
---|
1507 |
|
---|
1508 | hFile=CreateFile(temporary,GENERIC_READ,FILE_SHARE_READ|FILE_SHARE_WRITE,NULL,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL);
|
---|
1509 | GetFileTime(hFile,NULL,NULL,&ExeTime);
|
---|
1510 | CloseHandle(hFile);
|
---|
1511 |
|
---|
1512 | if(SourceTime.dwHighDateTime<ExeTime.dwHighDateTime) return 0;
|
---|
1513 | else if(SourceTime.dwHighDateTime==ExeTime.dwHighDateTime&&
|
---|
1514 | SourceTime.dwLowDateTime<=ExeTime.dwLowDateTime) return 0;
|
---|
1515 | return 1;
|
---|
1516 | }
|
---|
1517 |
|
---|
1518 | string GetLastErrorString(){
|
---|
1519 | char *lpMsgBuf;
|
---|
1520 |
|
---|
1521 | FormatMessage(
|
---|
1522 | FORMAT_MESSAGE_ALLOCATE_BUFFER |
|
---|
1523 | FORMAT_MESSAGE_FROM_SYSTEM |
|
---|
1524 | FORMAT_MESSAGE_IGNORE_INSERTS,
|
---|
1525 | NULL,
|
---|
1526 | GetLastError(),
|
---|
1527 | MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // デフォルト言語
|
---|
1528 | (LPTSTR) &lpMsgBuf,
|
---|
1529 | 0,
|
---|
1530 | NULL
|
---|
1531 | );
|
---|
1532 |
|
---|
1533 | string result = lpMsgBuf;
|
---|
1534 |
|
---|
1535 | LocalFree( lpMsgBuf );
|
---|
1536 |
|
---|
1537 | return result;
|
---|
1538 | }
|
---|