[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-05-21 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163


User wg changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Mon May 21 07:50:34 + 
2007 ---
Tested in src680m212.  Closed.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-04-23 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163


User wg changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Mon Apr 23 12:05:16 + 
2007 ---
Verified in CWS.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-04-20 Thread aw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163


User aw changed the following:

What|Old value |New value

 Assigned to|aw|wg





--- Additional comments from [EMAIL PROTECTED] Fri Apr 20 08:58:25 + 
2007 ---
AW->WG: Please verify:
- new draw
- line tool, press SHIFT while interacting
- in old version, the selection line could disappear in certain positions

same with existing hor/ver lines:
- when dragging them, the shown selection lines could vanish in some positions

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-04-17 Thread aw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163


User aw changed the following:

What|Old value |New value

Target milestone|OOo 2.x   |OOo 2.3





--- Additional comments from [EMAIL PROTECTED] Tue Apr 17 09:20:17 + 
2007 ---
AW: Target to 2.3

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-04-13 Thread aw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163


User aw changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Fri Apr 13 08:49:35 + 
2007 ---
AW: Added usage of GetViewTransformation() and floor/ceil rounding to get the
exact overlapping pixel region to OverlayManagerBuffered::invalidateRange.
LogicToPixel does just not do that since it only transforms the Points TopLeft
and BottomRight of the logic Rectangle. For B2DRegions and thus empty rectangles
with Width/Height eqial zero this leaded to an empty pixel rectangle. This is
wrong since even a flat (width/height == 0.0) logical B2DRegion does cover 
pixels.
AW: New version works and is numerically correct thanks to the new
GetViewTransformation(). Checked in.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-04-12 Thread aw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163





--- Additional comments from [EMAIL PROTECTED] Thu Apr 12 17:07:52 + 
2007 ---
AW: Okay, added GetViewTransformation() and GetInverseViewTransformation()
together with HDU. Extracted a calculation version from aw033 and HDUs code.
Checked with OverlayManagerBuffered::invalidateRange(), works well. Adding vcl
change...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-04-12 Thread aw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163


User aw changed the following:

What|Old value |New value

  Status|NEW   |STARTED





--- Additional comments from [EMAIL PROTECTED] Thu Apr 12 12:48:27 + 
2007 ---
AW: Again a precision problem with LogicToPixel in the OverlayManager.
LogicToPixel does NOT create Ranges/Rectangles containing all 'touched' pixels,
but just transforms top left and bottom right positions. In that way, a range of
a hor line (height == 0) gives an empty vcl Rectangle and thus on correct
invalidate.
AW: Since aw033, THB and HDU need a B2DHomMatrix based ViewTransformation at te
OutputDevice as improvement of MapModes, this is a good place to do that and to
use it. Adding vcl...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-03-07 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163


User wg changed the following:

What|Old value |New value

Target milestone|---   |OOo 2.x





--- Additional comments from [EMAIL PROTECTED] Wed Mar  7 09:10:15 + 
2007 ---
Target set.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-03-06 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163





--- Additional comments from [EMAIL PROTECTED] Tue Mar  6 14:20:42 + 
2007 ---
Ok in 2.1.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]



[graphics-issues] [Issue 75163] Line is temporarily unvisi ble when drawn

2007-03-06 Thread wg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=75163
 Issue #|75163
 Summary|Line is temporarily unvisible when drawn
   Component|Drawing
 Version|680m203
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|aw
 Reported by|wg





--- Additional comments from [EMAIL PROTECTED] Tue Mar  6 14:20:18 + 
2007 ---
Open a new doc and try to draw a line. First click for start point and now drag
the line. When it is on a 90° angle the dotted preview line gets unvisible. The
same happens when dragging the finished line .

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
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]