зеркало из https://github.com/mono/mail-archives.git
225 строки
4.9 KiB
HTML
225 строки
4.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<TITLE> [Mono-bugs] [Bug 425277] UIA Suport in ToolTip Component
|
|
</TITLE>
|
|
<LINK REL="Index" HREF="index.html" >
|
|
<LINK REL="made" HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%20425277%5D%20UIA%20Suport%20in%20ToolTip%20Component&In-Reply-To=bug-425277-28286%40https.bugzilla.novell.com/">
|
|
<META NAME="robots" CONTENT="index,nofollow">
|
|
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
|
|
<LINK REL="Previous" HREF="079214.html">
|
|
<LINK REL="Next" HREF="079216.html">
|
|
</HEAD>
|
|
<BODY BGCOLOR="#ffffff">
|
|
<H1>[Mono-bugs] [Bug 425277] UIA Suport in ToolTip Component</H1>
|
|
<B>bugzilla_noreply at novell.com</B>
|
|
<A HREF="mailto:mono-bugs%40lists.ximian.com?Subject=%5BMono-bugs%5D%20%5BBug%20425277%5D%20UIA%20Suport%20in%20ToolTip%20Component&In-Reply-To=bug-425277-28286%40https.bugzilla.novell.com/"
|
|
TITLE="[Mono-bugs] [Bug 425277] UIA Suport in ToolTip Component">bugzilla_noreply at novell.com
|
|
</A><BR>
|
|
<I>Wed Sep 10 17:50:51 EDT 2008</I>
|
|
<P><UL>
|
|
<LI>Previous message: <A HREF="079214.html">[Mono-bugs] [Bug 425277] UIA Suport in ToolTip Component
|
|
</A></li>
|
|
<LI>Next message: <A HREF="079216.html">[Mono-bugs] [Bug 425277] UIA Suport in ToolTip Component
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#79215">[ date ]</a>
|
|
<a href="thread.html#79215">[ thread ]</a>
|
|
<a href="subject.html#79215">[ subject ]</a>
|
|
<a href="author.html#79215">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
<HR>
|
|
<!--beginarticle-->
|
|
<PRE><A HREF="https://bugzilla.novell.com/show_bug.cgi?id=425277">https://bugzilla.novell.com/show_bug.cgi?id=425277</A>
|
|
|
|
User <A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">mcarrion at novell.com</A> added comment
|
|
<A HREF="https://bugzilla.novell.com/show_bug.cgi?id=425277#c4">https://bugzilla.novell.com/show_bug.cgi?id=425277#c4</A>
|
|
|
|
|
|
|
|
|
|
|
|
--- Comment #4 from Mario Carrion <<A HREF="http://lists.ximian.com/mailman/listinfo/mono-bugs">mcarrion at novell.com</A>> 2008-09-10 15:50:51 MDT ---
|
|
(In reply to comment #3 from Jonathan Pobst)
|
|
><i> >> I need to keep track of the controls associated with the tooltip due to the
|
|
</I>><i> >> tooltip is added/removed to the navigation tree, and Popup event doesn't work
|
|
</I>><i> >> for that.
|
|
</I>><i>
|
|
</I>><i> Can you explain this a little more?
|
|
</I>For example, lets say we have two Form that share the same tooltip, something
|
|
like the following:
|
|
|
|
Form1
|
|
- Button1
|
|
- Label1
|
|
|
|
and
|
|
|
|
Form2
|
|
- Button2
|
|
- Label2
|
|
|
|
and
|
|
|
|
ToolTip
|
|
|
|
And we do:
|
|
|
|
ToolTip.SetToolTip (Button1, "button1")
|
|
ToolTip.SetToolTip (Label1, "label1")
|
|
ToolTip.SetToolTip (Button2, "button2")
|
|
ToolTip.SetToolTip (Label2, "label2")
|
|
|
|
The following are the a11y trees without the tooltip (ie the tooltips haven't
|
|
been shown):
|
|
|
|
Form1 (Atk.Window1)
|
|
- Button1 (Atk.PushButton1)
|
|
- Label1 (Atk.Text1)
|
|
|
|
and
|
|
|
|
Form2 (Atk.Window2)
|
|
- Button2 (Atk.PushButton2)
|
|
- Label2 (Atk.Text2)
|
|
|
|
Lets say we move the cursor into the area of the Button1 to show the tooltip,
|
|
then the a11y tree changes this way:
|
|
|
|
Form1 (Atk.Window1)
|
|
- Button1 (Atk.PushButton1)
|
|
-- ToolTip1 (Atk.ToolTip1)
|
|
- Label1 (Atk.Text1)
|
|
|
|
and then we move the cursor (or wait) then the a11y tree changes returns to its
|
|
original:
|
|
|
|
Form1 (Atk.Window1)
|
|
- Button1 (Atk.PushButton1)
|
|
- Label1 (Atk.Text1)
|
|
|
|
Let's do the same with Label2. The tree changes to:
|
|
|
|
Form2 (Atk.Window2)
|
|
- Button2 (Atk.PushButton2)
|
|
- Label2 (Atk.Text2)
|
|
-- ToolTip1 (Atk.ToolTip1)
|
|
|
|
and move the cursor:
|
|
|
|
Form2 (Atk.Window2)
|
|
- Button2 (Atk.PushButton2)
|
|
- Label2 (Atk.Text2)
|
|
|
|
Notice that the same instance of ToolTip is used in both Forms and I'm using it
|
|
to add/remove into two different trees.
|
|
|
|
I hope you understand me.
|
|
|
|
|
|
--
|
|
Configure bugmail: <A HREF="https://bugzilla.novell.com/userprefs.cgi?tab=email">https://bugzilla.novell.com/userprefs.cgi?tab=email</A>
|
|
------- You are receiving this mail because: -------
|
|
You are the QA contact for the bug.
|
|
You are the assignee for the bug.
|
|
</PRE>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--endarticle-->
|
|
<HR>
|
|
<P><UL>
|
|
<!--threads-->
|
|
<LI>Previous message: <A HREF="079214.html">[Mono-bugs] [Bug 425277] UIA Suport in ToolTip Component
|
|
</A></li>
|
|
<LI>Next message: <A HREF="079216.html">[Mono-bugs] [Bug 425277] UIA Suport in ToolTip Component
|
|
</A></li>
|
|
<LI> <B>Messages sorted by:</B>
|
|
<a href="date.html#79215">[ date ]</a>
|
|
<a href="thread.html#79215">[ thread ]</a>
|
|
<a href="subject.html#79215">[ subject ]</a>
|
|
<a href="author.html#79215">[ author ]</a>
|
|
</LI>
|
|
</UL>
|
|
|
|
<hr>
|
|
<a href="http://lists.ximian.com/mailman/listinfo/mono-bugs">More information about the mono-bugs
|
|
mailing list</a><br>
|
|
</body></html>
|