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
ca7f62c8
Kaydet (Commit)
ca7f62c8
authored
Şub 26, 2015
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Typos
Change-Id: Ic03fb2ee6470eac6034be13908dd9ec92cf175b6
üst
46ce8354
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
24 additions
and
24 deletions
+24
-24
EventTest.java
framework/qa/complex/XUserInputInterception/EventTest.java
+4
-4
CheckContextMenuInterceptor.java
...x/contextMenuInterceptor/CheckContextMenuInterceptor.java
+1
-1
RecoveryTest.java
framework/qa/complex/framework/recovery/RecoveryTest.java
+3
-3
Draw.xcs
officecfg/registry/schema/org/openoffice/Office/Draw.xcs
+1
-1
Impress.xcs
officecfg/registry/schema/org/openoffice/Office/Impress.xcs
+1
-1
_XUserInputInterception.java
qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java
+6
-6
_XEnhancedMouseClickBroadcaster.java
...tests/java/ifc/sheet/_XEnhancedMouseClickBroadcaster.java
+1
-1
_XContextMenuInterception.java
qadevOOo/tests/java/ifc/ui/_XContextMenuInterception.java
+1
-1
futext.cxx
sd/source/ui/func/futext.cxx
+3
-3
svgstyleattributes.cxx
svgio/source/svgreader/svgstyleattributes.cxx
+1
-1
tabbar.cxx
svtools/source/control/tabbar.cxx
+1
-1
sgvtext.cxx
vcl/source/filter/sgvtext.cxx
+1
-1
No files found.
framework/qa/complex/XUserInputInterception/EventTest.java
Dosyayı görüntüle @
ca7f62c8
...
@@ -454,10 +454,10 @@ public class EventTest {
...
@@ -454,10 +454,10 @@ public class EventTest {
}
}
}
}
/**
/**
* This method c
klicks into the middel
of a document. It uses Accessibility
* This method c
licks into the middle
of a document. It uses Accessibility
* to get the document and query for its position and its range to calculate
* to get the document and query for its position and its range to calculate
* the middle. This values was used for <CODE>Robot</CODE> Class. This
* the middle. This values was used for <CODE>Robot</CODE> Class. This
* Robot class is able to move the mouse and to c
k
lick a mouse button
* Robot class is able to move the mouse and to click a mouse button
* @see java.awt.Robot
* @see java.awt.Robot
*/
*/
private
void
clickIntoDoc
(){
private
void
clickIntoDoc
(){
...
@@ -484,7 +484,7 @@ public class EventTest {
...
@@ -484,7 +484,7 @@ public class EventTest {
Robot
rob
=
new
Robot
();
Robot
rob
=
new
Robot
();
int
x
=
point
.
X
+
(
rect
.
Width
/
2
);
int
x
=
point
.
X
+
(
rect
.
Width
/
2
);
int
y
=
point
.
Y
+
(
rect
.
Height
/
2
);
int
y
=
point
.
Y
+
(
rect
.
Height
/
2
);
System
.
out
.
println
(
"try to
k
lick into the middle of the document"
);
System
.
out
.
println
(
"try to
c
lick into the middle of the document"
);
rob
.
mouseMove
(
x
,
y
);
rob
.
mouseMove
(
x
,
y
);
rob
.
mousePress
(
InputEvent
.
BUTTON1_MASK
);
rob
.
mousePress
(
InputEvent
.
BUTTON1_MASK
);
rob
.
mouseRelease
(
InputEvent
.
BUTTON1_MASK
);
rob
.
mouseRelease
(
InputEvent
.
BUTTON1_MASK
);
...
@@ -520,7 +520,7 @@ public class EventTest {
...
@@ -520,7 +520,7 @@ public class EventTest {
*/
*/
private
interface
EventTriggerType
{
private
interface
EventTriggerType
{
/**
k
lick the mouse into the scroll bar*/
/**
c
lick the mouse into the scroll bar*/
int
MOUSE_KLICK_INTO_DOC
=
1
;
int
MOUSE_KLICK_INTO_DOC
=
1
;
/** write some text into a spread sheet*/
/** write some text into a spread sheet*/
...
...
framework/qa/complex/contextMenuInterceptor/CheckContextMenuInterceptor.java
Dosyayı görüntüle @
ca7f62c8
...
@@ -298,7 +298,7 @@ public class CheckContextMenuInterceptor
...
@@ -298,7 +298,7 @@ public class CheckContextMenuInterceptor
point
=
window
.
getLocationOnScreen
();
point
=
window
.
getLocationOnScreen
();
Rectangle
rect
=
window
.
getBounds
();
Rectangle
rect
=
window
.
getBounds
();
System
.
out
.
println
(
"
k
lick mouse button..."
);
System
.
out
.
println
(
"
c
lick mouse button..."
);
try
try
{
{
Robot
rob
=
new
Robot
();
Robot
rob
=
new
Robot
();
...
...
framework/qa/complex/framework/recovery/RecoveryTest.java
Dosyayı görüntüle @
ca7f62c8
...
@@ -310,9 +310,9 @@ public class RecoveryTest extends ComplexTestCase {
...
@@ -310,9 +310,9 @@ public class RecoveryTest extends ComplexTestCase {
* office is started after a crash. It waits until the "next>>" button is enabled
* office is started after a crash. It waits until the "next>>" button is enabled
* and click it then to continue.
* and click it then to continue.
* @param expectedDocumentCount the amount of documents which must be displayed in the recovery dialog
* @param expectedDocumentCount the amount of documents which must be displayed in the recovery dialog
* @param recover If the documen
st should be recoverd this variable must be true. If it is fasl
e
* @param recover If the documen
t should be recovered this variable must be true. If it is fals
e
* the recovery process was stopped and the button cancel was
k
licked.
* the recovery process was stopped and the button cancel was
c
licked.
* @param cancel If the recovery is fi
fnished, this parameter desicdes to k
lick the "Next" button
* @param cancel If the recovery is fi
nished, this parameter decides to c
lick the "Next" button
* or the click cancel. If the value is true, the cancel button was clicked.
* or the click cancel. If the value is true, the cancel button was clicked.
*/
*/
private
void
handleRecoveryDialogAtRestart
(
int
expectedDocumentCount
,
boolean
recover
,
boolean
cancel
){
private
void
handleRecoveryDialogAtRestart
(
int
expectedDocumentCount
,
boolean
recover
,
boolean
cancel
){
...
...
officecfg/registry/schema/org/openoffice/Office/Draw.xcs
Dosyayı görüntüle @
ca7f62c8
...
@@ -421,7 +421,7 @@
...
@@ -421,7 +421,7 @@
<group
oor:name=
"DefaultObjectSize"
>
<group
oor:name=
"DefaultObjectSize"
>
<!-- OldPath: -->
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- OldLocation: -->
<!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-
K
lick -->
<!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-
C
lick -->
<info>
<info>
<desc>
Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button
</desc>
<desc>
Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button
</desc>
<label>
Default Object Size
</label>
<label>
Default Object Size
</label>
...
...
officecfg/registry/schema/org/openoffice/Office/Impress.xcs
Dosyayı görüntüle @
ca7f62c8
...
@@ -655,7 +655,7 @@
...
@@ -655,7 +655,7 @@
<group
oor:name=
"DefaultObjectSize"
>
<group
oor:name=
"DefaultObjectSize"
>
<!-- OldPath: -->
<!-- OldPath: -->
<!-- OldLocation: -->
<!-- OldLocation: -->
<!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-
K
lick -->
<!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-
C
lick -->
<info>
<info>
<desc>
Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button.
</desc>
<desc>
Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button.
</desc>
<label>
Default Object Size
</label>
<label>
Default Object Size
</label>
...
...
qadevOOo/tests/java/ifc/awt/_XUserInputInterception.java
Dosyayı görüntüle @
ca7f62c8
...
@@ -174,7 +174,7 @@ public class _XUserInputInterception extends MultiMethodTest {
...
@@ -174,7 +174,7 @@ public class _XUserInputInterception extends MultiMethodTest {
}
}
/**
/**
* This test adds two different mouse
k
lick listener to the object. <p>
* This test adds two different mouse
c
lick listener to the object. <p>
*
*
* Has <b> OK </b> if no exception is thrown.
* Has <b> OK </b> if no exception is thrown.
*/
*/
...
@@ -194,7 +194,7 @@ public class _XUserInputInterception extends MultiMethodTest {
...
@@ -194,7 +194,7 @@ public class _XUserInputInterception extends MultiMethodTest {
/**
/**
* The test requires <CODE>addMouseClickHandler()</CODE> which adds two key listener.
* The test requires <CODE>addMouseClickHandler()</CODE> which adds two key listener.
* Then one of them will be removed. In a second thread a mouse
k
lick event is released
* Then one of them will be removed. In a second thread a mouse
c
lick event is released
* by the <CODE>robot</CODE> class.<p>
* by the <CODE>robot</CODE> class.<p>
* Has <b> OK </b> status if only one of the listener are triggered. <p>
* Has <b> OK </b> status if only one of the listener are triggered. <p>
* The following method tests are to be completed successfully before :
* The following method tests are to be completed successfully before :
...
@@ -452,10 +452,10 @@ public class _XUserInputInterception extends MultiMethodTest {
...
@@ -452,10 +452,10 @@ public class _XUserInputInterception extends MultiMethodTest {
}
}
}
}
/**
/**
* This method c
klicks into the middel
of a document. It uses Accessibility
* This method c
licks into the middle
of a document. It uses Accessibility
* to get the document and query for its position and its range to calculate
* to get the document and query for its position and its range to calculate
* the middle. This values was used for <CODE>Robot</CODE> Class. This
* the middle. This values was used for <CODE>Robot</CODE> Class. This
* Robot class is able to move the mouse and to c
k
lick a mouse button
* Robot class is able to move the mouse and to click a mouse button
* @see java.awt.Robot
* @see java.awt.Robot
*/
*/
private
void
clickIntoDoc
(){
private
void
clickIntoDoc
(){
...
@@ -483,7 +483,7 @@ public class _XUserInputInterception extends MultiMethodTest {
...
@@ -483,7 +483,7 @@ public class _XUserInputInterception extends MultiMethodTest {
Robot
rob
=
new
Robot
();
Robot
rob
=
new
Robot
();
int
x
=
point
.
X
+
(
rect
.
Width
/
2
);
int
x
=
point
.
X
+
(
rect
.
Width
/
2
);
int
y
=
point
.
Y
+
(
rect
.
Height
/
2
);
int
y
=
point
.
Y
+
(
rect
.
Height
/
2
);
log
.
println
(
"try to
k
lick into the middle of the document"
);
log
.
println
(
"try to
c
lick into the middle of the document"
);
rob
.
mouseMove
(
x
,
y
);
rob
.
mouseMove
(
x
,
y
);
rob
.
mousePress
(
InputEvent
.
BUTTON1_MASK
);
rob
.
mousePress
(
InputEvent
.
BUTTON1_MASK
);
rob
.
mouseRelease
(
InputEvent
.
BUTTON1_MASK
);
rob
.
mouseRelease
(
InputEvent
.
BUTTON1_MASK
);
...
@@ -519,7 +519,7 @@ public class _XUserInputInterception extends MultiMethodTest {
...
@@ -519,7 +519,7 @@ public class _XUserInputInterception extends MultiMethodTest {
*/
*/
private
interface
EventTriggerType
{
private
interface
EventTriggerType
{
/**
k
lick the mouse into the scroll bar*/
/**
c
lick the mouse into the scroll bar*/
int
MOUSE_KLICK_INTO_DOC
=
1
;
int
MOUSE_KLICK_INTO_DOC
=
1
;
/** write some text into a spread sheet*/
/** write some text into a spread sheet*/
...
...
qadevOOo/tests/java/ifc/sheet/_XEnhancedMouseClickBroadcaster.java
Dosyayı görüntüle @
ca7f62c8
...
@@ -88,7 +88,7 @@ public class _XEnhancedMouseClickBroadcaster extends MultiMethodTest {
...
@@ -88,7 +88,7 @@ public class _XEnhancedMouseClickBroadcaster extends MultiMethodTest {
Point
point
=
window
.
getLocationOnScreen
();
Point
point
=
window
.
getLocationOnScreen
();
Rectangle
rect
=
window
.
getBounds
();
Rectangle
rect
=
window
.
getBounds
();
log
.
println
(
"
k
lick mouse button..."
);
log
.
println
(
"
c
lick mouse button..."
);
try
{
try
{
Robot
rob
=
new
Robot
();
Robot
rob
=
new
Robot
();
int
x
=
point
.
X
+
(
rect
.
Width
/
2
)+
50
;
int
x
=
point
.
X
+
(
rect
.
Width
/
2
)+
50
;
...
...
qadevOOo/tests/java/ifc/ui/_XContextMenuInterception.java
Dosyayı görüntüle @
ca7f62c8
...
@@ -167,7 +167,7 @@ public class _XContextMenuInterception extends MultiMethodTest {
...
@@ -167,7 +167,7 @@ public class _XContextMenuInterception extends MultiMethodTest {
point
=
window
.
getLocationOnScreen
();
point
=
window
.
getLocationOnScreen
();
Rectangle
rect
=
window
.
getBounds
();
Rectangle
rect
=
window
.
getBounds
();
log
.
println
(
"
k
lick mouse button..."
);
log
.
println
(
"
c
lick mouse button..."
);
try
{
try
{
Robot
rob
=
new
Robot
();
Robot
rob
=
new
Robot
();
int
x
=
point
.
X
+
(
rect
.
Width
/
2
);
int
x
=
point
.
X
+
(
rect
.
Width
/
2
);
...
...
sd/source/ui/func/futext.cxx
Dosyayı görüntüle @
ca7f62c8
...
@@ -513,7 +513,7 @@ void FuText::ImpSetAttributesForNewTextObject(SdrTextObj* pTxtObj)
...
@@ -513,7 +513,7 @@ void FuText::ImpSetAttributesForNewTextObject(SdrTextObj* pTxtObj)
aSet
.
Put
(
makeSdrTextAutoGrowWidthItem
(
true
));
aSet
.
Put
(
makeSdrTextAutoGrowWidthItem
(
true
));
aSet
.
Put
(
makeSdrTextAutoGrowHeightItem
(
false
));
aSet
.
Put
(
makeSdrTextAutoGrowHeightItem
(
false
));
// Set defaults for vertical
k
lick-n'drag text object, pool defaults are:
// Set defaults for vertical
c
lick-n'drag text object, pool defaults are:
// SdrTextVertAdjustItem: SDRTEXTVERTADJUST_TOP
// SdrTextVertAdjustItem: SDRTEXTVERTADJUST_TOP
// SdrTextHorzAdjustItem: SDRTEXTHORZADJUST_BLOCK
// SdrTextHorzAdjustItem: SDRTEXTHORZADJUST_BLOCK
// Analog to that:
// Analog to that:
...
@@ -796,10 +796,10 @@ bool FuText::MouseButtonUp(const MouseEvent& rMEvt)
...
@@ -796,10 +796,10 @@ bool FuText::MouseButtonUp(const MouseEvent& rMEvt)
{
{
// Here, all items which need to be different from pool default need to be set
// Here, all items which need to be different from pool default need to be set
// again on the newly created text object.
// again on the newly created text object.
// Since this is a simple
k
lick text object, it is first created, then SetVertical()
// Since this is a simple
c
lick text object, it is first created, then SetVertical()
// is used, then ImpSetAttributesForNewTextObject is called and then the object is
// is used, then ImpSetAttributesForNewTextObject is called and then the object is
// deleted again since not the minimum drag distance was travelled. Then, a new
// deleted again since not the minimum drag distance was travelled. Then, a new
//
k
lick text object is created and thus all that stuff needs to be set again here.
//
c
lick text object is created and thus all that stuff needs to be set again here.
// Before using the new object the vertical writing mode
// Before using the new object the vertical writing mode
// needs to be set. This is done here at the OutlinerParaObject
// needs to be set. This is done here at the OutlinerParaObject
...
...
svgio/source/svgreader/svgstyleattributes.cxx
Dosyayı görüntüle @
ca7f62c8
...
@@ -2272,7 +2272,7 @@ namespace svgio
...
@@ -2272,7 +2272,7 @@ namespace svgio
if
(
maFontSize
.
isSet
())
if
(
maFontSize
.
isSet
())
{
{
// #122524# Handle Unit_percent realtive to parent FontSize (see SVG1.1
// #122524# Handle Unit_percent realtive to parent FontSize (see SVG1.1
// spec 10.10 Font selection properties \91font-size\92, lastline (
k
lick 'normative
// spec 10.10 Font selection properties \91font-size\92, lastline (
c
lick 'normative
// definition of the property')
// definition of the property')
if
(
Unit_percent
==
maFontSize
.
getUnit
())
if
(
Unit_percent
==
maFontSize
.
getUnit
())
{
{
...
...
svtools/source/control/tabbar.cxx
Dosyayı görüntüle @
ca7f62c8
...
@@ -859,7 +859,7 @@ void TabBar::MouseMove( const MouseEvent& rMEvt )
...
@@ -859,7 +859,7 @@ void TabBar::MouseMove( const MouseEvent& rMEvt )
void
TabBar
::
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
void
TabBar
::
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
{
{
// Only terminate EditModus and do not execute
K
lick
// Only terminate EditModus and do not execute
c
lick
// if clicked inside our window,
// if clicked inside our window,
if
(
IsInEditMode
()
)
if
(
IsInEditMode
()
)
{
{
...
...
vcl/source/filter/sgvtext.cxx
Dosyayı görüntüle @
ca7f62c8
...
@@ -798,7 +798,7 @@ void FormatLine(UCHAR* TBuf, sal_uInt16& Index, ObjTextType& Atr0, ObjTextType&
...
@@ -798,7 +798,7 @@ void FormatLine(UCHAR* TBuf, sal_uInt16& Index, ObjTextType& Atr0, ObjTextType&
switch
(
Just
)
{
switch
(
Just
)
{
case
THJustLeft
:
break
;
// left
case
THJustLeft
:
break
;
// left
case
THJustCenter
:
{
case
THJustCenter
:
{
BoxRest
=
BoxRest
/
2
;
// midd
el
BoxRest
=
BoxRest
/
2
;
// midd
le
for
(
i
=
1
;
i
<=
nChars
;
i
++
)
Line
[
i
]
=
Line
[
i
]
+
BoxRest
;
for
(
i
=
1
;
i
<=
nChars
;
i
++
)
Line
[
i
]
=
Line
[
i
]
+
BoxRest
;
}
break
;
}
break
;
case
THJustRight
:
{
// right
case
THJustRight
:
{
// right
...
...
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