Browse Subversion Repository
Diff of /trunk/teraterm/teraterm/addsetting.cpp
Parent Directory
| Revision Log
| Patch
| 643 |
|
|
| 644 |
void CVisualPropPageDlg::OnInitDialog() |
void CVisualPropPageDlg::OnInitDialog() |
| 645 |
{ |
{ |
|
char buf[MAXPATHLEN]; |
|
|
|
|
| 646 |
TTCPropertyPage::OnInitDialog(); |
TTCPropertyPage::OnInitDialog(); |
| 647 |
|
|
| 648 |
static const DlgTextInfo TextInfos[] = { |
static const DlgTextInfo TextInfos[] = { |
| 700 |
// Eterm look-feelの背景画像指定。 |
// Eterm look-feelの背景画像指定。 |
| 701 |
SetDlgItemTextA(IDC_BGIMG_EDIT, ts.BGImageFilePath); |
SetDlgItemTextA(IDC_BGIMG_EDIT, ts.BGImageFilePath); |
| 702 |
|
|
|
_snprintf_s(buf, sizeof(buf), _TRUNCATE, "%d", ts.BGImgBrightness); |
|
| 703 |
SetDlgItemNum(IDC_EDIT_BGIMG_BRIGHTNESS, ts.BGImgBrightness); |
SetDlgItemNum(IDC_EDIT_BGIMG_BRIGHTNESS, ts.BGImgBrightness); |
| 704 |
|
|
| 705 |
// BGEnable関係なく、チェックボックスを付ける。 |
// BGEnable関係なく、チェックボックスを付ける。 |
| 773 |
|
|
| 774 |
// (5)ANSI color |
// (5)ANSI color |
| 775 |
for (int i = 0 ; i < 16 ; i++) { |
for (int i = 0 ; i < 16 ; i++) { |
| 776 |
|
char buf[4]; |
| 777 |
_snprintf_s(buf, sizeof(buf), _TRUNCATE, "%d", i); |
_snprintf_s(buf, sizeof(buf), _TRUNCATE, "%d", i); |
| 778 |
SendDlgItemMessageA(IDC_ANSI_COLOR, LB_INSERTSTRING, i, (LPARAM)buf); |
SendDlgItemMessageA(IDC_ANSI_COLOR, LB_INSERTSTRING, i, (LPARAM)buf); |
| 779 |
} |
} |
|
|
Legend:
| Removed from v.9883 |
|
| changed lines |
| |
Added in v.9913 |
|
|
| |