From: Peter S. <sch...@us...> - 2006-01-24 14:38:32
|
Update of /cvsroot/plb4jedit/plb4jedit/Plb/src/resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4369/Plb/src/resources Modified Files: Plb.props actions.xml Log Message: includes listing and includes nested too deeply check Index: Plb.props =================================================================== RCS file: /cvsroot/plb4jedit/plb4jedit/Plb/src/resources/Plb.props,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Plb.props 6 Jan 2004 17:59:46 -0000 1.3 +++ Plb.props 24 Jan 2006 14:38:16 -0000 1.4 @@ -13,13 +13,16 @@ # application menu items plb.menu.label=Plb -plb.menu=Plb - plb.open-variable-declaration plb.goto-label plb.help +plb.menu=Plb - plb.open-variable-declaration plb.goto-label plb.view-includes plb.view-maxlevel.label=view maximum include level of source plb.help plb.enable-Tooltips options.plb.label=Plb # action labels plb.toggle.label=Plb plb.open-variable-declaration.label=Goto variable Declaration plb.goto-label.label=Goto label definition +plb.view-includes.label=View includes of source +plb.view-maxlevel.label=view maximum include level of source +plb.enable-Tooltips.label=Enable Tooltips plb.help.label=Help on current word # Modes where xml parsing can to be performed @@ -31,5 +34,8 @@ # for jEdit 4.2 plugin.net.sf.plb4jedit.plb.PlbPlugin.menu= plb.open-variable-declaration \ plb.goto-label \ + plb.view-includes \ + plb.view-maxlevel \ - \ plb.help + plb.enable-Tooltips Index: actions.xml =================================================================== RCS file: /cvsroot/plb4jedit/plb4jedit/Plb/src/resources/actions.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- actions.xml 7 Nov 2003 17:27:39 -0000 1.2 +++ actions.xml 24 Jan 2006 14:38:16 -0000 1.3 @@ -11,6 +11,21 @@ net.sf.plb4jedit.plb.PlbPlugin.gotoLabel(); </CODE> </ACTION> + <ACTION NAME="plb.view-includes"> + <CODE> + net.sf.plb4jedit.plb.PlbPlugin.printIncludeList(); + </CODE> + </ACTION> + <ACTION NAME="plb.get-maxlevel"> + <CODE> + Macros.message(view,"maximum include level = " + net.sf.plb4jedit.plb.PlbPlugin.getMaxLevel()); + </CODE> + </ACTION> + <ACTION NAME="plb.enable-Tooltips"> + <CODE> + net.sf.plb4jedit.plb.PlbPlugin.enableToolTips(); + </CODE> + </ACTION> <ACTION NAME="plb.help"> <CODE> textArea.selectWord(); |