HWND SceneSwitcherSettings::CreatePane(HWND parentHwnd)
{
    hwnd = CreateDialogParam(thePlugin->hinstDll, MAKEINTRESOURCE(IDD_SETTINGS_SCENESW),
                             parentHwnd, (DLGPROC)DialogProc, (LPARAM)this);

	//EM_SETCUEBANNER


	HWND hwndAppList = GetDlgItem(hwnd, IDC_APPLIST);
	HWND hwndMainScn = GetDlgItem(hwnd, IDC_MAINSCN);

	ComboBox_SetCueBannerText(hwndMainScn, PluginStr("Settings.Scene"));
	ComboBox_SetCueBannerText(hwndAppList, PluginStr("Settings.WindowTitle"));
    return hwnd;
}
Beispiel #2
0
BOOL ComboBox::SetCueBannerText(LPCWSTR lpcwText) {
  return ComboBox_SetCueBannerText(m_hWindow, lpcwText);
}