From 4ba3c904a85ccdc2406af94c048575df63b17dd2 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Fri, 22 Feb 2019 23:33:47 +0100 Subject: [PATCH] [SNDVOL32] Advanced controls dialog: Remove the TBS_AUTOTICKS style from the trackbars and initialize them properly. --- base/applications/sndvol32/advanced.c | 43 ++++++++++++++++++++---- base/applications/sndvol32/lang/bg-BG.rc | 4 +-- base/applications/sndvol32/lang/cs-CZ.rc | 4 +-- base/applications/sndvol32/lang/de-DE.rc | 4 +-- base/applications/sndvol32/lang/el-GR.rc | 4 +-- base/applications/sndvol32/lang/en-US.rc | 4 +-- base/applications/sndvol32/lang/es-ES.rc | 4 +-- base/applications/sndvol32/lang/fr-FR.rc | 4 +-- base/applications/sndvol32/lang/he-IL.rc | 4 +-- base/applications/sndvol32/lang/hu-HU.rc | 4 +-- base/applications/sndvol32/lang/id-ID.rc | 4 +-- base/applications/sndvol32/lang/it-IT.rc | 4 +-- base/applications/sndvol32/lang/ja-JP.rc | 4 +-- base/applications/sndvol32/lang/ko-KR.rc | 4 +-- base/applications/sndvol32/lang/lt-LT.rc | 4 +-- base/applications/sndvol32/lang/nl-NL.rc | 4 +-- base/applications/sndvol32/lang/no-NO.rc | 4 +-- base/applications/sndvol32/lang/pl-PL.rc | 4 +-- base/applications/sndvol32/lang/pt-BR.rc | 4 +-- base/applications/sndvol32/lang/ro-RO.rc | 4 +-- base/applications/sndvol32/lang/ru-RU.rc | 4 +-- base/applications/sndvol32/lang/sk-SK.rc | 4 +-- base/applications/sndvol32/lang/sq-AL.rc | 4 +-- base/applications/sndvol32/lang/sv-SE.rc | 4 +-- base/applications/sndvol32/lang/th-TH.rc | 4 +-- base/applications/sndvol32/lang/tr-TR.rc | 4 +-- base/applications/sndvol32/lang/uk-UA.rc | 4 +-- base/applications/sndvol32/lang/zh-CN.rc | 4 +-- base/applications/sndvol32/lang/zh-TW.rc | 4 +-- 29 files changed, 93 insertions(+), 62 deletions(-) diff --git a/base/applications/sndvol32/advanced.c b/base/applications/sndvol32/advanced.c index 34d1d62093a..598cacff8dd 100644 --- a/base/applications/sndvol32/advanced.c +++ b/base/applications/sndvol32/advanced.c @@ -14,12 +14,13 @@ OnInitDialog( PADVANCED_CONTEXT Context) { WCHAR szRawTitle[256], szCookedTitle[256]; + MIXERCONTROLDETAILS_UNSIGNED UnsignedDetails; LPMIXERCONTROL Control = NULL; - UINT ControlCount = 0, Index, i; + UINT ControlCount = 0, Index; + DWORD i, dwStep, dwPosition; /* Set the dialog title */ LoadStringW(hAppInstance, IDS_ADVANCED_CONTROLS, szRawTitle, ARRAYSIZE(szRawTitle)); -// swprintf(szCookedTitle, szRawTitle, Context->LineName); StringCchPrintfW(szCookedTitle, ARRAYSIZE(szCookedTitle), szRawTitle, Context->LineName); SetWindowTextW(hwndDlg, szCookedTitle); @@ -27,6 +28,24 @@ OnInitDialog( for (i = IDC_ADV_BASS_LOW; i<= IDC_ADV_TREBLE_SLIDER; i++) EnableWindow(GetDlgItem(hwndDlg, i), FALSE); + /* Initialize the bass and treble trackbars */ + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETRANGE, (WPARAM)TRUE, (LPARAM)MAKELONG(VOLUME_MIN, VOLUME_MAX)); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETRANGE, (WPARAM)TRUE, (LPARAM)MAKELONG(VOLUME_MIN, VOLUME_MAX)); + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETPAGESIZE, 0, (LPARAM)VOLUME_PAGE_SIZE); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETPAGESIZE, 0, (LPARAM)VOLUME_PAGE_SIZE); + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETPOS, (WPARAM)TRUE, (LPARAM)0); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETPOS, (WPARAM)TRUE, (LPARAM)0); + + /* Calculate and set ticks */ + dwStep = (VOLUME_MAX / (VOLUME_TICKS + 1)); + if (VOLUME_MAX % (VOLUME_TICKS + 1) != 0) + dwStep++; + for (i = dwStep; i < VOLUME_MAX; i += dwStep) + { + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETTIC, 0, (LPARAM)i); + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETTIC, 0, (LPARAM)i); + } + /* Hide the other controls */ for (i = IDC_ADV_OTHER_CONTROLS; i<= IDC_ADV_OTHER_CHECK2; i++) ShowWindow(GetDlgItem(hwndDlg, i), SW_HIDE); @@ -37,15 +56,27 @@ OnInitDialog( { if (Control[Index].dwControlType == MIXERCONTROL_CONTROLTYPE_BASS) { - for (i = IDC_ADV_BASS_LOW; i<= IDC_ADV_BASS_SLIDER; i++) - EnableWindow(GetDlgItem(hwndDlg, i), TRUE); + if (SndMixerGetVolumeControlDetails(Context->Mixer, Control[Index].dwControlID, 1, sizeof(MIXERCONTROLDETAILS_UNSIGNED), (LPVOID)&UnsignedDetails) != -1) + { + for (i = IDC_ADV_BASS_LOW; i<= IDC_ADV_BASS_SLIDER; i++) + EnableWindow(GetDlgItem(hwndDlg, i), TRUE); + dwStep = (Control[Index].Bounds.dwMaximum - Control[Index].Bounds.dwMinimum) / (VOLUME_MAX - VOLUME_MIN); + dwPosition = (UnsignedDetails.dwValue - Control[Index].Bounds.dwMinimum) / dwStep; + SendDlgItemMessageW(hwndDlg, IDC_ADV_BASS_SLIDER, TBM_SETPOS, (WPARAM)TRUE, dwPosition); + } } else if (Control[Index].dwControlType == MIXERCONTROL_CONTROLTYPE_TREBLE) { - for (i = IDC_ADV_TREBLE_LOW; i<= IDC_ADV_TREBLE_SLIDER; i++) - EnableWindow(GetDlgItem(hwndDlg, i), TRUE); + if (SndMixerGetVolumeControlDetails(Context->Mixer, Control[Index].dwControlID, 1, sizeof(MIXERCONTROLDETAILS_UNSIGNED), (LPVOID)&UnsignedDetails) != -1) + { + for (i = IDC_ADV_TREBLE_LOW; i<= IDC_ADV_TREBLE_SLIDER; i++) + EnableWindow(GetDlgItem(hwndDlg, i), TRUE); + dwStep = (Control[Index].Bounds.dwMaximum - Control[Index].Bounds.dwMinimum) / (VOLUME_MAX - VOLUME_MIN); + dwPosition = (UnsignedDetails.dwValue - Control[Index].Bounds.dwMinimum) / dwStep; + SendDlgItemMessageW(hwndDlg, IDC_ADV_TREBLE_SLIDER, TBM_SETPOS, (WPARAM)TRUE, dwPosition); + } } else if (Control[Index].dwControlType != MIXERCONTROL_CONTROLTYPE_VOLUME && Control[Index].dwControlType != MIXERCONTROL_CONTROLTYPE_MUTE) diff --git a/base/applications/sndvol32/lang/bg-BG.rc b/base/applications/sndvol32/lang/bg-BG.rc index 2dbe8d98ecd..82ce984a1e8 100644 --- a/base/applications/sndvol32/lang/bg-BG.rc +++ b/base/applications/sndvol32/lang/bg-BG.rc @@ -127,11 +127,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/cs-CZ.rc b/base/applications/sndvol32/lang/cs-CZ.rc index db619d7bde5..1699735f3f3 100644 --- a/base/applications/sndvol32/lang/cs-CZ.rc +++ b/base/applications/sndvol32/lang/cs-CZ.rc @@ -129,11 +129,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/de-DE.rc b/base/applications/sndvol32/lang/de-DE.rc index 8e03fd2f8e7..9edb833e099 100644 --- a/base/applications/sndvol32/lang/de-DE.rc +++ b/base/applications/sndvol32/lang/de-DE.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Tiefen:", -1, 17, 62, 50, 8 LTEXT "Niedrig", IDC_ADV_BASS_LOW, 70, 62, 23, 8 LTEXT "Hoch", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Höhen:", -1, 17, 90, 50, 8 LTEXT "Niedrig", IDC_ADV_TREBLE_LOW, 70, 90, 23, 8 LTEXT "Hoch", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Andere Einstellungen", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "Diese Einstellungen verändern zusätzlich die Audioeigenschaften. Weitere Informationen finden Sie in der Hardwaredokumentation.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/el-GR.rc b/base/applications/sndvol32/lang/el-GR.rc index 31d62ec4456..c41ff9a9e3e 100644 --- a/base/applications/sndvol32/lang/el-GR.rc +++ b/base/applications/sndvol32/lang/el-GR.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/en-US.rc b/base/applications/sndvol32/lang/en-US.rc index 136684d4769..2edad91f026 100644 --- a/base/applications/sndvol32/lang/en-US.rc +++ b/base/applications/sndvol32/lang/en-US.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/es-ES.rc b/base/applications/sndvol32/lang/es-ES.rc index fa9de20175a..21af78d59e6 100644 --- a/base/applications/sndvol32/lang/es-ES.rc +++ b/base/applications/sndvol32/lang/es-ES.rc @@ -126,11 +126,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/fr-FR.rc b/base/applications/sndvol32/lang/fr-FR.rc index afd60f5d8d5..97e687331bb 100644 --- a/base/applications/sndvol32/lang/fr-FR.rc +++ b/base/applications/sndvol32/lang/fr-FR.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/he-IL.rc b/base/applications/sndvol32/lang/he-IL.rc index 0d9509730e1..581e3c90017 100644 --- a/base/applications/sndvol32/lang/he-IL.rc +++ b/base/applications/sndvol32/lang/he-IL.rc @@ -130,11 +130,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/hu-HU.rc b/base/applications/sndvol32/lang/hu-HU.rc index 6de5aebc7f8..233955a01c6 100644 --- a/base/applications/sndvol32/lang/hu-HU.rc +++ b/base/applications/sndvol32/lang/hu-HU.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/id-ID.rc b/base/applications/sndvol32/lang/id-ID.rc index 466e5b72016..223944a447d 100644 --- a/base/applications/sndvol32/lang/id-ID.rc +++ b/base/applications/sndvol32/lang/id-ID.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/it-IT.rc b/base/applications/sndvol32/lang/it-IT.rc index 2db5896c269..469f854bb48 100644 --- a/base/applications/sndvol32/lang/it-IT.rc +++ b/base/applications/sndvol32/lang/it-IT.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ja-JP.rc b/base/applications/sndvol32/lang/ja-JP.rc index cf0eb203b05..3c15fec8750 100644 --- a/base/applications/sndvol32/lang/ja-JP.rc +++ b/base/applications/sndvol32/lang/ja-JP.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ko-KR.rc b/base/applications/sndvol32/lang/ko-KR.rc index cc4a57b5aed..07c8e5a666f 100644 --- a/base/applications/sndvol32/lang/ko-KR.rc +++ b/base/applications/sndvol32/lang/ko-KR.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/lt-LT.rc b/base/applications/sndvol32/lang/lt-LT.rc index 84eec680ef5..28b37498115 100644 --- a/base/applications/sndvol32/lang/lt-LT.rc +++ b/base/applications/sndvol32/lang/lt-LT.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/nl-NL.rc b/base/applications/sndvol32/lang/nl-NL.rc index d355838904f..f6ef4fb1d90 100644 --- a/base/applications/sndvol32/lang/nl-NL.rc +++ b/base/applications/sndvol32/lang/nl-NL.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/no-NO.rc b/base/applications/sndvol32/lang/no-NO.rc index 27f53cede7f..a60735c06a6 100644 --- a/base/applications/sndvol32/lang/no-NO.rc +++ b/base/applications/sndvol32/lang/no-NO.rc @@ -123,11 +123,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/pl-PL.rc b/base/applications/sndvol32/lang/pl-PL.rc index 7a668740aa6..09bc2dedb2f 100644 --- a/base/applications/sndvol32/lang/pl-PL.rc +++ b/base/applications/sndvol32/lang/pl-PL.rc @@ -131,11 +131,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/pt-BR.rc b/base/applications/sndvol32/lang/pt-BR.rc index 08ca3743a33..e4f9d42b521 100644 --- a/base/applications/sndvol32/lang/pt-BR.rc +++ b/base/applications/sndvol32/lang/pt-BR.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ro-RO.rc b/base/applications/sndvol32/lang/ro-RO.rc index d0973e5dceb..e672018bc3b 100644 --- a/base/applications/sndvol32/lang/ro-RO.rc +++ b/base/applications/sndvol32/lang/ro-RO.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/ru-RU.rc b/base/applications/sndvol32/lang/ru-RU.rc index c7f05d2d85b..73b593838de 100644 --- a/base/applications/sndvol32/lang/ru-RU.rc +++ b/base/applications/sndvol32/lang/ru-RU.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Низкие частоты:", -1, 17, 62, 50, 16 LTEXT "Слабее", IDC_ADV_BASS_LOW, 73, 62, 24, 8 LTEXT "Сильнее", IDC_ADV_BASS_HIGH, 180, 62, 28, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Высокие частоты:", -1, 17, 90, 50, 16 LTEXT "Слабее", IDC_ADV_TREBLE_LOW, 73, 90, 24, 8 LTEXT "Сильнее", IDC_ADV_TREBLE_HIGH, 180, 90, 28, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Другие настройки", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "Эти настройки управляют другими возможностями. Подробнее смотрите в документации вашего оборудования.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/sk-SK.rc b/base/applications/sndvol32/lang/sk-SK.rc index 643de2db7f4..fc572889c7b 100644 --- a/base/applications/sndvol32/lang/sk-SK.rc +++ b/base/applications/sndvol32/lang/sk-SK.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/sq-AL.rc b/base/applications/sndvol32/lang/sq-AL.rc index f0fbba69941..b3431285e13 100644 --- a/base/applications/sndvol32/lang/sq-AL.rc +++ b/base/applications/sndvol32/lang/sq-AL.rc @@ -127,11 +127,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/sv-SE.rc b/base/applications/sndvol32/lang/sv-SE.rc index c91e57a47d9..85e263cd568 100644 --- a/base/applications/sndvol32/lang/sv-SE.rc +++ b/base/applications/sndvol32/lang/sv-SE.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/th-TH.rc b/base/applications/sndvol32/lang/th-TH.rc index 3aab6095478..91250a4ea5f 100644 --- a/base/applications/sndvol32/lang/th-TH.rc +++ b/base/applications/sndvol32/lang/th-TH.rc @@ -131,11 +131,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/tr-TR.rc b/base/applications/sndvol32/lang/tr-TR.rc index a1ffaa4a88d..fad7712293f 100644 --- a/base/applications/sndvol32/lang/tr-TR.rc +++ b/base/applications/sndvol32/lang/tr-TR.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/uk-UA.rc b/base/applications/sndvol32/lang/uk-UA.rc index b887b77e28f..1641abee0b8 100644 --- a/base/applications/sndvol32/lang/uk-UA.rc +++ b/base/applications/sndvol32/lang/uk-UA.rc @@ -131,11 +131,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/zh-CN.rc b/base/applications/sndvol32/lang/zh-CN.rc index da632544fa0..2e7b539672f 100644 --- a/base/applications/sndvol32/lang/zh-CN.rc +++ b/base/applications/sndvol32/lang/zh-CN.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14 diff --git a/base/applications/sndvol32/lang/zh-TW.rc b/base/applications/sndvol32/lang/zh-TW.rc index 5f0e3b1d7ac..7de3a8eba25 100644 --- a/base/applications/sndvol32/lang/zh-TW.rc +++ b/base/applications/sndvol32/lang/zh-TW.rc @@ -125,11 +125,11 @@ BEGIN LTEXT "&Bass:", -1, 17, 62, 50, 8 LTEXT "Low", IDC_ADV_BASS_LOW, 77, 62, 20, 8 LTEXT "High", IDC_ADV_BASS_HIGH, 182, 62, 20, 8 - CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 + CONTROL "", IDC_ADV_BASS_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 62, 80, 20 LTEXT "&Treble:", -1, 17, 90, 50, 8 LTEXT "Low", IDC_ADV_TREBLE_LOW, 77, 90, 20, 8 LTEXT "High", IDC_ADV_TREBLE_HIGH, 182, 90, 20, 8 - CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | TBS_AUTOTICKS | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 + CONTROL "", IDC_ADV_TREBLE_SLIDER, "msctls_trackbar32", TBS_HORZ | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 97, 90, 80, 20 GROUPBOX "Other Controls", IDC_ADV_OTHER_CONTROLS, 7, 119, 240, 66 LTEXT "These settings make other changes to how your audio sounds. See your hardware documentation for details.", IDC_ADV_OTHER_TEXT, 17, 135, 220, 28 AUTOCHECKBOX "&1 ", IDC_ADV_OTHER_CHECK1, 17, 159, 220, 14