obs/OBSApi/OBSApi.cpp
William Hamilton 43ffabfd5b Added checkboxes to sources list to toggle rendering in the scene.
Required extensive changes add the listbox had to be converted to a listview, which uses a very different messaging scheme. Some other minor fixes having to do with the sources list....
2013-01-08 02:22:20 -06:00

195 lines
5.5 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 GetLVText(HWND hwndList, UINT id)
{
String strText;
strText.SetLength(256);
ListView_GetItemText(hwndList, id, 0, (LPWSTR)strText.Array(), 256);
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;
}
LPBYTE GetCursorData(HICON hIcon, ICONINFO &ii, UINT &size)
{
BITMAP bmp;
HBITMAP hBmp = ii.hbmColor ? ii.hbmColor : ii.hbmMask;
if(GetObject(hBmp, sizeof(bmp), &bmp) != 0)
{
BITMAPINFO bi;
zero(&bi, sizeof(bi));
size = bmp.bmWidth;
void* lpBits;
BITMAPINFOHEADER &bih = bi.bmiHeader;
bih.biSize = sizeof(bih);
bih.biBitCount = 32;
bih.biWidth = bmp.bmWidth;
bih.biHeight = bmp.bmHeight;
bih.biPlanes = 1;
HDC hTempDC = CreateCompatibleDC(NULL);
HBITMAP hBitmap = CreateDIBSection(hTempDC, &bi, DIB_RGB_COLORS, &lpBits, NULL, 0);
HBITMAP hbmpOld = (HBITMAP)SelectObject(hTempDC, hBitmap);
zero(lpBits, bmp.bmHeight*bmp.bmWidth*4);
DrawIcon(hTempDC, 0, 0, hIcon);
LPBYTE lpData = (LPBYTE)Allocate(bmp.bmHeight*bmp.bmWidth*4);
mcpy(lpData, lpBits, bmp.bmHeight*bmp.bmWidth*4);
SelectObject(hTempDC, hbmpOld);
DeleteObject(hBitmap);
DeleteDC(hTempDC);
return lpData;
}
return NULL;
}