Differences between revisions 2 and 12 (spanning 10 versions)
Revision 2 as of 2004-10-16 02:01:34
Size: 2667
Editor: tianyu263
Comment:
Revision 12 as of 2005-02-05 06:47:38
Size: 2814
Editor: anonymous
Comment: missing edit-log entry for this revision
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
基于 Python 项目 NewEdit 的插件补充
Line 5: Line 4:
"NewEdit补充插件" Author:tianyu263(望月)
EMail: [email protected]
----
Line 7: Line 8:
作者:tianyu263(望月) "Python 项目 NewEdit 补充插件"
[[TableOfContents]]
Line 9: Line 11:
[[TableOfContents]]
= NewEdit插件=
== 清除所有最近使用过的文件==
=== 说明 ===
==== RemoveAllRecentFiles.pin 源代码 ====
= 清除所有最近使用过的文件 =
Line 15: Line 13:
== 说明 ==

用于 NewEdit 清除所有最近使用过的文件名称。
'''使用方法:'''
    只需将下面文件的源代码拷贝到相应的文件,并将文件复制到 NewEdit 的 plugins 目录即可。

== 源代码下载 ==

  *[http://wiki.woodpecker.org.cn/moin.cgi/NewEdit_e8_a1_a5_e5_85_85_e6_8f_92_e4_bb_b6?action=AttachFile&do=get&target=RemoveAllRecentFiles.rar RemoveAllRecentFiles] 源代码

== RemoveAllRecentFiles.pin 源代码 ==

{{{
Line 20: Line 31:
}}}
Line 21: Line 33:
==== RemoveAllRecentFiles.py 源代码 ==== == RemoveAllRecentFiles.py 源代码 ==
Line 23: Line 35:
{{{
Line 64: Line 77:
def del_recent_menu(win):
 menu=makemenu.findmenu(win.menuitems, 'IDM_FILE_RECENTFILES')

 id=wx.NewId()
 win.recentmenu_ids.append(id)
 menu.Append(id,tr('Remove All Recent Files'))
 wx.EVT_MENU(win,id,win.OnDelRecentMenus)

 wmi = menu.AppendSeparator()
 win.recentmenu_ids.append(wmi.GetId());
Line 85: Line 87:
 
Line 93: Line 95:
}}}

== Discuss ==

Good! -- Limodou

Author:tianyu263(望月) EMail: [email protected]


"Python 项目 NewEdit 补充插件" TableOfContents

清除所有最近使用过的文件

说明

用于 NewEdit 清除所有最近使用过的文件名称。 使用方法:

  • 只需将下面文件的源代码拷贝到相应的文件,并将文件复制到 NewEdit 的 plugins 目录即可。

源代码下载

RemoveAllRecentFiles.pin 源代码

[info]
author=TianYu263
date=2004/10/16
version=1.0
description=Remove All Recent Files

RemoveAllRecentFiles.py 源代码

#       Programmer:     tianyu263
#       E-mail:         [email protected]
#
#       Copyleft 2004 tianyu263
#
#       Distributed under the terms of the GPL (GNU Public License)
#
#   NewEdit is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software
#   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
#       $Id: RemoveAllRecentFiles.py,v 1.0 2004/10/16 08:05:28 tianyu Studio WorkShop $
__doc__ = 'Plugin: Remove All Recent Files'

from modules import     Mixin
import wx
import os
import os.path
import sys
from modules import     makemenu


menulist = [('IDM_FILE_RECENTFILES', #parent menu id
        [
                (105, 'IDM_REMOVE_RECENTFILES', tr('Remove All Recent Files'), wx.ITEM_NORMAL, 'OnDelRecentMenus', tr('Remove All Recent Files.')),
                (106, '', '-', wx.ITEM_SEPARATOR, None, ''),
        ]),
]

Mixin.setMixin('mainframe',     'menulist',     menulist)

def     OnDelRecentMenus(win, event):
        menu=makemenu.findmenu(win.menuitems, 'IDM_FILE_RECENTFILES')
        for     id in win.recentmenu_ids:
                menu.Delete(id)
        win.recentmenu_ids = []
        
        fileCount =     len(win.pref.recent_files)
        for     i in range(0,fileCount):
                del     win.pref.recent_files[0]
        win.pref.recent_files=[]
        
        id = win.IDM_FILE_RECENTFILES_ITEMS
        menu.Append(id, tr('(empty)'))
        menu.Enable(id, False)
        win.recentmenu_ids.append(id)

Mixin.setMixin('mainframe',     'OnDelRecentMenus',     OnDelRecentMenus)

== Discuss ==

Good! -- Limodou

NewEdit补充插件 (last edited 2009-12-25 07:17:09 by localhost)