Issue 86563 - Multiline tooltips for dialog elements
Summary: Multiline tooltips for dialog elements
Status: UNCONFIRMED
Alias: None
Product: App Dev
Classification: Unclassified
Component: api (show other issues)
Version: 3.3.0 or older (OOo)
Hardware: All All
: P4 Trivial
Target Milestone: ---
Assignee: AOO issues mailing list
QA Contact:
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-02-29 09:23 UTC by tobiaskrais
Modified: 2013-02-24 21:08 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Latest Confirmation in: ---
Developer Difficulty: ---


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description tobiaskrais 2008-02-29 09:23:10 UTC
Hi together,

I tried to create multiline tooltips for dialog elements in Java. I can
only create single line dialogs:
-----%<-----
Object inputModel03 = 	    		
	xMSF.createInstance("com.sun.star.awt.UnoControlEditModel");
XPropertySet xPSetInput03 = (XPropertySet) UnoRuntime.queryInterface(
	XPropertySet.class, inputModel03);
xPSetInput03.setPropertyValue("PositionX", new Integer(160));
xPSetInput03.setPropertyValue("PositionY", positionY - 2);
xPSetInput03.setPropertyValue("Width", new Integer(60));
xPSetInput03.setPropertyValue("Height", new Integer(14));
xPSetInput03.setPropertyValue("HelpText", "Hello World");
xPSetInput03.setPropertyValue("Name", "Hello");
-----%<-----
Is there a possibility to create multiline dialogs? I tried \n within
the HelpText string, but it did not work. In some cases I would like to add more
information to a tooltip. But this more information generates an extreme long
tooltip that looks very bad.

Greetings, Tobias
Comment 1 jsc 2008-03-18 15:23:43 UTC
jsc -> cd: can you help