[ 1762466 ] Add "Window" menu to report viewer

http://sourceforge.net/tracker/index.php?func=detail&aid=1762466&group_id=176962&atid=879335
This commit is contained in:
teo_sarca 2007-07-27 22:53:59 +00:00
parent 79aebcbbdf
commit c92824e67b
1 changed files with 7 additions and 1 deletions

View File

@ -43,7 +43,8 @@ import org.adempiere.pdf.*;
* globalqss: integrate Teo Sarca bug fixing
* Colin Rooney 2007/03/20 RFE#1670185 & BUG#1684142
* Extend security to Info queries
*
*
* @author Teo Sarca, SC ARHIPAC SERVICE SRL - FR [ 1762466 ]
*/
public class Viewer extends CFrame
implements ActionListener, ChangeListener, WindowStateListener
@ -455,6 +456,11 @@ public class Viewer extends CFrame
AEnv.addMenuItem("Script", null, null, mTools, this);
mTools.addSeparator();
AEnv.addMenuItem("Preference", null, null, mTools, this);
// Window
AMenu aMenu = (AMenu)Env.getWindow(0);
JMenu mWindow = new WindowMenu(aMenu.getWindowManager(), this);
menuBar.add(mWindow);
// Help
JMenu mHelp = AEnv.getMenu("Help");