Lines Matching refs:leftColumn

220 	ViewGroup *leftColumn = new LinearLayoutList(ORIENT_VERTICAL, new LinearLayoutParams(1.0));  in CreateViews()  local
221 subColumns->Add(leftColumn); in CreateViews()
231leftColumn->Add(new RadioButton(&choice_, CHOICE_STORAGE_ROOT, iz->T("Use PSP folder at root of st… in CreateViews()
233 AddExplanation(leftColumn, (MemStickScreen::Choice)choice_); in CreateViews()
240leftColumn->Add(new RadioButton(&choice_, CHOICE_BROWSE_FOLDER, iz->T("Create or Choose a PSP fold… in CreateViews()
244leftColumn->Add(new RadioButton(&choice_, CHOICE_SET_MANUAL, iz->T("Manually specify PSP folder"))… in CreateViews()
245leftColumn->Add(new TextView(iz->T("DataWillStay", "Data will stay even if you uninstall PPSSPP.")… in CreateViews()
246leftColumn->Add(new TextView(iz->T("DataCanBeShared", "Data can be shared between PPSSPP regular/G… in CreateViews()
254 AddExplanation(leftColumn, (MemStickScreen::Choice)choice_, extraView); in CreateViews()
262leftColumn->Add(new RadioButton(&choice_, CHOICE_PRIVATE_DIRECTORY, privateString.c_str()))->OnCli… in CreateViews()
264 AddExplanation(leftColumn, (MemStickScreen::Choice)choice_); in CreateViews()
267 leftColumn->Add(new Spacer(new LinearLayoutParams(FILL_PARENT, 12.0f, 0.0f))); in CreateViews()
551 ViewGroup *leftColumn = new LinearLayout(ORIENT_VERTICAL, new LinearLayoutParams(1.0)); in CreateViews() local
554 root_->Add(leftColumn); in CreateViews()
562 leftColumn->Add(new TextView(iz->T("Selected PSP Data Folder"), ALIGN_LEFT, false)); in CreateViews()
564 leftColumn->Add(new TextView(iz->T("PPSSPP will restart after the change"), ALIGN_LEFT, false)); in CreateViews()
566 leftColumn->Add(new TextView(newMemstickFolder_.ToVisualString(), ALIGN_LEFT, false)); in CreateViews()
568 leftColumn->Add(new TextView(newFreeSpaceText, ALIGN_LEFT, false)); in CreateViews()
570 leftColumn->Add(new TextView(iz->T("Already contains PSP data"), ALIGN_LEFT, false)); in CreateViews()
572 leftColumn->Add(new TextView(iz->T("No data will be changed"), ALIGN_LEFT, false)); in CreateViews()
576 leftColumn->Add(new TextView(error_, ALIGN_LEFT, false)); in CreateViews()
587 progressView_ = leftColumn->Add(new TextView(progressReporter_.Get())); in CreateViews()
594leftColumn->Add(new CheckBox(&moveData_, iz->T("Move Data")))->OnClick.Handle(this, &ConfirmMemsti… in CreateViews()
597leftColumn->Add(new Choice(di->T("OK")))->OnClick.Handle(this, &ConfirmMemstickMoveScreen::OnConfi… in CreateViews()
598 leftColumn->Add(new Choice(di->T("Back")))->OnClick.Handle<UIScreen>(this, &UIScreen::OnBack); in CreateViews()