Lines Matching refs:aContextMenu
1681 PopupMenu aContextMenu( ModuleRes( RID_QUERYCOLPOPUPMENU ) ); in Command() local
1682 aContextMenu.EnableItem( SID_DELETE, sal_False ); in Command()
1683 aContextMenu.RemoveDisabledEntries(sal_True, sal_True); in Command()
1684 switch ( aContextMenu.Execute( this, aMenuPos ) ) in Command()
1695 PopupMenu aContextMenu(ModuleRes(RID_TABLEDESIGNROWPOPUPMENU)); in Command() local
1697 aContextMenu.EnableItem( SID_CUT, IsCutAllowed(nRow) ); in Command()
1698 aContextMenu.EnableItem( SID_COPY, IsCopyAllowed(nRow) ); in Command()
1699 aContextMenu.EnableItem( SID_PASTE, IsPasteAllowed(nRow) ); in Command()
1700 aContextMenu.EnableItem( SID_DELETE, IsDeleteAllowed(nRow) ); in Command()
1701 aContextMenu.EnableItem( SID_TABLEDESIGN_TABED_PRIMARYKEY, IsPrimaryKeyAllowed(nRow) ); in Command()
1702 aContextMenu.EnableItem( SID_TABLEDESIGN_INSERTROWS, IsInsertNewAllowed(nRow) ); in Command()
1703 …aContextMenu.CheckItem( SID_TABLEDESIGN_TABED_PRIMARYKEY, IsRowSelected(GetCurRow()) && IsPrimaryK… in Command()
1706 aContextMenu.RemoveDisabledEntries(sal_True, sal_True); in Command()
1715 switch (aContextMenu.Execute(this, aMenuPos)) in Command()