Lines Matching refs:mpMenu
392 PopupMenu* mpMenu; member in sd::DropdownMenuBox
399 mpSubControl(pSubControl),mpDropdownButton(0),mpMenu(pMenu) in DropdownMenuBox()
418 delete mpMenu; in ~DropdownMenuBox()
477 PopupMenu* mpMenu; member in sd::CharHeightPropertyBox
491 mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_FONTSIZE_POPUP ) ); in CharHeightPropertyBox()
492 mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); in CharHeightPropertyBox()
571 PopupMenu* mpMenu; member in sd::TransparencyPropertyBox
587 mpMenu = new PopupMenu(); in TransparencyPropertyBox()
592 mpMenu->InsertItem( i, aStr ); in TransparencyPropertyBox()
595 mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); in TransparencyPropertyBox()
619 mpMenu->CheckItem( i, nValue == i ); in updateMenu()
693 PopupMenu* mpMenu; member in sd::RotationPropertyBox
710 mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_ROTATION_POPUP ) ); in RotationPropertyBox()
711 mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); in RotationPropertyBox()
737 mpMenu->CheckItem( CM_QUARTER_SPIN, nValue == 90 ); in updateMenu()
738 mpMenu->CheckItem( CM_HALF_SPIN, nValue == 180 ); in updateMenu()
739 mpMenu->CheckItem( CM_FULL_SPIN, nValue == 360 ); in updateMenu()
740 mpMenu->CheckItem( CM_TWO_SPINS, nValue == 720 ); in updateMenu()
742 mpMenu->CheckItem( CM_CLOCKWISE, bDirection ); in updateMenu()
743 mpMenu->CheckItem( CM_COUNTERCLOCKWISE, !bDirection ); in updateMenu()
834 PopupMenu* mpMenu; member in sd::ScalePropertyBox
851 mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_SCALE_POPUP ) ); in ScalePropertyBox()
852 mpControl = new DropdownMenuBox( pParent, mpMetric, mpMenu ); in ScalePropertyBox()
876 mpMenu->CheckItem( 25, nValue == 25 ); in updateMenu()
877 mpMenu->CheckItem( 50, nValue == 50 ); in updateMenu()
878 mpMenu->CheckItem( 150, nValue == 150 ); in updateMenu()
879 mpMenu->CheckItem( 400, nValue == 400 ); in updateMenu()
881 mpMenu->CheckItem( CM_HORIZONTAL, mnDirection == 1 ); in updateMenu()
882 mpMenu->CheckItem( CM_VERTICAL, mnDirection == 2 ); in updateMenu()
883 mpMenu->CheckItem( CM_BOTH, mnDirection == 3 ); in updateMenu()
1012 PopupMenu* mpMenu; member in sd::FontStylePropertyBox
1030 mpMenu = new PopupMenu(SdResId( RID_CUSTOMANIMATION_FONTSTYLE_POPUP ) ); in FontStylePropertyBox()
1031 mpControl = new DropdownMenuBox( pParent, mpEdit, mpMenu ); in FontStylePropertyBox()
1051 mpMenu->CheckItem( CM_BOLD, mfFontWeight == awt::FontWeight::BOLD ); in update()
1052 mpMenu->CheckItem( CM_ITALIC, meFontSlant == awt::FontSlant_ITALIC); in update()
1053 mpMenu->CheckItem( CM_UNDERLINED, mnFontUnderline != awt::FontUnderline::NONE ); in update()