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
41be6769
Kaydet (Commit)
41be6769
authored
Eyl 08, 2003
tarafından
Rüdiger Timm
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS qadev11 (1.2.14); FILE MERGED
2003/09/03 15:29:51 sw 1.2.14.1: #112049#
üst
e1bd13e6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
80 additions
and
62 deletions
+80
-62
Toolkit.java
qadevOOo/tests/java/mod/_toolkit/Toolkit.java
+14
-14
UnoControlButton.java
qadevOOo/tests/java/mod/_toolkit/UnoControlButton.java
+66
-48
No files found.
qadevOOo/tests/java/mod/_toolkit/Toolkit.java
Dosyayı görüntüle @
41be6769
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: Toolkit.java,v $
* $RCSfile: Toolkit.java,v $
*
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
*
* last change:$Date: 2003-0
5-27 14:00:5
6 $
* last change:$Date: 2003-0
9-08 13:03:1
6 $
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -61,27 +61,28 @@
...
@@ -61,27 +61,28 @@
package
mod
.
_toolkit
;
package
mod
.
_toolkit
;
import
com.sun.star.awt.XControl
;
import
java.io.PrintWriter
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
lib.StatusException
;
import
lib.TestCase
;
import
lib.TestEnvironment
;
import
lib.TestParameters
;
import
util.FormTools
;
import
util.SOfficeFactory
;
import
util.WriterTools
;
import
util.utils
;
import
com.sun.star.awt.XControlModel
;
import
com.sun.star.awt.XControlModel
;
import
com.sun.star.awt.XWindow
;
import
com.sun.star.awt.XWindow
;
import
com.sun.star.awt.XWindowPeer
;
import
com.sun.star.awt.XWindowPeer
;
import
com.sun.star.drawing.XControlShape
;
import
com.sun.star.drawing.XControlShape
;
import
com.sun.star.drawing.XShape
;
import
com.sun.star.drawing.XShape
;
import
com.sun.star.frame.XController
;
import
com.sun.star.frame.XController
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.text.XTextDocument
;
import
com.sun.star.text.XTextDocument
;
import
com.sun.star.uno.UnoRuntime
;
import
com.sun.star.uno.UnoRuntime
;
import
com.sun.star.uno.XInterface
;
import
com.sun.star.uno.XInterface
;
import
com.sun.star.view.XControlAccess
;
import
com.sun.star.view.XControlAccess
;
import
java.io.PrintWriter
;
import
lib.StatusException
;
import
lib.TestCase
;
import
lib.TestEnvironment
;
import
lib.TestParameters
;
import
util.FormTools
;
import
util.SOfficeFactory
;
import
util.WriterTools
;
import
util.utils
;
/**
/**
* Test for <code>com.sun.star.awt.Toolkit</code> service.
* Test for <code>com.sun.star.awt.Toolkit</code> service.
...
@@ -134,7 +135,6 @@ public class Toolkit extends TestCase {
...
@@ -134,7 +135,6 @@ public class Toolkit extends TestCase {
//now get the toolkit
//now get the toolkit
try
{
try
{
XControl
ctrl
=
the_access
.
getControl
(
the_Model
)
;
win
=
cntrlr
.
getFrame
().
getContainerWindow
();
win
=
cntrlr
.
getFrame
().
getContainerWindow
();
//win = (XWindow) UnoRuntime.queryInterface(XWindow.class, ctrl) ;
//win = (XWindow) UnoRuntime.queryInterface(XWindow.class, ctrl) ;
the_win
=
the_access
.
getControl
(
the_Model
).
getPeer
();
the_win
=
the_access
.
getControl
(
the_Model
).
getPeer
();
...
...
qadevOOo/tests/java/mod/_toolkit/UnoControlButton.java
Dosyayı görüntüle @
41be6769
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: UnoControlButton.java,v $
* $RCSfile: UnoControlButton.java,v $
*
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
*
* last change:$Date: 2003-0
5-27 14:01:0
8 $
* last change:$Date: 2003-0
9-08 13:03:2
8 $
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -58,11 +58,20 @@
...
@@ -58,11 +58,20 @@
*
*
*
*
************************************************************************/
************************************************************************/
package
mod
.
_toolkit
;
package
mod
.
_toolkit
;
import
java.io.PrintWriter
;
import
lib.StatusException
;
import
lib.TestCase
;
import
lib.TestEnvironment
;
import
lib.TestParameters
;
import
util.FormTools
;
import
util.SOfficeFactory
;
import
util.WriterTools
;
import
util.utils
;
import
com.sun.star.awt.XControlModel
;
import
com.sun.star.awt.XControlModel
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.awt.XDevice
;
import
com.sun.star.awt.XDevice
;
import
com.sun.star.awt.XGraphics
;
import
com.sun.star.awt.XGraphics
;
import
com.sun.star.awt.XToolkit
;
import
com.sun.star.awt.XToolkit
;
...
@@ -72,56 +81,64 @@ import com.sun.star.drawing.XControlShape;
...
@@ -72,56 +81,64 @@ import com.sun.star.drawing.XControlShape;
import
com.sun.star.drawing.XShape
;
import
com.sun.star.drawing.XShape
;
import
com.sun.star.frame.XController
;
import
com.sun.star.frame.XController
;
import
com.sun.star.frame.XFrame
;
import
com.sun.star.frame.XFrame
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.text.XTextDocument
;
import
com.sun.star.text.XTextDocument
;
import
com.sun.star.uno.UnoRuntime
;
import
com.sun.star.uno.UnoRuntime
;
import
com.sun.star.uno.XInterface
;
import
com.sun.star.uno.XInterface
;
import
com.sun.star.util.XCloseable
;
import
com.sun.star.view.XControlAccess
;
import
com.sun.star.view.XControlAccess
;
import
java.io.PrintWriter
;
import
lib.StatusException
;
import
lib.TestCase
;
import
lib.TestEnvironment
;
import
lib.TestParameters
;
import
util.FormTools
;
import
util.SOfficeFactory
;
import
util.WriterTools
;
import
util.utils
;
public
class
UnoControlButton
extends
TestCase
{
public
class
UnoControlButton
extends
TestCase
{
XTextDocument
xTextDoc
;
XTextDocument
xTextDoc
;
XTextDocument
xTD2
;
XTextDocument
xTD2
;
protected
void
initialize
(
TestParameters
Param
,
PrintWriter
log
)
{
protected
void
initialize
(
TestParameters
Param
,
PrintWriter
log
)
{
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
(
XMultiServiceFactory
)
Param
.
getMSF
()
);
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
(
XMultiServiceFactory
)
Param
.
getMSF
()
);
try
{
try
{
log
.
println
(
"creating a textdocument"
);
log
.
println
(
"creating a textdocument"
);
xTextDoc
=
SOF
.
createTextDoc
(
null
);
xTextDoc
=
SOF
.
createTextDoc
(
null
);
xTD2
=
WriterTools
.
createTextDoc
(
(
XMultiServiceFactory
)
Param
.
getMSF
());
xTD2
=
WriterTools
.
createTextDoc
(
(
XMultiServiceFactory
)
Param
.
getMSF
());
}
catch
(
com
.
sun
.
star
.
uno
.
Exception
e
)
{
}
catch
(
com
.
sun
.
star
.
uno
.
Exception
e
)
{
// Some exception occures.FAILED
// Some exception occures.FAILED
e
.
printStackTrace
(
log
);
e
.
printStackTrace
(
log
);
throw
new
StatusException
(
"Couldn't create document"
,
e
);
throw
new
StatusException
(
"Couldn't create document"
,
e
);
}
}
}
}
protected
void
cleanup
(
TestParameters
tParam
,
PrintWriter
log
)
{
protected
void
cleanup
(
TestParameters
tParam
,
PrintWriter
log
)
{
log
.
println
(
" disposing xTextDoc "
);
log
.
println
(
" disposing xTextDoc "
);
xTextDoc
.
dispose
();
xTD2
.
dispose
();
try
{
XCloseable
closer
=
(
XCloseable
)
UnoRuntime
.
queryInterface
(
XCloseable
.
class
,
xTextDoc
);
closer
.
close
(
true
);
closer
=
(
XCloseable
)
UnoRuntime
.
queryInterface
(
XCloseable
.
class
,
xTD2
);
closer
.
close
(
true
);
}
catch
(
com
.
sun
.
star
.
util
.
CloseVetoException
e
)
{
log
.
println
(
"couldn't close document"
);
}
catch
(
com
.
sun
.
star
.
lang
.
DisposedException
e
)
{
log
.
println
(
"couldn't close document"
);
}
}
}
public
TestEnvironment
createTestEnvironment
public
TestEnvironment
createTestEnvironment
(
TestParameters
Param
,
(
TestParameters
Param
,
PrintWriter
log
)
{
PrintWriter
log
)
{
XInterface
oObj
=
null
;
XInterface
oObj
=
null
;
XWindowPeer
the_win
=
null
;
XWindowPeer
the_win
=
null
;
XToolkit
the_kit
=
null
;
XToolkit
the_kit
=
null
;
XDevice
aDevice
=
null
;
XDevice
aDevice
=
null
;
XGraphics
aGraphic
=
null
;
XGraphics
aGraphic
=
null
;
XWindow
anotherWindow
=
null
;
XWindow
anotherWindow
=
null
;
//Insert a ControlShape and get the ControlModel
//Insert a ControlShape and get the ControlModel
XControlShape
aShape
=
FormTools
.
createUnoControlShape
(
XControlShape
aShape
=
FormTools
.
createUnoControlShape
(
xTextDoc
,
3000
,
xTextDoc
,
3000
,
4500
,
15000
,
10000
,
"CommandButton"
,
"UnoControlButton"
);
4500
,
15000
,
10000
,
"CommandButton"
,
"UnoControlButton"
);
WriterTools
.
getDrawPage
(
xTextDoc
).
add
((
XShape
)
aShape
);
WriterTools
.
getDrawPage
(
xTextDoc
).
add
((
XShape
)
aShape
);
...
@@ -129,52 +146,53 @@ public class UnoControlButton extends TestCase {
...
@@ -129,52 +146,53 @@ public class UnoControlButton extends TestCase {
//Try to query XControlAccess
//Try to query XControlAccess
XControlAccess
the_access
=
(
XControlAccess
)
UnoRuntime
.
queryInterface
(
XControlAccess
the_access
=
(
XControlAccess
)
UnoRuntime
.
queryInterface
(
XControlAccess
.
class
,
xTextDoc
.
getCurrentController
());
XControlAccess
.
class
,
xTextDoc
.
getCurrentController
());
//get the ButtonControl for the needed Object relations
//get the ButtonControl for the needed Object relations
try
{
try
{
oObj
=
the_access
.
getControl
(
the_Model
);
oObj
=
the_access
.
getControl
(
the_Model
);
the_win
=
the_access
.
getControl
(
the_Model
).
getPeer
();
the_win
=
the_access
.
getControl
(
the_Model
).
getPeer
();
the_kit
=
the_win
.
getToolkit
();
the_kit
=
the_win
.
getToolkit
();
aDevice
=
the_kit
.
createScreenCompatibleDevice
(
200
,
200
);
aDevice
=
the_kit
.
createScreenCompatibleDevice
(
200
,
200
);
aGraphic
=
aDevice
.
createGraphics
();
aGraphic
=
aDevice
.
createGraphics
();
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
println
(
"Couldn't get ButtonControl"
);
log
.
println
(
"Couldn't get ButtonControl"
);
e
.
printStackTrace
(
log
);
e
.
printStackTrace
(
log
);
throw
new
StatusException
(
"Couldn't get ButtonControl"
,
e
);
throw
new
StatusException
(
"Couldn't get ButtonControl"
,
e
);
}
}
log
.
println
(
"creating a new environment for UnoControlButton object"
);
log
.
println
(
"creating a new environment for UnoControlButton object"
);
TestEnvironment
tEnv
=
new
TestEnvironment
(
oObj
);
TestEnvironment
tEnv
=
new
TestEnvironment
(
oObj
);
//Adding ObjRelation for XView
//Adding ObjRelation for XView
tEnv
.
addObjRelation
(
"GRAPHICS"
,
aGraphic
);
tEnv
.
addObjRelation
(
"GRAPHICS"
,
aGraphic
);
//Adding ObjRelation for XControl
//Adding ObjRelation for XControl
tEnv
.
addObjRelation
(
"CONTEXT"
,
xTextDoc
);
tEnv
.
addObjRelation
(
"CONTEXT"
,
xTextDoc
);
tEnv
.
addObjRelation
(
"WINPEER"
,
the_win
);
tEnv
.
addObjRelation
(
"WINPEER"
,
the_win
);
tEnv
.
addObjRelation
(
"TOOLKIT"
,
the_kit
);
tEnv
.
addObjRelation
(
"TOOLKIT"
,
the_kit
);
tEnv
.
addObjRelation
(
"MODEL"
,
the_Model
);
tEnv
.
addObjRelation
(
"MODEL"
,
the_Model
);
System
.
out
.
println
(
"ImplementationName: "
+
utils
.
getImplName
(
oObj
));
System
.
out
.
println
(
"ImplementationName: "
+
utils
.
getImplName
(
oObj
));
try
{
try
{
XController
aController
=
xTD2
.
getCurrentController
();
XController
aController
=
xTD2
.
getCurrentController
();
XFrame
aFrame
=
aController
.
getFrame
();
XFrame
aFrame
=
aController
.
getFrame
();
anotherWindow
=
aFrame
.
getComponentWindow
();
anotherWindow
=
aFrame
.
getComponentWindow
();
}
}
catch
(
Exception
e
)
{
catch
(
Exception
e
)
{
e
.
printStackTrace
(
log
);
e
.
printStackTrace
(
log
);
throw
new
StatusException
(
"Couldn't create XWindow"
,
e
);
throw
new
StatusException
(
"Couldn't create XWindow"
,
e
);
}
}
// Object Relation for XWindow
// Object Relation for XWindow
tEnv
.
addObjRelation
(
"XWindow.AnotherWindow"
,
anotherWindow
);
tEnv
.
addObjRelation
(
"XWindow.AnotherWindow"
,
anotherWindow
);
tEnv
.
addObjRelation
(
"XWindow.ControlShape"
,
aShape
);
tEnv
.
addObjRelation
(
"XWindow.ControlShape"
,
aShape
);
return
tEnv
;
return
tEnv
;
}
// finish method getTestEnvironment
}
// finish method getTestEnvironment
}
// finish class UnoControlButton
}
// finish class UnoControlButton
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