Changeset 229


Ignore:
Timestamp:
Sep 23, 2020, 11:29:15 PM (5 years ago)
Author:
Gregg Young
Message:

Get language switches to work without a restart. Allow reduce desktop to work with autosize and allow resize. Stop automatically selecting allow resize on deselect of autosize.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/settings.c

    r212 r229  
    13321332            WinCheckButton(hwnd, CHK_TSKBARGROW,
    13331333                           plswData->Settings.bTskBarGrow);
    1334             if (!plswData->Settings.bTaskBarAlwaysVisible ||
    1335                 plswData->Settings.bAllowResize ||
    1336                 plswData->Settings.bTskBarGrow)
     1334            if (!plswData->Settings.bTaskBarAlwaysVisible )
    13371335                WinEnableControl(hwnd, CHK_REDUCEDSK,FALSE);
    13381336            else
     
    14951493                    plswData->Settings.bAllowResize = bValue;
    14961494                    if (plswData->Settings.bAllowResize) {
    1497                         if (plswData->Settings.bReduceDsk)
     1495                        /*if (plswData->Settings.bReduceDsk)
    14981496                            UpdateDesktopWorkarea(plswData, TRUE);
    14991497                        WinCheckButton(hwnd, CHK_REDUCEDSK, FALSE);
    1500                         plswData->Settings.bReduceDsk = FALSE;
     1498                        plswData->Settings.bReduceDsk = FALSE;*/
    15011499                    }
    15021500                    if (bValue) {
     
    15171515                    plswData->Settings.bTskBarGrow = bValue;
    15181516                    WinEnableControl(hwnd, CHK_ALLOWRESIZE, !bValue);
    1519                     WinCheckButton(hwnd, CHK_ALLOWRESIZE, !bValue);
     1517                    //WinCheckButton(hwnd, CHK_ALLOWRESIZE, !bValue);
    15201518                    plswData->Settings.bAllowResize = !bValue;
    15211519                    if (!bValue) {
     
    15291527                    if (bValue) {
    15301528                        WinPostMsg(plswData->hwndTaskBarClient, WM_SIZE, 0, 0);
    1531                         if (plswData->Settings.bReduceDsk)
     1529                        /*if (plswData->Settings.bReduceDsk)
    15321530                            UpdateDesktopWorkarea(plswData, TRUE);
    15331531                        WinCheckButton(hwnd, CHK_REDUCEDSK, FALSE);
    1534                         plswData->Settings.bReduceDsk = FALSE;
     1532                        plswData->Settings.bReduceDsk = FALSE;*/
    15351533                    }
    15361534                    else
     
    15641562            }
    15651563#ifndef XWORKPLACE
    1566             if (!plswData->Settings.bTaskBarAlwaysVisible ||
    1567                 plswData->Settings.bAllowResize ||
    1568                 plswData->Settings.bTskBarGrow) {
     1564            if (!plswData->Settings.bTaskBarAlwaysVisible)  {
    15691565                WinEnableControl(hwnd, CHK_REDUCEDSK,FALSE);
    15701566            }
     
    19001896                    }
    19011897                    else {
     1898                        UCHAR ucFont[30];
     1899                        HMQ hmq;
     1900
    19021901                        plswData->Settings.usLanguage = usLangArr[sIndex];
     1902                        if (plswData->Settings.usLanguage == RU ||
     1903                            plswData->Settings.usLanguage == CZ ||
     1904                            plswData->Settings.usLanguage == PL) {
     1905                            strcpy(ucFont, "10.Times New Roman MT 30");
     1906                            WinSetPresParam(plswData->hwndMenu, PP_FONTNAMESIZE, strlen(ucFont), ucFont);
     1907                        }
     1908                        else
     1909                            WinRemovePresParam(plswData->hwndMenu, PP_FONTNAMESIZE);
     1910
     1911                        if (plswData->Settings.usLanguage == RU) {
     1912                            hmq = WinQueryWindowULong( plswData->hwndPopup, QWL_HMQ);
     1913                            WinSetCp(hmq, 866);
     1914                        }
     1915                        else if (plswData->Settings.usLanguage == CZ ||
     1916                                 plswData->Settings.usLanguage == PL) {
     1917                            hmq = WinQueryWindowULong( plswData->hwndPopup, QWL_HMQ);
     1918                            WinSetCp(hmq, 852);
     1919                        }
     1920                        else {
     1921                            hmq = WinQueryWindowULong( plswData->hwndPopup, QWL_HMQ);
     1922                            WinSetCp(hmq, 850);
     1923                        }
    19031924#ifdef XWORKPLACE
    19041925                       if (WgtQueryXWPWidgetBasePath (szHelpFile)) {
Note: See TracChangeset for help on using the changeset viewer.