Lines Matching refs:aLstBox
449 PDFWriter::ListBoxWidget aLstBox; in doTestCode() local
450 aLstBox.Name = OUString( RTL_CONSTASCII_USTRINGPARAM( "testListBox" ) ); in doTestCode()
451 aLstBox.Text = OUString( RTL_CONSTASCII_USTRINGPARAM( "One" ) ); in doTestCode()
452 aLstBox.Description = OUString( RTL_CONSTASCII_USTRINGPARAM( "select me" ) ); in doTestCode()
453 aLstBox.Location = Rectangle( Point( 4500, 18000 ), Size( 3000, 1500 ) ); in doTestCode()
454 aLstBox.Sort = true; in doTestCode()
455 aLstBox.MultiSelect = true; in doTestCode()
456 aLstBox.Border = aLstBox.Background = true; in doTestCode()
457 aLstBox.BorderColor = Color( COL_BLACK ); in doTestCode()
458 aLstBox.Entries.push_back( OUString( RTL_CONSTASCII_USTRINGPARAM( "One" ) ) ); in doTestCode()
459 aLstBox.Entries.push_back( OUString( RTL_CONSTASCII_USTRINGPARAM( "Two" ) ) ); in doTestCode()
460 aLstBox.Entries.push_back( OUString( RTL_CONSTASCII_USTRINGPARAM( "Three" ) ) ); in doTestCode()
461 aLstBox.Entries.push_back( OUString( RTL_CONSTASCII_USTRINGPARAM( "Four" ) ) ); in doTestCode()
462 aLstBox.SelectedEntries.push_back( 1 ); in doTestCode()
463 aLstBox.SelectedEntries.push_back( 2 ); in doTestCode()
464 aWriter.CreateControl( aLstBox ); in doTestCode()
467 aLstBox.Name = OUString( RTL_CONSTASCII_USTRINGPARAM( "testDropDownListBox" ) ); in doTestCode()
468 aLstBox.DropDown = true; in doTestCode()
469 aLstBox.Location = Rectangle( Point( 4500, 19500 ), Size( 3000, 500 ) ); in doTestCode()
470 aWriter.CreateControl( aLstBox ); in doTestCode()