145 lines
4.2 KiB
C++
145 lines
4.2 KiB
C++
/********************************************************************************
|
|
Copyright (C) 2012 Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
|
********************************************************************************/
|
|
|
|
|
|
#include "OBSAPI.h"
|
|
|
|
|
|
APIInterface *API = NULL;
|
|
|
|
|
|
void LocalizeWindow(HWND hwnd, LocaleStringLookup *lookup)
|
|
{
|
|
if(!lookup) lookup = locale;
|
|
|
|
int textLen = (int)SendMessage(hwnd, WM_GETTEXTLENGTH, 0, 0);
|
|
String strText;
|
|
strText.SetLength(textLen);
|
|
GetWindowText(hwnd, strText, textLen+1);
|
|
|
|
if(strText.IsValid() && lookup->HasLookup(strText))
|
|
SetWindowText(hwnd, lookup->LookupString(strText));
|
|
|
|
//-------------------------------
|
|
|
|
HWND hwndChild = GetWindow(hwnd, GW_CHILD);
|
|
while(hwndChild)
|
|
{
|
|
int textLen = (int)SendMessage(hwndChild, WM_GETTEXTLENGTH, 0, 0);
|
|
strText.SetLength(textLen);
|
|
GetWindowText(hwndChild, strText, textLen+1);
|
|
|
|
if(strText.IsValid())
|
|
{
|
|
if(strText[0] == '.')
|
|
SetWindowText(hwndChild, strText.Array()+1);
|
|
else
|
|
{
|
|
if(strText.IsValid() && lookup->HasLookup(strText))
|
|
SetWindowText(hwndChild, lookup->LookupString(strText));
|
|
}
|
|
}
|
|
|
|
hwndChild = GetNextWindow(hwndChild, GW_HWNDNEXT);
|
|
}
|
|
};
|
|
|
|
void LocalizeMenu(HMENU hMenu, LocaleStringLookup *lookup)
|
|
{
|
|
if(!lookup) lookup = locale;
|
|
|
|
int itemCount = GetMenuItemCount(hMenu);
|
|
if(itemCount == -1)
|
|
return;
|
|
|
|
for(int i=0; i<itemCount; i++)
|
|
{
|
|
MENUITEMINFO mii;
|
|
zero(&mii, sizeof(mii));
|
|
mii.cbSize = sizeof(mii);
|
|
mii.fMask = MIIM_SUBMENU|MIIM_STRING|MIIM_FTYPE;
|
|
GetMenuItemInfo(hMenu, i, TRUE, &mii);
|
|
|
|
if(mii.fType & MFT_SEPARATOR || mii.cch < 2)
|
|
continue;
|
|
|
|
HMENU hSubMenu = mii.hSubMenu;
|
|
|
|
String strLookup;
|
|
strLookup.SetLength(mii.cch);
|
|
|
|
mii.fMask = MIIM_STRING;
|
|
mii.dwTypeData = strLookup.Array();
|
|
mii.cch = strLookup.Length()+1;
|
|
GetMenuItemInfo(hMenu, i, TRUE, &mii);
|
|
|
|
String strName;
|
|
if(strLookup[0] == '.')
|
|
strName = strLookup.Array()+1;
|
|
else if(!lookup->HasLookup(strLookup))
|
|
strName = strLookup;
|
|
else
|
|
strName = lookup->LookupString(strLookup);
|
|
|
|
mii.fMask = MIIM_STRING;
|
|
mii.dwTypeData = strName.Array();
|
|
SetMenuItemInfo(hMenu, i, TRUE, &mii);
|
|
|
|
if(hSubMenu)
|
|
LocalizeMenu(hSubMenu);
|
|
}
|
|
}
|
|
|
|
String GetLBText(HWND hwndList, UINT id)
|
|
{
|
|
UINT curSel = (id != LB_ERR) ? id : (UINT)SendMessage(hwndList, LB_GETCURSEL, 0, 0);
|
|
if(curSel == LB_ERR)
|
|
return String();
|
|
|
|
String strText;
|
|
strText.SetLength((UINT)SendMessage(hwndList, LB_GETTEXTLEN, curSel, 0));
|
|
if(strText.Length())
|
|
SendMessage(hwndList, LB_GETTEXT, curSel, (LPARAM)strText.Array());
|
|
|
|
return strText;
|
|
}
|
|
|
|
String GetCBText(HWND hwndCombo, UINT id)
|
|
{
|
|
UINT curSel = (id != CB_ERR) ? id : (UINT)SendMessage(hwndCombo, CB_GETCURSEL, 0, 0);
|
|
if(curSel == CB_ERR)
|
|
return String();
|
|
|
|
String strText;
|
|
strText.SetLength((UINT)SendMessage(hwndCombo, CB_GETLBTEXTLEN, curSel, 0));
|
|
if(strText.Length())
|
|
SendMessage(hwndCombo, CB_GETLBTEXT, curSel, (LPARAM)strText.Array());
|
|
|
|
return strText;
|
|
}
|
|
|
|
String GetEditText(HWND hwndEdit)
|
|
{
|
|
String strText;
|
|
strText.SetLength((UINT)SendMessage(hwndEdit, WM_GETTEXTLENGTH, 0, 0));
|
|
if(strText.Length())
|
|
SendMessage(hwndEdit, WM_GETTEXT, strText.Length()+1, (LPARAM)strText.Array());
|
|
|
|
return strText;
|
|
}
|