Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/vtdisp.c
Parent Directory
| Revision Log
| Patch
| 1278 |
(FARPROC)BGEnumDisplayMonitors = GetProcAddressWithDllName("user32.dll","EnumDisplayMonitors"); |
(FARPROC)BGEnumDisplayMonitors = GetProcAddressWithDllName("user32.dll","EnumDisplayMonitors"); |
| 1279 |
} |
} |
| 1280 |
|
|
| 1281 |
|
void BGExchangeColor() { |
| 1282 |
|
COLORREF ColorRef; |
| 1283 |
|
if (ts.ColorFlag & CF_REVERSECOLOR) { |
| 1284 |
|
ColorRef = BGVTColor[0]; |
| 1285 |
|
BGVTColor[0] = BGVTReverseColor[0]; |
| 1286 |
|
BGVTReverseColor[0] = ColorRef; |
| 1287 |
|
ColorRef = BGVTColor[1]; |
| 1288 |
|
BGVTColor[1] = BGVTReverseColor[1]; |
| 1289 |
|
BGVTReverseColor[1] = ColorRef; |
| 1290 |
|
} |
| 1291 |
|
else { |
| 1292 |
|
ColorRef = BGVTColor[0]; |
| 1293 |
|
BGVTColor[0] = BGVTColor[1]; |
| 1294 |
|
BGVTColor[1] = ColorRef; |
| 1295 |
|
} |
| 1296 |
|
|
| 1297 |
|
ColorRef = BGVTBoldColor[0]; |
| 1298 |
|
BGVTBoldColor[0] = BGVTBoldColor[1]; |
| 1299 |
|
BGVTBoldColor[1] = ColorRef; |
| 1300 |
|
|
| 1301 |
|
ColorRef = BGVTBlinkColor[0]; |
| 1302 |
|
BGVTBlinkColor[0] = BGVTBlinkColor[1]; |
| 1303 |
|
BGVTBlinkColor[1] = ColorRef; |
| 1304 |
|
|
| 1305 |
|
ColorRef = BGURLColor[0]; |
| 1306 |
|
BGURLColor[0] = BGURLColor[1]; |
| 1307 |
|
BGURLColor[1] = ColorRef; |
| 1308 |
|
|
| 1309 |
|
// BGReverseText = !BGReverseText; |
| 1310 |
|
} |
| 1311 |
|
|
| 1312 |
void BGFillRect(HDC hdc,RECT *R,HBRUSH brush) |
void BGFillRect(HDC hdc,RECT *R,HBRUSH brush) |
| 1313 |
{ |
{ |
| 1314 |
if(!BGEnable) |
if(!BGEnable) |
|
|
Legend:
| Removed from v.3714 |
|
| changed lines |
| |
Added in v.3715 |
|
|
|