Editor.py :  » GUI » MenuMaker » menumaker-0.99.7 » Prophet » Legacy » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » GUI » MenuMaker 
MenuMaker » menumaker 0.99.7 » Prophet » Legacy » Editor.py
from Prophet.Legacy import App
from Keywords import Keyword
from Prophet.Categories import *




X_HTML = Kw("X-HTML")




class asWedit(_App, _X11App) :
  name = "asWedit"
  comment = "Advanced HTML editor"
  keywords = KwS(TextEditor, X_HTML)




class beaver(_App, _X11App) :
  name = "Beaver"
  comment = "A programmer's editor"
  keywords = KwS(TextEditor, Development, GTK)




class bluefish(_App, _X11App) :
  name = "BlueFish"
  comment = "Advanced HTML editor and web publishing application"
  keywords = KwS(TextEditor, Development, GNOME, X_HTML)




class cooledit(_App, _X11App) :
  name = "CoolEdit"
  comment = "X11 text editor"
  keywords = KwS(TextEditor)




class cute(_App, _X11App) :
  name = "Cute"
  comment = "User-friendly editor with syntax hilighting"
  keywords = KwS(TextEditor, Qt)




class ee(_App, _ConsoleApp) :
  name = "Easy Editor"
  comment = "Standard FreeBSD text editor"
  keywords = KwS(TextEditor, Core)

  def valid(self, pfx, exe) :
    import os.path
    if os.path.isfile(os.path.join(pfx, "share/misc/init.ee")) :
      return super(ee, self).valid(pfx, exe)
    else :
      return False




class elvis(_App, _ConsoleApp) :
  name = "Elvis"
  comment = "Vi compatible editor"
  keywords = KwS(TextEditor)




class emacs(_App, _ConsoleApp) : # FIXME : make this versioned
  name = "Emacs"
  comment = "A powerful text editing environment"
  keywords = KwS(TextEditor)




# TODO : jedit, jext




class jed(_App, _ConsoleApp) :
  name = "Jed"
  comment = "Simple text editor"
  keywords = KwS(TextEditor)




class joe(_App, _ConsoleApp) :
  name = "Joe"
  comment = "Joe's own editor"
  keywords = KwS(TextEditor)




class jove(_App, _ConsoleApp) :
  name = "Jove"
  comment = "Emacs-like text editor"
  keywords = KwS(TextEditor)




class gvim(_App, _X11App) :
  name = "GVim"
  comment = "X11 version of Vim, a Vi clone"
  keywords = KwS(TextEditor)




class gxedit(_App, _X11App) :
  name = "GXedit"
  comment = "Simple X11 text editor"
  keywords = KwS(TextEditor, GTK)




# TODO : mp




class nano(_App, _ConsoleApp) :
  name = "Nano"
  comment = "Simple text editor"
  keywords = KwS(TextEditor)




class nedit(_App, _X11App) :
  name = "Nedit"
  comment = "Advanced X11 text editor"
  keywords = KwS(TextEditor, Motif)




class pico(_App, _ConsoleApp) :
  name = "Pico"
  comment = "A Nano text editor clone"
  keywords = KwS(TextEditor)




class screem(_App, _X11App) :
  name = "Screem"
  comment = "Advanced HTML editor"
  keywords = KwS(TextEditor, GTK, X_HTML) # FIXME : GTK???




class vi(_App, _ConsoleApp) :
  name = "Vi"
  comment = "Standard UNIX text editor"
  keywords = KwS(TextEditor, Core)




class vile(_App, _ConsoleApp) :
  name = "Vile"
  comment = "Vi clone"
  keywords = KwS(TextEditor)




class vim(_App, _ConsoleApp) :
  name = "Vim"
  comment = "Vi clone"
  keywords = KwS(TextEditor)




class we(_App, _ConsoleApp) : # FIXME : generic name, additional checks needed
  name = "We"
  comment = "Console version of Xwpe text editor"
  keywords = KwS(TextEditor, Development)




class xedit(_App, _X11App) :
  name = "Xedit"
  comment = "Standard X11 text editor"
  keywords = KwS(TextEditor, Core)




class xemacs(_App, _X11App) : # FIXME : make this versioned
  name = "Xemacs"
  comment = "X11 version of Emacs"
  keywords = KwS(TextEditor)




class xjed(_App, _X11App) :
  name = "Xjed"
  comment = "X11 version of Jed"
  keywords = KwS(TextEditor)




class xwe(_App, _X11App) :
  name = "Xwe"
  comment = "X11 version of Xwpe text editor"
  keywords = KwS(TextEditor, Development)




class yudit(_App, _X11App) :
  name = "Yudit"
  comment = "X11 unicode text editor"
  keywords = KwS(TextEditor)




# TODO : yzis
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.