[graphics-issues] [Issue 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

2007-10-15 Thread liutao
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72344


User liutao changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|72764 |
  is|  |





-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

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


User st changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |72764
  is|  |





-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

2007-01-25 Thread cgu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72344


User cgu changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Jan 25 06:41:18 -0800 
2007 ---
CGU: Integrated in OOF680m2

-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

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


User cgu changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Wed Jan 17 06:04:53 -0800 
2007 ---
CGU: Verifed in cws impress115

-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

2007-01-16 Thread cl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72344


User cl changed the following:

What|Old value |New value

 Assigned to|cl|cgu





--- Additional comments from [EMAIL PROTECTED] Tue Jan 16 03:00:27 -0800 
2007 ---
verified in cws, back to qa

-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

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


User cl changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Mon Jan  1 22:38:09 -0800 
2007 ---
fixed in cws impress115

-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

2006-12-06 Thread jlcheng
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72344
 Issue #|72344
 Summary|Code problem: void ShowWindow::KeyInput(const KeyEvent
| rKEvt)
   Component|Presentation
 Version|OOo 2.2
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|PATCH
Priority|P3
Subcomponent|code
 Assigned to|wg
 Reported by|jlcheng





--- Additional comments from [EMAIL PROTECTED] Wed Dec  6 21:30:31 -0800 
2006 ---
Source file ooo_SRC680_m195_src\sd\source\ui\slideshow\showwin.cxx(line 143):
case KEY_RIGHT:
The problem is all key is for goto previous slide, but only this is goto next
slide. I think this KEY_RIGHT should be KEY_LEFT. Thus codes is better
harmonious. Look like these:
void ShowWindow::KeyInput(const KeyEvent rKEvt)
{
BOOL bReturn = FALSE;

if( SHOWWINDOWMODE_PREVIEW == meShowWindowMode )
{
TerminateShow();
bReturn = true;
}
else if( SHOWWINDOWMODE_END == meShowWindowMode )
{
const int nKeyCode = rKEvt.GetKeyCode().GetCode();
switch( nKeyCode )
{
case KEY_PAGEUP:
case KEY_LEFT:
case KEY_UP:
case KEY_P:
case KEY_HOME:
case KEY_END:
// these keys will be handled by the slide show even
// while in end mode
break;

-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

2006-12-06 Thread jlcheng
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72344


User jlcheng changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |41181)
patch of m195






--- Additional comments from [EMAIL PROTECTED] Wed Dec  6 21:31:52 -0800 
2006 ---
Created an attachment (id=41181)
patch of m195


-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

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


User wg changed the following:

What|Old value |New value

 Assigned to|wg|cl





--- Additional comments from [EMAIL PROTECTED] Wed Dec  6 23:34:45 -0800 
2006 ---
Reassigned. Please handle.

-
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 72344] Code problem: void ShowWin dow::KeyInput(const KeyEvent rKEvt)

2006-12-06 Thread cl
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72344


User cl changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |STARTED

Target milestone|---   |OOo 2.2





--- Additional comments from [EMAIL PROTECTED] Wed Dec  6 23:45:03 -0800 
2006 ---
this is correct, thanks for the patch I will integrate it.

cl-cgu: how to test
The problem is that if you start a presentation, on the last slide with the
click to exit presentation... string, you can go back with page up, but cursor
left will not go back but exit the presentation. This patch will fix this.

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