⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 time.c

📁 这是一个开放源代码的与WINNT/WIN2K/WIN2003兼容的操作系统
💻 C
字号:
/*
 *  ReactOS
 *  Copyright (C) 2004 ReactOS Team
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
/*
 * PROJECT:         ReactOS International Control Panel
 * FILE:            lib/cpl/intl/time.c
 * PURPOSE:         Time property page
 * PROGRAMMER:      Eric Kohl
 */

#include <windows.h>
#include <commctrl.h>
#include <cpl.h>

#include "intl.h"
#include "resource.h"

/*
 * TODO:
 *    - Enumerate available time formats (use EnumTimeformatsW)
 */

static VOID
UpdateTimeSample(HWND hWnd)
{
  WCHAR InBuffer[80];
  WCHAR OutBuffer[80];

  GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_STIMEFORMAT, InBuffer, 80);

  GetTimeFormatW(LOCALE_USER_DEFAULT, 0, NULL, InBuffer, OutBuffer, 80);

  SendMessageW(hWnd, WM_SETTEXT, 0, (LPARAM)OutBuffer);
}


/* Property page dialog callback */
INT_PTR CALLBACK
TimePageProc(HWND hwndDlg,
             UINT uMsg,
             WPARAM wParam,
             LPARAM lParam)
{
  switch(uMsg)
  {
    case WM_INITDIALOG:
      {
        WCHAR Buffer[80];
        int nLen;

        /* Update the time format sample */
        UpdateTimeSample(GetDlgItem(hwndDlg, IDC_TIMESAMPLE));

        /* Get the time format (max. 80 characters) */
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMEFORMAT),
                    CB_LIMITTEXT, 80, 0);

        /* FIXME: add available time formats to the list */

        GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_STIMEFORMAT, Buffer, 80);
        SendMessageW(GetDlgItem(hwndDlg, IDC_TIMEFORMAT),
                     CB_ADDSTRING,
                     0,
                     (LPARAM)Buffer);
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMEFORMAT),
                    CB_SETCURSEL,
                    0, /* index */
                    0);

        /* Get the time separator (max. 4 characters) */
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMESEPARATOR),
                    CB_LIMITTEXT, 4, 0);
        GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_STIME, Buffer, 80);
        SendMessageW(GetDlgItem(hwndDlg, IDC_TIMESEPARATOR),
                     CB_ADDSTRING,
                     0,
                     (LPARAM)Buffer);
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMESEPARATOR),
                    CB_SETCURSEL,
                    0, /* index */
                    0);

        /* Get the AM symbol (max. 9 characters) */
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMEAMSYMBOL),
                    CB_LIMITTEXT, 9, 0);
        nLen = GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_S1159, Buffer, 80);
        SendMessageW(GetDlgItem(hwndDlg, IDC_TIMEAMSYMBOL),
                     CB_ADDSTRING,
                     0,
                     (LPARAM)Buffer);
        if (nLen != 0)
        {
          SendMessageW(GetDlgItem(hwndDlg, IDC_TIMEAMSYMBOL),
                       CB_ADDSTRING,
                       0,
                       (LPARAM)L"");
        }
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMEAMSYMBOL),
                    CB_SETCURSEL,
                    0, /* index */
                    0);

        /* Get the PM symbol (max. 9 characters) */
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMEPMSYMBOL),
                    CB_LIMITTEXT, 9, 0);
        nLen = GetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_S2359, Buffer, 80);
        SendMessageW(GetDlgItem(hwndDlg, IDC_TIMEPMSYMBOL),
                     CB_ADDSTRING,
                     0,
                     (LPARAM)Buffer);
        if (nLen != 0)
        {
          SendMessageW(GetDlgItem(hwndDlg, IDC_TIMEPMSYMBOL),
                       CB_ADDSTRING,
                       0,
                       (LPARAM)L"");
        }
        SendMessage(GetDlgItem(hwndDlg, IDC_TIMEPMSYMBOL),
                    CB_SETCURSEL,
                    0, /* index */
                    0);
      }
      break;

    case WM_COMMAND:
      switch (LOWORD(wParam))
      {
        case IDC_TIMEFORMAT:
        case IDC_TIMESEPARATOR:
        case IDC_TIMEAMSYMBOL:
        case IDC_TIMEPMSYMBOL:
          if (HIWORD(wParam) == CBN_SELCHANGE ||
              HIWORD(wParam) == CBN_EDITCHANGE)
          {
            PropSheet_Changed(GetParent(hwndDlg), hwndDlg);
          }
          break;
      }
      break;

    case WM_NOTIFY:
      {
        LPNMHDR lpnm = (LPNMHDR)lParam;

        if (lpnm->code == (UINT)PSN_APPLY)
        {
          WCHAR Buffer[80];
          int nIndex;

          /* Set time format */
          nIndex = SendMessage(GetDlgItem(hwndDlg, IDC_TIMEFORMAT),
                               CB_GETCURSEL, 0, 0);
          SendMessage(GetDlgItem(hwndDlg, IDC_TIMEFORMAT),
                      CB_GETLBTEXT, (WPARAM)nIndex, (LPARAM)Buffer);
          SetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_STIMEFORMAT, Buffer);

          /* Set time separator */
          nIndex = SendMessage(GetDlgItem(hwndDlg, IDC_TIMESEPARATOR),
                               CB_GETCURSEL, 0, 0);
          SendMessage(GetDlgItem(hwndDlg, IDC_TIMESEPARATOR),
                      CB_GETLBTEXT, (WPARAM)nIndex, (LPARAM)Buffer);
          SetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_STIME, Buffer);

          /* Set the AM symbol */
          nIndex = SendMessage(GetDlgItem(hwndDlg, IDC_TIMEAMSYMBOL),
                               CB_GETCURSEL, 0, 0);
          if (nIndex != CB_ERR)
          {
            SendMessage(GetDlgItem(hwndDlg, IDC_TIMEAMSYMBOL),
                        CB_GETLBTEXT, (WPARAM)nIndex, (LPARAM)Buffer);
            SetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_S1159, Buffer);
          }
          else
          {
            SetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_S1159, L"");
          }

          /* Set the PM symbol */
          nIndex = SendMessage(GetDlgItem(hwndDlg, IDC_TIMEPMSYMBOL),
                               CB_GETCURSEL, 0, 0);
          if (nIndex != CB_ERR)
          {
            SendMessage(GetDlgItem(hwndDlg, IDC_TIMEPMSYMBOL),
                        CB_GETLBTEXT, (WPARAM)nIndex, (LPARAM)Buffer);
            SetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_S2359, Buffer);
          }
          else
          {
            SetLocaleInfoW(LOCALE_USER_DEFAULT, LOCALE_S2359, L"");
          }

          /* Update the time format sample */
          UpdateTimeSample(GetDlgItem(hwndDlg, IDC_TIMESAMPLE));
        }
      }
      break;
  }

  return FALSE;
}

/* EOF */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -