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
9e515931
Kaydet (Commit)
9e515931
authored
Haz 04, 2010
tarafından
Ivo Hinkelmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
CWS-TOOLING: integrate CWS slidecopy
üst
7c558d66
623fe186
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
371 additions
and
63 deletions
+371
-63
AccessibleToolPanelDeck.hxx
...ty/inc/accessibility/extended/AccessibleToolPanelDeck.hxx
+91
-0
AccessibleToolPanelDeckTabBar.hxx
.../accessibility/extended/AccessibleToolPanelDeckTabBar.hxx
+92
-0
AccessibleToolPanelDeckTabBarItem.hxx
...essibility/extended/AccessibleToolPanelDeckTabBarItem.hxx
+107
-0
accessiblestrings.hrc
accessibility/inc/accessibility/helper/accessiblestrings.hrc
+2
-1
AccessibleToolPanelDeck.cxx
accessibility/source/extended/AccessibleToolPanelDeck.cxx
+0
-0
AccessibleToolPanelDeckTabBar.cxx
...ibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
+0
-0
AccessibleToolPanelDeckTabBarItem.cxx
...ity/source/extended/AccessibleToolPanelDeckTabBarItem.cxx
+0
-0
accessiblelistbox.cxx
accessibility/source/extended/accessiblelistbox.cxx
+3
-3
makefile.mk
accessibility/source/extended/makefile.mk
+4
-1
acc_factory.cxx
accessibility/source/helper/acc_factory.cxx
+32
-8
accessiblestrings.src
accessibility/source/helper/accessiblestrings.src
+4
-0
AccessibilityWorkBench.java
.../openoffice/accessibility/awb/AccessibilityWorkBench.java
+22
-10
AccessibilityNode.java
.../openoffice/accessibility/awb/tree/AccessibilityNode.java
+9
-12
EventMonitorView.java
...g/openoffice/accessibility/awb/view/EventMonitorView.java
+4
-2
d.lst
basctl/prj/d.lst
+0
-3
default.xml
basctl/uiconfig/basicide/accelerator/en-GB/default.xml
+0
-11
default.xml
basctl/uiconfig/basicide/accelerator/en-US/default.xml
+0
-11
LocaleCodes.java
wizards/com/sun/star/wizards/letter/LocaleCodes.java
+1
-1
No files found.
accessibility/inc/accessibility/extended/AccessibleToolPanelDeck.hxx
0 → 100755
Dosyayı görüntüle @
9e515931
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef ACC_ACCESSIBLETOOLPANELDECK_HXX
#define ACC_ACCESSIBLETOOLPANELDECK_HXX
/** === begin UNO includes === **/
/** === end UNO includes === **/
#include <cppuhelper/implbase1.hxx>
#include <toolkit/awt/vclxaccessiblecomponent.hxx>
#include <boost/scoped_ptr.hpp>
namespace
svt
{
class
ToolPanelDeck
;
}
//......................................................................................................................
namespace
accessibility
{
//......................................................................................................................
//==================================================================================================================
//= AccessibleToolPanelDeck
//==================================================================================================================
class
AccessibleToolPanelDeck_Impl
;
typedef
VCLXAccessibleComponent
AccessibleToolPanelDeck_Base
;
class
AccessibleToolPanelDeck
:
public
AccessibleToolPanelDeck_Base
{
public
:
AccessibleToolPanelDeck
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>&
i_rAccessibleParent
,
::
svt
::
ToolPanelDeck
&
i_rPanelDeck
);
using
AccessibleToolPanelDeck_Base
::
NotifyAccessibleEvent
;
protected
:
virtual
~
AccessibleToolPanelDeck
();
// XAccessibleContext
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleChild
(
sal_Int32
i
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleParent
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int16
SAL_CALL
getAccessibleRole
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XAccessibleComponent
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleAtPoint
(
const
::
com
::
sun
::
star
::
awt
::
Point
&
aPoint
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
grabFocus
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// OComponentHelper
virtual
void
SAL_CALL
disposing
();
// VCLXAccessibleComponent
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
GetChildAccessible
(
const
VclWindowEvent
&
i_rVclWindowEvent
);
virtual
void
FillAccessibleStateSet
(
::
utl
::
AccessibleStateSetHelper
&
i_rStateSet
);
private
:
::
boost
::
scoped_ptr
<
AccessibleToolPanelDeck_Impl
>
m_pImpl
;
};
//......................................................................................................................
}
// namespace accessibility
//......................................................................................................................
#endif // ACC_ACCESSIBLETOOLPANELDECK_HXX
accessibility/inc/accessibility/extended/AccessibleToolPanelDeckTabBar.hxx
0 → 100644
Dosyayı görüntüle @
9e515931
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef ACC_ACCESSIBLETOOLPANELTABBAR_HXX
#define ACC_ACCESSIBLETOOLPANELTABBAR_HXX
/** === begin UNO includes === **/
/** === end UNO includes === **/
#include <cppuhelper/implbase1.hxx>
#include <toolkit/awt/vclxaccessiblecomponent.hxx>
#include <boost/scoped_ptr.hpp>
namespace
svt
{
class
IToolPanelDeck
;
class
PanelTabBar
;
}
//......................................................................................................................
namespace
accessibility
{
//......................................................................................................................
//==================================================================================================================
//= AccessibleToolPanelTabBar
//==================================================================================================================
class
AccessibleToolPanelTabBar_Impl
;
typedef
VCLXAccessibleComponent
AccessibleToolPanelTabBar_Base
;
class
AccessibleToolPanelTabBar
:
public
AccessibleToolPanelTabBar_Base
{
public
:
AccessibleToolPanelTabBar
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>&
i_rAccessibleParent
,
::
svt
::
IToolPanelDeck
&
i_rPanelDeck
,
::
svt
::
PanelTabBar
&
i_rTabBar
);
using
AccessibleToolPanelTabBar_Base
::
NotifyAccessibleEvent
;
protected
:
virtual
~
AccessibleToolPanelTabBar
();
// XAccessibleContext
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleChild
(
sal_Int32
i
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleParent
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int16
SAL_CALL
getAccessibleRole
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XAccessibleComponent
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleAtPoint
(
const
::
com
::
sun
::
star
::
awt
::
Point
&
aPoint
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// OComponentHelper
virtual
void
SAL_CALL
disposing
();
// VCLXAccessibleComponent
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
GetChildAccessible
(
const
VclWindowEvent
&
i_rVclWindowEvent
);
virtual
void
FillAccessibleStateSet
(
::
utl
::
AccessibleStateSetHelper
&
i_rStateSet
);
private
:
::
boost
::
scoped_ptr
<
AccessibleToolPanelTabBar_Impl
>
m_pImpl
;
};
//......................................................................................................................
}
// namespace accessibility
//......................................................................................................................
#endif // ACC_ACCESSIBLETOOLPANELTABBAR_HXX
accessibility/inc/accessibility/extended/AccessibleToolPanelDeckTabBarItem.hxx
0 → 100644
Dosyayı görüntüle @
9e515931
/*************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef ACC_ACCESSIBLETOOLPANELDECKTABBARITEM_HXX
#define ACC_ACCESSIBLETOOLPANELDECKTABBARITEM_HXX
/** === begin UNO includes === **/
/** === end UNO includes === **/
#include <comphelper/accessiblecomponenthelper.hxx>
#include <cppuhelper/implbase1.hxx>
#include <boost/scoped_ptr.hpp>
namespace
svt
{
class
IToolPanelDeck
;
class
PanelTabBar
;
}
//......................................................................................................................
namespace
accessibility
{
//......................................................................................................................
//==================================================================================================================
//= AccessibleToolPanelDeckTabBarItem
//==================================================================================================================
class
AccessibleToolPanelDeckTabBarItem_Impl
;
typedef
::
comphelper
::
OAccessibleExtendedComponentHelper
AccessibleToolPanelDeckTabBarItem_Base
;
class
AccessibleToolPanelDeckTabBarItem
:
public
AccessibleToolPanelDeckTabBarItem_Base
{
public
:
AccessibleToolPanelDeckTabBarItem
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>&
i_rAccessibleParent
,
::
svt
::
IToolPanelDeck
&
i_rPanelDeck
,
::
svt
::
PanelTabBar
&
i_rTabBar
,
const
size_t
i_nItemPos
);
using
AccessibleToolPanelDeckTabBarItem_Base
::
NotifyAccessibleEvent
;
using
AccessibleToolPanelDeckTabBarItem_Base
::
lateInit
;
protected
:
virtual
~
AccessibleToolPanelDeckTabBarItem
();
public
:
// XAccessibleContext
virtual
sal_Int32
SAL_CALL
getAccessibleChildCount
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleChild
(
sal_Int32
i
)
throw
(
::
com
::
sun
::
star
::
lang
::
IndexOutOfBoundsException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleParent
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
sal_Int16
SAL_CALL
getAccessibleRole
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
rtl
::
OUString
SAL_CALL
getAccessibleDescription
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
rtl
::
OUString
SAL_CALL
getAccessibleName
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessibleRelationSet
>
SAL_CALL
getAccessibleRelationSet
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessibleStateSet
>
SAL_CALL
getAccessibleStateSet
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XAccessibleComponent
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>
SAL_CALL
getAccessibleAtPoint
(
const
::
com
::
sun
::
star
::
awt
::
Point
&
aPoint
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
grabFocus
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
sal_Int32
SAL_CALL
getForeground
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
sal_Int32
SAL_CALL
getBackground
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// XAccessibleExtendedComponent
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
awt
::
XFont
>
SAL_CALL
getFont
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
rtl
::
OUString
SAL_CALL
getTitledBorderText
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
rtl
::
OUString
SAL_CALL
getToolTipText
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
protected
:
// OCommonAccessibleComponent
virtual
::
com
::
sun
::
star
::
awt
::
Rectangle
SAL_CALL
implGetBounds
(
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
// OComponentHelper
virtual
void
SAL_CALL
disposing
();
protected
:
::
boost
::
scoped_ptr
<
AccessibleToolPanelDeckTabBarItem_Impl
>
m_pImpl
;
};
//......................................................................................................................
}
// namespace accessibility
//......................................................................................................................
#endif // ACC_ACCESSIBLETOOLPANELDECKTABBARITEM_HXX
accessibility/inc/accessibility/helper/accessiblestrings.hrc
Dosyayı görüntüle @
9e515931
...
...
@@ -45,7 +45,8 @@
#define RID_STR_ACC_ACTION_DECBLOCK ( RID_TK_ACC_START + 6 )
#define RID_STR_ACC_NAME_BROWSEBUTTON ( RID_TK_ACC_START + 1000 )
#define RID_STR_ACC_NAME_BROWSEBUTTON ( RID_TK_ACC_START + 100 )
#define RID_STR_ACC_DESC_PANELDECL_TABBAR ( RID_TK_ACC_START + 101 )
// -----------------------------------------------------------------------------
...
...
accessibility/source/extended/AccessibleToolPanelDeck.cxx
0 → 100755
Dosyayı görüntüle @
9e515931
This diff is collapsed.
Click to expand it.
accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
0 → 100644
Dosyayı görüntüle @
9e515931
This diff is collapsed.
Click to expand it.
accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx
0 → 100644
Dosyayı görüntüle @
9e515931
This diff is collapsed.
Click to expand it.
accessibility/source/extended/accessiblelistbox.cxx
Dosyayı görüntüle @
9e515931
...
...
@@ -131,8 +131,8 @@ namespace accessibility
break
;
// --> OD 2009-04-01 #i92103#
case
VCLEVENT_
LISTBOX_ENTRY
_EXPANDED
:
case
VCLEVENT_
LISTBOX_ENTRY
_COLLAPSED
:
case
VCLEVENT_
ITEM
_EXPANDED
:
case
VCLEVENT_
ITEM
_COLLAPSED
:
{
SvLBoxEntry
*
pEntry
=
static_cast
<
SvLBoxEntry
*
>
(
rVclWindowEvent
.
GetData
()
);
if
(
pEntry
)
...
...
@@ -141,7 +141,7 @@ namespace accessibility
new
AccessibleListBoxEntry
(
*
getListBox
(),
pEntry
,
this
);
Reference
<
XAccessible
>
xChild
=
pAccListBoxEntry
;
const
short
nAccEvent
=
(
rVclWindowEvent
.
GetId
()
==
VCLEVENT_
LISTBOX_ENTRY
_EXPANDED
)
(
rVclWindowEvent
.
GetId
()
==
VCLEVENT_
ITEM
_EXPANDED
)
?
AccessibleEventId
::
LISTBOX_ENTRY_EXPANDED
:
AccessibleEventId
::
LISTBOX_ENTRY_COLLAPSED
;
uno
::
Any
aListBoxEntry
;
...
...
accessibility/source/extended/makefile.mk
100644 → 100755
Dosyayı görüntüle @
9e515931
...
...
@@ -70,7 +70,10 @@ SLOFILES=\
$(SLO)$/
AccessibleGridControlHeader.obj
\
$(SLO)$/
AccessibleGridControlTableCell.obj
\
$(SLO)$/
AccessibleGridControlHeaderCell.obj
\
$(SLO)$/
AccessibleGridControlTable.obj
$(SLO)$/
AccessibleGridControlTable.obj
\
$(SLO)$/
AccessibleToolPanelDeck.obj
\
$(SLO)$/
AccessibleToolPanelDeckTabBar.obj
\
$(SLO)$/
AccessibleToolPanelDeckTabBarItem.obj
# --- Targets -------------------------------------------------------
...
...
accessibility/source/helper/acc_factory.cxx
100644 → 100755
Dosyayı görüntüle @
9e515931
...
...
@@ -29,18 +29,12 @@
#include "precompiled_accessibility.hxx"
#include <accessibility/helper/acc_factory.hxx>
#ifndef _TOOLKIT_AWT_VCLXWINDOWS_HXX
#include <toolkit/awt/vclxwindows.hxx>
#endif
#include <accessibility/standard/vclxaccessiblebutton.hxx>
#include <accessibility/standard/vclxaccessiblecheckbox.hxx>
#ifndef ACCESSIBILITY_STANDARD_VCLXACCESSIBLEDROPDOWCOMBOBOX_HXX
#include <accessibility/standard/vclxaccessibledropdowncombobox.hxx>
#endif
#include <accessibility/standard/vclxaccessiblecombobox.hxx>
#ifndef ACCESSIBILITY_STANDARD_VCLXACCESSIBLEDROPDOWLISTBOX_HXX
#include <accessibility/standard/vclxaccessibledropdownlistbox.hxx>
#endif
#include <accessibility/standard/vclxaccessibleedit.hxx>
#include <accessibility/standard/vclxaccessiblefixedhyperlink.hxx>
#include <accessibility/standard/vclxaccessiblefixedtext.hxx>
...
...
@@ -67,13 +61,17 @@
#include <accessibility/extended/AccessibleBrowseBoxHeaderCell.hxx>
#include <accessibility/extended/AccessibleBrowseBoxCheckBoxCell.hxx>
#include <accessibility/extended/accessibleeditbrowseboxcell.hxx>
#include <accessibility/extended/AccessibleToolPanelDeck.hxx>
#include <accessibility/extended/AccessibleToolPanelDeckTabBar.hxx>
#include <accessibility/extended/AccessibleToolPanelDeckTabBarItem.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/combobox.hxx>
#include <accessibility/extended/AccessibleGridControl.hxx>
#include <svtools/accessibletable.hxx>
#include "vcl/popupmenuwindow.hxx"
#include <vcl/popupmenuwindow.hxx>
#include <cppuhelper/implbase1.hxx>
#include
<floatingwindowaccessible.hxx>
#include
"floatingwindowaccessible.hxx"
//........................................................................
namespace
accessibility
...
...
@@ -227,6 +225,18 @@ inline bool hasFloatingChild(Window *pWindow)
sal_uInt16
_nColPos
)
const
;
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessibleContext
>
createAccessibleToolPanelDeck
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>&
i_rAccessibleParent
,
::
svt
::
ToolPanelDeck
&
i_rPanelDeck
);
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessibleContext
>
createAccessibleToolPanelTabBar
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
accessibility
::
XAccessible
>&
i_rAccessibleParent
,
::
svt
::
IToolPanelDeck
&
i_rPanelDeck
,
::
svt
::
PanelTabBar
&
i_rTabBar
);
protected
:
virtual
~
AccessibleFactory
();
};
...
...
@@ -508,6 +518,20 @@ inline bool hasFloatingChild(Window *pWindow)
_rxFocusWindow
,
_rBrowseBox
,
_nRowPos
,
_nColPos
);
}
//--------------------------------------------------------------------
Reference
<
XAccessibleContext
>
AccessibleFactory
::
createAccessibleToolPanelDeck
(
const
Reference
<
XAccessible
>&
i_rAccessibleParent
,
::
svt
::
ToolPanelDeck
&
i_rPanelDeck
)
{
return
new
AccessibleToolPanelDeck
(
i_rAccessibleParent
,
i_rPanelDeck
);
}
//--------------------------------------------------------------------
Reference
<
XAccessibleContext
>
AccessibleFactory
::
createAccessibleToolPanelTabBar
(
const
Reference
<
XAccessible
>&
i_rAccessibleParent
,
::
svt
::
IToolPanelDeck
&
i_rPanelDeck
,
::
svt
::
PanelTabBar
&
i_rTabBar
)
{
return
new
AccessibleToolPanelTabBar
(
i_rAccessibleParent
,
i_rPanelDeck
,
i_rTabBar
);
}
//........................................................................
}
// namespace accessibility
//........................................................................
...
...
accessibility/source/helper/accessiblestrings.src
Dosyayı görüntüle @
9e515931
...
...
@@ -70,3 +70,7 @@ String RID_STR_ACC_NAME_BROWSEBUTTON
Text [ en-US ] = "Browse";
};
String RID_STR_ACC_DESC_PANELDECL_TABBAR
{
Text [ en-US ] = "Panel Deck Tab Bar";
};
accessibility/workben/org/openoffice/accessibility/awb/AccessibilityWorkBench.java
Dosyayı görüntüle @
9e515931
...
...
@@ -588,28 +588,39 @@ public class AccessibilityWorkBench
javax
.
swing
.
tree
.
TreePath
aPath
=
aEvent
.
getPath
();
maTree
.
scrollPathToVisible
(
aPath
);
Object
aObject
=
aPath
.
getLastPathComponent
();
if
(
aObject
instanceof
XAccessible
)
{
XAccessible
xAccessible
=
(
XAccessible
)
aObject
;
if
(
maObjectViewContainer
!=
null
)
{
((
AccessibilityModel
)
maTree
.
getModel
()).
addEventListener
((
TreeNode
)
aObject
,
maObjectViewContainer
);
maObjectViewContainer
.
SetObject
(
xAccessible
.
getAccessibleContext
());
}
implSetCurrentObject
(
aObject
);
if
(
aObject
instanceof
XAccessible
)
{
if
(
maObjectViewContainer
!=
null
)
maObjectViewContainer
.
SetObject
(
((
XAccessible
)
aObject
).
getAccessibleContext
()
);
}
if
(
maCanvas
!=
null
)
maCanvas
.
SelectObject
((
TreeNode
)
aObject
);
setCursor
(
aCursor
);
}
else
{
i
f
(
maObjectViewContainer
!=
null
)
{
((
AccessibilityModel
)
maTree
.
getModel
()).
removeEventListener
((
TreeNode
)
aEvent
.
getPath
().
getLastPathComponent
(),
maObjectViewContainer
);
i
mplSetCurrentObject
(
aEvent
.
getPath
().
getLastPathComponent
()
);
if
(
maObjectViewContainer
!=
null
)
maObjectViewContainer
.
SetObject
(
null
);
}
if
(
maCanvas
!=
null
)
maCanvas
.
SelectObject
(
null
);
}
}
private
void
implSetCurrentObject
(
Object
i_object
)
{
if
(
maObjectViewContainer
==
null
)
return
;
if
(
maCurrentObject
!=
null
)
{
AccessibilityModel
.
removeEventListener
(
(
TreeNode
)
maCurrentObject
,
maObjectViewContainer
);
}
maCurrentObject
=
i_object
;
if
(
maCurrentObject
!=
null
)
{
AccessibilityModel
.
addEventListener
(
(
TreeNode
)
maCurrentObject
,
maObjectViewContainer
);
}
}
// XEventListener
public
void
disposing
(
EventObject
aSourceObj
)
...
...
@@ -687,4 +698,5 @@ public class AccessibilityWorkBench
maShapesButton
;
private
JMenuBar
maMenuBar
;
private
boolean
mbInitialized
;
private
Object
maCurrentObject
=
null
;
}
accessibility/workben/org/openoffice/accessibility/awb/tree/AccessibilityNode.java
Dosyayı görüntüle @
9e515931
...
...
@@ -75,8 +75,7 @@ class AccessibilityNode extends DefaultMutableTreeNode implements XAccessible,
if
(
xAccessibleContext
!=
null
)
{
try
{
XAccessibleEventBroadcaster
xAccessibleEventBroadcaster
=
(
XAccessibleEventBroadcaster
)
UnoRuntime
.
queryInterface
(
XAccessibleEventBroadcaster
.
class
,
xAccessibleContext
);
UnoRuntime
.
queryInterface
(
XAccessibleEventBroadcaster
.
class
,
xAccessibleContext
);
if
(
xAccessibleEventBroadcaster
!=
null
)
{
if
(
attach
)
{
xAccessibleEventBroadcaster
.
addEventListener
(
this
);
...
...
@@ -91,9 +90,9 @@ class AccessibilityNode extends DefaultMutableTreeNode implements XAccessible,
}
public
void
disposing
(
com
.
sun
.
star
.
lang
.
EventObject
eventObject
)
{
XAccessibleEventListener
listener
=
this
.
listener
;
if
(
listener
!=
null
)
{
listener
.
disposing
(
eventObject
);
XAccessibleEventListener
l
ocalL
istener
=
this
.
listener
;
if
(
l
ocalL
istener
!=
null
)
{
l
ocalL
istener
.
disposing
(
eventObject
);
}
treeModel
.
removeNode
(
userObject
);
...
...
@@ -135,22 +134,20 @@ class AccessibilityNode extends DefaultMutableTreeNode implements XAccessible,
public
void
notifyEvent
(
AccessibleEventObject
accessibleEventObject
)
{
if
(
accessibleEventObject
.
EventId
==
AccessibleEventId
.
CHILD
)
{
XAccessible
xAccessible
=
(
XAccessible
)
UnoRuntime
.
queryInterface
(
XAccessible
.
class
,
accessibleEventObject
.
OldValue
);
XAccessible
xAccessible
=
UnoRuntime
.
queryInterface
(
XAccessible
.
class
,
accessibleEventObject
.
OldValue
);
if
(
xAccessible
!=
null
)
{
handleChildRemoved
(
xAccessible
);
}
xAccessible
=
(
XAccessible
)
UnoRuntime
.
queryInterface
(
XAccessible
.
class
,
accessibleEventObject
.
NewValue
);
xAccessible
=
UnoRuntime
.
queryInterface
(
XAccessible
.
class
,
accessibleEventObject
.
NewValue
);
if
(
xAccessible
!=
null
)
{
handleChildAdded
(
xAccessible
);
}
}
XAccessibleEventListener
listener
=
this
.
listener
;
if
(
listener
!=
null
)
{
listener
.
notifyEvent
(
accessibleEventObject
);
XAccessibleEventListener
l
ocalL
istener
=
this
.
listener
;
if
(
l
ocalL
istener
!=
null
)
{
l
ocalL
istener
.
notifyEvent
(
accessibleEventObject
);
}
}
...
...
accessibility/workben/org/openoffice/accessibility/awb/view/EventMonitorView.java
Dosyayı görüntüle @
9e515931
...
...
@@ -64,6 +64,7 @@ class EventMonitorView
public
EventMonitorView
(
ObjectViewContainer
aContainer
)
{
super
(
aContainer
);
mnLineNo
=
0
;
Layout
();
}
...
...
@@ -85,7 +86,7 @@ class EventMonitorView
maScrollPane
=
new
JScrollPane
(
maText
,
JScrollPane
.
VERTICAL_SCROLLBAR_ALWAYS
,
JScrollPane
.
HORIZONTAL_SCROLLBAR_ALWAYS
);
maScrollPane
.
setPreferredSize
(
new
Dimension
(
300
,
8
0
));
maScrollPane
.
setPreferredSize
(
new
Dimension
(
300
,
20
0
));
GridBagConstraints
aConstraints
=
new
GridBagConstraints
();
aConstraints
.
weightx
=
1
;
...
...
@@ -112,7 +113,7 @@ class EventMonitorView
public
void
notifyEvent
(
AccessibleEventObject
aEvent
)
{
maText
.
append
(
NameProvider
.
getEventName
(
aEvent
.
EventId
)
+
" : "
maText
.
append
(
(
mnLineNo
++)
+
". "
+
NameProvider
.
getEventName
(
aEvent
.
EventId
)
+
" : "
+
aEvent
.
OldValue
.
toString
()
+
" -> "
+
aEvent
.
NewValue
.
toString
()
+
"\n"
);
...
...
@@ -120,5 +121,6 @@ class EventMonitorView
}
private
JTextArea
maText
;
private
int
mnLineNo
;
private
JScrollPane
maScrollPane
;
}
basctl/prj/d.lst
Dosyayı görüntüle @
9e515931
...
...
@@ -4,8 +4,6 @@ mkdir: %_DEST%\xml%_EXT%\uiconfig\modules
mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE
mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\menubar
mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\toolbar
mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\accelerator
mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\accelerator\en-US
mkdir: %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\statusbar
..\%COMMON_OUTDIR%\misc\*.hid %COMMON_DEST%\bin%_EXT%\hid\*.hid
...
...
@@ -22,5 +20,4 @@ mkdir: %_DEST%\inc%_EXT%\basctl
..\uiconfig\basicide\menubar\*.xml %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\menubar\*.xml
..\uiconfig\basicide\toolbar\*.xml %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\toolbar\*.xml
..\uiconfig\basicide\accelerator\en-US\*.xml %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\accelerator\en-US\*.xml
..\uiconfig\basicide\statusbar\*.xml %_DEST%\xml%_EXT%\uiconfig\modules\BasicIDE\statusbar\*.xml
basctl/uiconfig/basicide/accelerator/en-GB/default.xml
deleted
100644 → 0
Dosyayı görüntüle @
7c558d66
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE accel:acceleratorlist PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "accelerator.dtd">
<accel:acceleratorlist
xmlns:accel=
"http://openoffice.org/2001/accel"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
>
<accel:item
accel:code=
"KEY_F5"
xlink:href=
".uno:RunBasic"
/>
<accel:item
accel:code=
"KEY_F5"
accel:shift=
"true"
xlink:href=
".uno:BasicStop"
/>
<accel:item
accel:code=
"KEY_F7"
xlink:href=
".uno:AddWatch"
/>
<accel:item
accel:code=
"KEY_F8"
xlink:href=
".uno:BasicStepInto"
/>
<accel:item
accel:code=
"KEY_F8"
accel:shift=
"true"
xlink:href=
".uno:BasicStepOver"
/>
<accel:item
accel:code=
"KEY_F9"
xlink:href=
".uno:ToggleBreakPoint"
/>
<accel:item
accel:code=
"KEY_F9"
accel:shift=
"true"
xlink:href=
".uno:ToggleBreakPointEnabled"
/>
</accel:acceleratorlist>
basctl/uiconfig/basicide/accelerator/en-US/default.xml
deleted
100644 → 0
Dosyayı görüntüle @
7c558d66
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE accel:acceleratorlist PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "accelerator.dtd">
<accel:acceleratorlist
xmlns:accel=
"http://openoffice.org/2001/accel"
xmlns:xlink=
"http://www.w3.org/1999/xlink"
>
<accel:item
accel:code=
"KEY_F5"
xlink:href=
".uno:RunBasic"
/>
<accel:item
accel:code=
"KEY_F5"
accel:shift=
"true"
xlink:href=
".uno:BasicStop"
/>
<accel:item
accel:code=
"KEY_F7"
xlink:href=
".uno:AddWatch"
/>
<accel:item
accel:code=
"KEY_F8"
xlink:href=
".uno:BasicStepInto"
/>
<accel:item
accel:code=
"KEY_F8"
accel:shift=
"true"
xlink:href=
".uno:BasicStepOver"
/>
<accel:item
accel:code=
"KEY_F9"
xlink:href=
".uno:ToggleBreakPoint"
/>
<accel:item
accel:code=
"KEY_F9"
accel:shift=
"true"
xlink:href=
".uno:ToggleBreakPointEnabled"
/>
</accel:acceleratorlist>
wizards/com/sun/star/wizards/letter/LocaleCodes.java
Dosyayı görüntüle @
9e515931
...
...
@@ -41,7 +41,7 @@ public class LocaleCodes extends Resource
public
LocaleCodes
(
XMultiServiceFactory
xmsf
)
{
super
(
xmsf
,
UNIT_NAME
,
MODULE_NAME
);
allLanguageStrings
=
getStringList
(
16
750
);
// STR_ARR_SVT_LANGUAGE_TABLE from svtools/source/misc/langtab.src
allLanguageStrings
=
getStringList
(
16
635
);
// STR_ARR_SVT_LANGUAGE_TABLE from svtools/source/misc/langtab.src
}
public
String
getLanguageString
(
String
MSID
)
...
...
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