Lines Matching refs:mBackgroundCombo
175 int index = mBackgroundCombo.FindString(0, diff_operation); in SetFrameFields()
181 mBackgroundCombo.DeleteString(index); in SetFrameFields()
188 int sel = mBackgroundCombo.InsertString(-1, diff_operation); in SetFrameFields()
189 mBackgroundCombo.SetItemData(sel, FRAME_INFO_NOT_EQUAL); in SetFrameFields()
193 SelectDropListItem(&mBackgroundCombo, bg_operation_sel); in SetFrameFields()
205 int cursel = mBackgroundCombo.GetCurSel(); in ReadFrameFields()
206 int background_operation = mBackgroundCombo.GetItemData(cursel); in ReadFrameFields()
251 DDX_Control(pDX, IDC_BACKGROUND_COMBO, mBackgroundCombo); in DoDataExchange()
278 index = mBackgroundCombo.AddString(_T("No Operation")); in DoDataExchange()
279 mBackgroundCombo.SetItemData(index, 0); in DoDataExchange()
281 index = mBackgroundCombo.AddString(_T("Restore first pixelmap")); in DoDataExchange()
282 mBackgroundCombo.SetItemData(index, 1); in DoDataExchange()
284 index = mBackgroundCombo.AddString(_T("Solid Color Fill")); in DoDataExchange()
285 mBackgroundCombo.SetItemData(index, 2); in DoDataExchange()
288 mBackgroundCombo.ShowWindow(SW_SHOW); in DoDataExchange()