Development.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 » Development.py
import os.path, Prophet




from Prophet.Legacy import App
from Keywords import Keyword
from Prophet.Categories import *




class cforge(_App, _X11App) :
  name = "CForge IDE"
  comment = "Code Forge IDE"
  keywords = KwS(Development, IDE) # Qt, Motif ???




class ddd(_App, _X11App) :
  name = "DDD debugger"
  comment = "X11 Display Data Debugger"
  keywords = KwS(Development, Debugger, Motif)




class eclipse(_DropIn, _X11App) :
  name = "Eclipse"
  comment = "Eclipse Java IDE"
  keywords = KwS(Development, Debugger, Java, GTK)

  def relevant(self, path) :
    if Prophet.isExe(os.path.join(path, "eclipse")) :
      raise eclipse.StopDescention(path)




class eric3(_App, _X11App) :
  name = "Eric IDE"
  comment = "Python IDE for X11"
  keywords = KwS(Development, IDE)




class estudio(_App, _X11App) :
  name = "EiffelStudio"
  comment = "EiffelStudio IDE"
  keywords = KwS(Development, IDE, Debugger)

  def getPrefixes(self) :
    return super(estudio, self).getPrefixes() + "$ISE_EIFFEL/studio/spec/$ISE_PLATFORM"




# TODO : Komodo




class jbuilder(_ZeroG, _X11App) :
  name = "JBuilder"
  magic = ".*?Borland\sJBuilder.*?"
  comment = "Borland JBuilder IDE"
  keywords = KwS(Development, IDE, GUIDesigner, Java)




class fluid(_App, _X11App) :
  name = "Fluid"
  comment = "FLTK interface builder"
  keywords = KwS(Development, IDE, GUIDesigner)




class fp(_App, _ConsoleApp) : # FIXME : name's pretty generic, name clash possible
  name = "FreePascal"
  comment = "Standart IDE for the FreePascal"
  keywords = KwS(Development, IDE, Core)




class gdb(_App, _ConsoleApp) :
  name = "GDB"
  comment = "Standard GNU debugger"
  keywords = KwS(Development, Debugger, Core)




class idb(_App, _ConsoleApp) :
  name = "IDB"
  comment = "Intel debugger"
  keywords = KwS(Development, Debugger)




class idea(_ZeroG, _X11App) :
  exes = ["idea.sh", "idea"]
  name = "IDEA"
  magic = ".*?IntelliJ\sIDEA.*?"
  comment = "IntelliJ IDEA IDE"
  keywords = KwS(Development, IDE, GUIDesigner, Java)




class kylix(_App, _X11App) :
  name = "Kylix"
  comment = "Borland Delphi IDE for UNIX"
  exes = ["startdelphi", "startkylix"]
  keywords = KwS(Development, IDE, GUIDesigner, Debugger)




class lazarus(_DropIn, _X11App) :
  name = "Lazarus"
  comment = "Delphi-like FreePascal IDE"
  keywords = KwS(Development, Debugger, GUIDesigner, GTK)

  def relevant(self, path) :
    if Prophet.isExe(os.path.join(path, "lazarus")) :
      raise lazarus.StopDescention(path)




class motor(_App, _ConsoleApp) :
  name = "Motor IDE"
  comment = "Console IDE with Borland look&feel"
  keywords = KwS(Development, IDE)




class netbeans(_DropIn, _X11App) :
  name = "NetBeans"
  comment = "NetBeans Java IDE"
  keywords = KwS(Development, Debugger, Java, GTK)

  def relevant(self, path) :
    if Prophet.isExe(os.path.join(path, "bin/netbeans")) :
      raise netbeans.StopDescention(path)




class tkcvs(_App, _X11App) :
  name = "TkCVS"
  comment = "X11 CVS frontend"
  keywords = KwS(Development, RevisionControl)




class ups(_App, _X11App) : # FIXME : generic name
  name = "UPS"
  comment = "Native X11 debugger"
  keywords = KwS(Development, Debugger)




class wpe(_App, _ConsoleApp) :
  name = "WPE"
  comment = "A text-mode Borland-like IDE"
  keywords = KwS(Development, IDE)




class xwpe(_App, _X11App) :
  name = "XWPE"
  comment = "Borland-like IDE for X11"
  keywords = KwS(Development, IDE)




class xxgdb(_App, _X11App) :
  name = "XXGDB"
  comment = "X11 GDB frontend"
  keywords = KwS(Development, Debugger)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.