[dev] Need developer guidance or redirection!

2006-02-15 Thread George Vasiliou

Hello!

Please forgive my ignorance if this is not the correct question or if 
this is not the correct forum to address it! I will describe in a few 
words what I want to do.


I need a text editor to write a symbolic language that has many symbols 
which are combined to produce characters, just like Arabic or Thai 
characters do. That is I need a keyboard interceptor (to know which key 
has been tapped and intercept it to a symbol) and a layouting (glyph 
positioning) mechanism. I have already created a font containing the 
symbol glyphs and a prototype application in java using custom 
javax.swing.text.View classes. The problem is that I need a full 
application, just like OpenOffice Writer, in order to produce real 
documents, with real and my symbolic text combined.


Is there any way I can plug-in the logic of my Keyboard interceptor and 
my glyph positioning mechanism in OpenOffice? I have started reading the 
Developer's guide but it is vast(!) and I think it does not give me any 
clue if what I want to do can be done in OpenOffice. Can anyone answer 
this question or point me any web link that can help me figure it out 
myself? Code samples would be much appreciated because as a pure Java 
developer I have difficulties in starting to understand the OpenOffice 
programming itself!



Many thanks and regards
George Vasiliou
Athens, Greece

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] Need developer guidance or redirection!

2006-02-15 Thread Tom Schindl
I think the dev@api.openoffice.org is more appropriate for this type of
question.

I'd say that a XKeyListener is what you are looking for but I'm not sure:

http://api.openoffice.org/docs/common/ref/com/sun/star/awt/XKeyListener.html
http://api.openoffice.org/docs/common/ref/com/sun/star/awt/XWindow.html
http://api.openoffice.org/docs/DevelopersGuide/OfficeDev/OfficeDev.xhtml

Tom

George Vasiliou wrote:
 Hello!
 
 Please forgive my ignorance if this is not the correct question or if
 this is not the correct forum to address it! I will describe in a few
 words what I want to do.
 
 I need a text editor to write a symbolic language that has many symbols
 which are combined to produce characters, just like Arabic or Thai
 characters do. That is I need a keyboard interceptor (to know which key
 has been tapped and intercept it to a symbol) and a layouting (glyph
 positioning) mechanism. I have already created a font containing the
 symbol glyphs and a prototype application in java using custom
 javax.swing.text.View classes. The problem is that I need a full
 application, just like OpenOffice Writer, in order to produce real
 documents, with real and my symbolic text combined.
 
 Is there any way I can plug-in the logic of my Keyboard interceptor and
 my glyph positioning mechanism in OpenOffice? I have started reading the
 Developer's guide but it is vast(!) and I think it does not give me any
 clue if what I want to do can be done in OpenOffice. Can anyone answer
 this question or point me any web link that can help me figure it out
 myself? Code samples would be much appreciated because as a pure Java
 developer I have difficulties in starting to understand the OpenOffice
 programming itself!
 
 
 Many thanks and regards
 George Vasiliou
 Athens, Greece
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 



[dev] Re: Re: TextField (Title,Subject,Comments, etc.)

2006-02-15 Thread Vincenzo Giuliano

Vincenzo Giuliano wrote:


Vincenzo Giuliano wrote:


Hi ALL,
my name is Vincenzo. I have a question for YOU.
How can I read the Writer document properties (File - Properties -) 
in Java code?

I seen the developer's guide but I don't understand as I have to do.
Thank you ALL

For example, how can I read the Writer document keywords? How have to 
I use the XTextFieldsSupplier?


Thank you ALL.



Whoever seeks will find.
I solved my problem.

XTextDocument xtd = 
(XTextDocument)UnoRuntime.queryInterface(XTextDocument.class,xComponent);
XDocumentInfoSupplier xdis = 
(XDocumentInfoSupplier)UnoRuntime.queryInterface(XDocumentInfoSupplier.class,xtd);

XDocumentInfo xdi = xdis.getDocumentInfo();
  
XPropertySet xps = 
(XPropertySet)UnoRuntime.queryInterface(XPropertySet.class,xdi);
  
XPropertySetInfo xpsi = xps.getPropertySetInfo();

Property[] props = xpsi.getProperties();


The properties are within props




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] SO 7.0 PU 6 - where to find mor infos about the fixed issues ?

2006-02-15 Thread Oliver Brinzing
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

i found a new product update for so 7.0 on
http://sunsolve.sun.com/pub-cgi/show.pl?target=patches/xprod-StarOfficenav=pub-patches

Patch-ID# 116520-08
Keywords: writer calc draw impress math base setup saving documents security
Synopsis: StarOffice/StarSuite 7 (Windows): Product Update 6
Date: Jan/26/2006

it seems the following problems have been fixed ...

6325192 StarOffice7 writer crashes sliently after typing the keysequence of 
“Chinese char +
special char
6326717 Numbering changes if the link is cut between the master document and 
the source file.
6333608 Inserting animated images causes Presentation to crash
6341243 Dialog boxes under olwm are cut off when changing the scale of the 
StarOffice view

where can i find more infos about the fixed bugs ?
i can not find any issue tracker tasks ...

Oliver
- --

GnuPG key 0xCFD04A45: 8822 057F 4956 46D3 352C 1A06 4E2C AB40 CFD0 4A45
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD4DBQFD81tkTiyrQM/QSkURAtihAJiwLte3pjKW/qYGaIdpnztMUPkFAJ9Qxpjz
jUn9kXMnv9aW2HVtuCRd+A==
=gLol
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [dev] Re: Re: TextField (Title,Subject,Comments, etc.)

2006-02-15 Thread Tom Schindl
Could you please submit this small piece of code to our snippet collection?

http://codesnippets.services.openoffice.org/
http://www.paolo-mantovani.org/

Tom


[dev] TextField (Title,Subject,Comments, etc.)

2006-02-15 Thread Vincenzo Giuliano

Hi ALL,
my name is Vincenzo. I have a question for YOU.
How can I read the Writer document properties (File - Properties -) in 
Java code?

I seen the developer's guide but I don't understand as I have to do.
Thank you ALL

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]