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
72cc18f2
Kaydet (Commit)
72cc18f2
authored
Nis 09, 2010
tarafından
Frank Schoenheit [fs]
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
slidecopy: merge CWS wth MWS-m76
üst
1b192bd3
b7b7e92d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
336 additions
and
20 deletions
+336
-20
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
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
hldoctp.cxx
cui/source/dialogs/hldoctp.cxx
+4
-10
No files found.
accessibility/inc/accessibility/extended/AccessibleToolPanelDeck.hxx
0 → 100755
Dosyayı görüntüle @
72cc18f2
/*************************************************************************
* 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 @
72cc18f2
/*************************************************************************
* 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 @
72cc18f2
/*************************************************************************
* 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 @
72cc18f2
...
...
@@ -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 @
72cc18f2
This diff is collapsed.
Click to expand it.
accessibility/source/extended/AccessibleToolPanelDeckTabBar.cxx
0 → 100644
Dosyayı görüntüle @
72cc18f2
This diff is collapsed.
Click to expand it.
accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx
0 → 100644
Dosyayı görüntüle @
72cc18f2
This diff is collapsed.
Click to expand it.
accessibility/source/extended/makefile.mk
100644 → 100755
Dosyayı görüntüle @
72cc18f2
...
...
@@ -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 @
72cc18f2
...
...
@@ -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 @
72cc18f2
...
...
@@ -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";
};
cui/source/dialogs/hldoctp.cxx
Dosyayı görüntüle @
72cc18f2
...
...
@@ -39,7 +39,6 @@
sal_Char
__READONLY_DATA
sHash
[]
=
"#"
;
sal_Char
__READONLY_DATA
sFileScheme
[]
=
INET_FILE_SCHEME
;
sal_Char
__READONLY_DATA
sPortalFileScheme
[]
=
"vnd.sun.star.wfs://"
;
sal_Char
__READONLY_DATA
sNewsSRVScheme
[]
=
"news://"
;
// TODO news:// is nonsense
sal_Char
__READONLY_DATA
sHTTPScheme
[]
=
INET_HTTP_SCHEME
;
...
...
@@ -170,8 +169,7 @@ void SvxHyperlinkDocTp::GetCurentItemData ( String& aStrURL, String& aStrName,
// get data from standard-fields
aStrURL
=
GetCurrentURL
();
if
(
aStrURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
)
||
aStrURL
.
EqualsIgnoreCaseAscii
(
sPortalFileScheme
)
)
if
(
aStrURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
)
)
aStrURL
=
aEmptyStr
;
GetDataFromCommonFields
(
aStrName
,
aStrIntName
,
aStrFrame
,
eMode
);
...
...
@@ -212,8 +210,7 @@ IMPL_LINK ( SvxHyperlinkDocTp, ClickFileopenHdl_Impl, void *, EMPTYARG )
com
::
sun
::
star
::
ui
::
dialogs
::
TemplateDescription
::
FILEOPEN_SIMPLE
,
0
,
GetParent
()
);
String
aOldURL
(
GetCurrentURL
()
);
if
(
aOldURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
,
0
,
sizeof
(
sFileScheme
)
-
1
)
||
aOldURL
.
EqualsIgnoreCaseAscii
(
sPortalFileScheme
,
0
,
sizeof
(
sFileScheme
)
-
1
)
)
if
(
aOldURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
,
0
,
sizeof
(
sFileScheme
)
-
1
)
)
{
aDlg
.
SetDisplayDirectory
(
aOldURL
);
}
...
...
@@ -250,15 +247,13 @@ IMPL_LINK ( SvxHyperlinkDocTp, ClickTargetHdl_Impl, void *, EMPTYARG )
if
(
GetPathType
(
maStrURL
)
==
Type_ExistsFile
||
maStrURL
==
aEmptyStr
||
maStrURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
)
||
maStrURL
.
EqualsIgnoreCaseAscii
(
sPortalFileScheme
)
||
maStrURL
.
SearchAscii
(
sHash
)
==
0
)
{
mpMarkWnd
->
SetError
(
LERR_NOERROR
);
EnterWait
();
if
(
maStrURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
)
||
maStrURL
.
EqualsIgnoreCaseAscii
(
sPortalFileScheme
)
)
if
(
maStrURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
)
)
mpMarkWnd
->
RefreshTree
(
aEmptyStr
);
else
mpMarkWnd
->
RefreshTree
(
maStrURL
);
...
...
@@ -305,8 +300,7 @@ IMPL_LINK ( SvxHyperlinkDocTp, TimeoutHdl_Impl, Timer *, EMPTYARG )
{
EnterWait
();
if
(
maStrURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
)
||
maStrURL
.
EqualsIgnoreCaseAscii
(
sPortalFileScheme
)
)
if
(
maStrURL
.
EqualsIgnoreCaseAscii
(
sFileScheme
)
)
mpMarkWnd
->
RefreshTree
(
aEmptyStr
);
else
mpMarkWnd
->
RefreshTree
(
maStrURL
);
...
...
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