Changeset 83 in dev
- Timestamp:
- Mar 26, 2007, 11:11:22 AM (18 years ago)
- Location:
- ProjectEditor
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
ProjectEditor/ProjectEditor.h
r22 r83 41 41 char *lpszCompilerName; 42 42 43 FWINLAYER SetLayeredWindowAttributes;43 FWINLAYER pSetLayeredWindowAttributes; 44 44 HINSTANCE hUser32Lib; 45 45 -
ProjectEditor/RadToolsAndPropertyProc.cpp
r3 r83 588 588 589 589 //"なし" 590 SendDlgItemMessage(hwnd,IDC_WINDOWMENU,CB_ADDSTRING,0,(long)STRING_NONE );590 SendDlgItemMessage(hwnd,IDC_WINDOWMENU,CB_ADDSTRING,0,(long)STRING_NONE_); 591 591 592 592 for(i3=0,i4=0;i3<ProjectInfo.NumberOfMenu;i3++){ … … 1957 1957 1958 1958 //"なし" 1959 SendDlgItemMessage(hwnd,IDC_CBS_OWNERDRAW,CB_ADDSTRING,0,(long)STRING_NONE );1959 SendDlgItemMessage(hwnd,IDC_CBS_OWNERDRAW,CB_ADDSTRING,0,(long)STRING_NONE_); 1960 1960 //"固定" 1961 1961 SendDlgItemMessage(hwnd,IDC_CBS_OWNERDRAW,CB_ADDSTRING,0,(long)STRING_OWNERDRAW_FIXED); … … 3040 3040 3041 3041 //"なし" 3042 SendDlgItemMessage(hwnd,IDC_LVS_SORT,CB_ADDSTRING,0,(long)STRING_NONE );3042 SendDlgItemMessage(hwnd,IDC_LVS_SORT,CB_ADDSTRING,0,(long)STRING_NONE_); 3043 3043 //"昇順" 3044 3044 SendDlgItemMessage(hwnd,IDC_LVS_SORT,CB_ADDSTRING,0,(long)STRING_SORT_ASCENDING); … … 3302 3302 SendDlgItemMessage(hwnd,IDC_LBS_SELECT,CB_ADDSTRING,0,(long)STRING_LISTBOXPROP_STYLE_SEL_EXTENDED); 3303 3303 //"なし" 3304 SendDlgItemMessage(hwnd,IDC_LBS_SELECT,CB_ADDSTRING,0,(long)STRING_NONE );3304 SendDlgItemMessage(hwnd,IDC_LBS_SELECT,CB_ADDSTRING,0,(long)STRING_NONE_); 3305 3305 3306 3306 if(ProjectInfo.pWindowInfo[i2].pChildInfo[MdiInfo[i].MdiRadInfo->SelectingItem[0]].style&LBS_MULTIPLESEL) SendDlgItemMessage(hwnd,IDC_LBS_SELECT,CB_SETCURSEL,1,0); … … 3315 3315 3316 3316 //"なし" 3317 SendDlgItemMessage(hwnd,IDC_LBS_OWNERDRAW,CB_ADDSTRING,0,(long)STRING_NONE );3317 SendDlgItemMessage(hwnd,IDC_LBS_OWNERDRAW,CB_ADDSTRING,0,(long)STRING_NONE_); 3318 3318 //"固定" 3319 3319 SendDlgItemMessage(hwnd,IDC_LBS_OWNERDRAW,CB_ADDSTRING,0,(long)STRING_OWNERDRAW_FIXED); … … 4443 4443 4444 4444 //"なし" 4445 SendDlgItemMessage(hwnd,IDC_UDS_ATTACH,CB_ADDSTRING,0,(long)STRING_NONE );4445 SendDlgItemMessage(hwnd,IDC_UDS_ATTACH,CB_ADDSTRING,0,(long)STRING_NONE_); 4446 4446 //"左端" 4447 4447 SendDlgItemMessage(hwnd,IDC_UDS_ATTACH,CB_ADDSTRING,0,(long)STRING_LEFT); -
ProjectEditor/SubOperation.cpp
r80 r83 939 939 940 940 //アルファブレンド用のAPIを取得 941 extern FWINLAYER SetLayeredWindowAttributes;941 extern FWINLAYER pSetLayeredWindowAttributes; 942 942 extern HINSTANCE hUser32Lib; 943 943 hUser32Lib=LoadLibrary("user32.dll"); 944 SetLayeredWindowAttributes=(FWINLAYER)GetProcAddress(hUser32Lib,"SetLayeredWindowAttributes");944 pSetLayeredWindowAttributes=(FWINLAYER)GetProcAddress(hUser32Lib,"pSetLayeredWindowAttributes"); 945 945 946 946 -
ProjectEditor/WebSearch.cpp
r24 r83 6 6 #define ID_TIMER_IDLE 200 7 7 8 extern FWINLAYER SetLayeredWindowAttributes;8 extern FWINLAYER pSetLayeredWindowAttributes; 9 9 10 10 … … 20 20 pobj_ResultList=(CResultList *)GetWindowLong(hwnd,GWL_USERDATA); 21 21 22 SetLayeredWindowAttributes(hwnd, 0,(int)((double)255/(double)100*(double)(pobj_ResultList->iAnimeCount*10)), LWA_ALPHA);22 pSetLayeredWindowAttributes(hwnd, 0,(int)((double)255/(double)100*(double)(pobj_ResultList->iAnimeCount*10)), LWA_ALPHA); 23 23 24 24 GetWindowRect(hwnd,&rc); … … 151 151 lStyle=GetWindowLong(hwnd,GWL_EXSTYLE) | WS_EX_LAYERED; 152 152 SetWindowLong(hwnd,GWL_EXSTYLE,lStyle); 153 SetLayeredWindowAttributes(hwnd, 0, 0, LWA_ALPHA);153 pSetLayeredWindowAttributes(hwnd, 0, 0, LWA_ALPHA); 154 154 155 155 SetWindowLong(hwnd,GWL_USERDATA,(long)this); -
ProjectEditor/common_msg_eng.h
r3 r83 9 9 // 汎用 10 10 //////// 11 #define STRING_NONE "None"11 #define STRING_NONE_ "None" 12 12 #define STRING_DEFAULT "Default" 13 13 #define STRING_ERROR "Error" -
ProjectEditor/common_msg_jpn.h
r3 r83 9 9 // 汎用 10 10 //////// 11 #define STRING_NONE "なし"11 #define STRING_NONE_ "なし" 12 12 #define STRING_DEFAULT "デフォルト" 13 13 #define STRING_ERROR "エラー"
Note:
See TracChangeset
for help on using the changeset viewer.