Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
20fd6725
Kaydet (Commit)
20fd6725
authored
May 17, 2006
tarafından
Vladimir Glazounov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS qadev26 (1.1.2); FILE ADDED
2006/03/24 13:40:22 sw 1.1.2.1: #i22883#
üst
e4a9f2e8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
149 additions
and
0 deletions
+149
-0
ContextMenuInterceptor.java
qadevOOo/runner/helper/ContextMenuInterceptor.java
+149
-0
No files found.
qadevOOo/runner/helper/ContextMenuInterceptor.java
0 → 100644
Dosyayı görüntüle @
20fd6725
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ContextMenuInterceptor.java,v $
*
* $Revision: 1.2 $
*
* last change: $Author: vg $ $Date: 2006-05-17 13:30:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
************************************************************************/
package
helper
;
import
com.sun.star.beans.UnknownPropertyException
;
import
com.sun.star.beans.XPropertySet
;
import
com.sun.star.container.XIndexContainer
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.ui.ActionTriggerSeparatorType
;
import
com.sun.star.ui.ContextMenuInterceptorAction
;
import
com.sun.star.ui.XContextMenuInterceptor
;
import
com.sun.star.uno.UnoRuntime
;
public
class
ContextMenuInterceptor
implements
XContextMenuInterceptor
{
public
ContextMenuInterceptorAction
notifyContextMenuExecute
(
com
.
sun
.
star
.
ui
.
ContextMenuExecuteEvent
aEvent
)
throws
RuntimeException
{
try
{
// Retrieve context menu container and query for service factory to
// create sub menus, menu entries and separators
XIndexContainer
xContextMenu
=
aEvent
.
ActionTriggerContainer
;
XMultiServiceFactory
xMenuElementFactory
=
(
XMultiServiceFactory
)
UnoRuntime
.
queryInterface
(
XMultiServiceFactory
.
class
,
xContextMenu
);
if
(
xMenuElementFactory
!=
null
)
{
// create root menu entry for sub menu and sub menu
XPropertySet
xRootMenuEntry
=
(
XPropertySet
)
UnoRuntime
.
queryInterface
(
XPropertySet
.
class
,
xMenuElementFactory
.
createInstance
(
"com.sun.star.ui.ActionTrigger"
));
// create a line separator for our new help sub menu
XPropertySet
xSeparator
=
(
XPropertySet
)
UnoRuntime
.
queryInterface
(
XPropertySet
.
class
,
xMenuElementFactory
.
createInstance
(
"com.sun.star.ui.ActionTriggerSeparator"
)
);
Short
aSeparatorType
=
new
Short
(
ActionTriggerSeparatorType
.
LINE
);
xSeparator
.
setPropertyValue
(
"SeparatorType"
,
(
Object
)
aSeparatorType
);
// query sub menu for index container to get access
XIndexContainer
xSubMenuContainer
=
(
XIndexContainer
)
UnoRuntime
.
queryInterface
(
XIndexContainer
.
class
,
xMenuElementFactory
.
createInstance
(
"com.sun.star.ui.ActionTriggerContainer"
));
// intialize root menu entry "Help"
xRootMenuEntry
.
setPropertyValue
(
"Text"
,
new
String
(
"Help"
));
xRootMenuEntry
.
setPropertyValue
(
"CommandURL"
,
new
String
(
"slot:5410"
));
xRootMenuEntry
.
setPropertyValue
(
"HelpURL"
,
new
String
(
"5410"
));
xRootMenuEntry
.
setPropertyValue
(
"SubContainer"
,
(
Object
)
xSubMenuContainer
);
// create menu entries for the new sub menu
// intialize help/content menu entry
// entry "Content"
XPropertySet
xMenuEntry
=
(
XPropertySet
)
UnoRuntime
.
queryInterface
(
XPropertySet
.
class
,
xMenuElementFactory
.
createInstance
(
"com.sun.star.ui.ActionTrigger"
));
xMenuEntry
.
setPropertyValue
(
"Text"
,
new
String
(
"Content"
));
xMenuEntry
.
setPropertyValue
(
"CommandURL"
,
new
String
(
"slot:5401"
));
xMenuEntry
.
setPropertyValue
(
"HelpURL"
,
new
String
(
"5401"
));
// insert menu entry to sub menu
xSubMenuContainer
.
insertByIndex
(
0
,
(
Object
)
xMenuEntry
);
// intialize help/help agent
// entry "Help Agent"
xMenuEntry
=
(
XPropertySet
)
UnoRuntime
.
queryInterface
(
XPropertySet
.
class
,
xMenuElementFactory
.
createInstance
(
"com.sun.star.ui.ActionTrigger"
));
xMenuEntry
.
setPropertyValue
(
"Text"
,
new
String
(
"Help Agent"
));
xMenuEntry
.
setPropertyValue
(
"CommandURL"
,
new
String
(
"slot:5962"
));
xMenuEntry
.
setPropertyValue
(
"HelpURL"
,
new
String
(
"5962"
));
// insert menu entry to sub menu
xSubMenuContainer
.
insertByIndex
(
1
,
(
Object
)
xMenuEntry
);
// intialize help/tips
// entry "Tips"
xMenuEntry
=
(
XPropertySet
)
UnoRuntime
.
queryInterface
(
XPropertySet
.
class
,
xMenuElementFactory
.
createInstance
(
"com.sun.star.ui.ActionTrigger"
));
xMenuEntry
.
setPropertyValue
(
"Text"
,
new
String
(
"Tips"
));
xMenuEntry
.
setPropertyValue
(
"CommandURL"
,
new
String
(
"slot:5404"
));
xMenuEntry
.
setPropertyValue
(
"HelpURL"
,
new
String
(
"5404"
));
// insert menu entry to sub menu
xSubMenuContainer
.
insertByIndex
(
2
,
(
Object
)
xMenuEntry
);
// add separator into the given context menu
xContextMenu
.
insertByIndex
(
1
,
(
Object
)
xSeparator
);
// add new sub menu into the given context menu
xContextMenu
.
insertByIndex
(
1
,
(
Object
)
xRootMenuEntry
);
// The controller should execute the modified context menu and stop notifying other
// interceptors.
return
ContextMenuInterceptorAction
.
EXECUTE_MODIFIED
;
}
}
catch
(
UnknownPropertyException
ex
)
{
// do something useful
// we used a unknown property
}
catch
(
IndexOutOfBoundsException
ex
)
{
// do something useful
// we used an invalid index for accessing a container
}
catch
(
Exception
ex
)
{
// something strange has happend!
}
catch
(
Throwable
ex
)
{
// catch java exceptions and do something useful
}
return
ContextMenuInterceptorAction
.
IGNORED
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment