1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: salmenu.cxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
35 #include <saldata.hxx>
40 // =======================================================================
42 // Os2SalInst factory methods
44 SalMenu
* Os2SalInstance::CreateMenu( BOOL bMenuBar
)
46 return NULL
; // no support for native menues
49 void Os2SalInstance::DestroyMenu( SalMenu
* pSalMenu
)
55 SalMenuItem
* Os2SalInstance::CreateMenuItem( const SalItemParams
* pItemData
)
57 return NULL
; // no support for native menues
60 void Os2SalInstance::DestroyMenuItem( SalMenuItem
* pSalMenuItem
)
66 // =======================================================================
74 Os2SalMenu::~Os2SalMenu()
78 BOOL
Os2SalMenu::VisibleMenuBar()
83 void Os2SalMenu::SetFrame( const SalFrame
*pFrame
)
87 void Os2SalMenu::InsertItem( SalMenuItem
* pSalMenuItem
, unsigned nPos
)
91 void Os2SalMenu::RemoveItem( unsigned nPos
)
95 void Os2SalMenu::SetSubMenu( SalMenuItem
* pSalMenuItem
, SalMenu
* pSubMenu
, unsigned nPos
)
99 void Os2SalMenu::CheckItem( unsigned nPos
, BOOL bCheck
)
103 void Os2SalMenu::EnableItem( unsigned nPos
, BOOL bEnable
)
107 void Os2SalMenu::SetItemImage( unsigned nPos
, SalMenuItem
* pSalMenuItem
, const Image
& rImage
)
111 void Os2SalMenu::SetItemText( unsigned nPos
, SalMenuItem
* pSalMenuItem
, const XubString
& rText
)
115 void Os2SalMenu::SetAccelerator( unsigned nPos
, SalMenuItem
* pSalMenuItem
, const KeyCode
& rKeyCode
, const XubString
& rKeyName
)
119 void Os2SalMenu::GetSystemMenuData( SystemMenuData
* pData
)
123 // =======================================================================
130 Os2SalMenuItem::~Os2SalMenuItem()
134 // -------------------------------------------------------------------