Shell.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 » Shell.py
from Prophet.Legacy import App
from Keywords import Keyword
from Prophet.Categories import *




class _Terminal(_App, _X11App) :
  runFlag = "-e"
  def runCmd(self, cmd) :
    return self._runCmd + cmd
  def setExecmd(self) :
    super(_Terminal, self).setExecmd()
    self._runCmd = self.execmd + " " + self.runFlag + " "




class aterm(_Terminal) :
  name = "Aterm"
  comment = "X terminal emulator"
  keywords = KwS(TerminalEmulator)




class c3270(_App, _ConsoleApp) :
  name = "c3270"
  comment = "An IBM 3278/3279 terminal emulator"
  keywords = KwS(TerminalEmulator)




class dfm(_App, _X11App) : # FIXME : generic name
  name = "Dfm"
  comment = "OS/2 Workplace Shell clone"
  keywords = KwS(FileManager, Shell)




class emelfm(_App, _X11App) :
  name = "emelFM"
  comment = "Simple file manager"
  keywords = KwS(FileManager, GTK)




class Eterm(_Terminal) :
  name = "Eterm"
  comment = "Enlightenment terminal emulator"
  keywords = KwS(TerminalEmulator)




class fr(_App, _X11App) : # FIXME : generic name
  name = "FileRunner"
  comment = "File manager written in Tcl/Tk"
  keywords = KwS(FileManager, Shell)




class git(_App, _ConsoleApp) :
  name = "GIT"
  comment = "GNU interactive tools"
  keywords = KwS(FileManager, Shell, Utility)




class gmc(_App, _X11App) :
  name = "GnomeMC"
  comment = "GNOME version of Midnight Commander"
  keywords = KwS(FileManager, Shell, GNOME)




class _gterm(_Terminal) :
  exes = ["gnome2-terminal", "gnome-terminal", "gterminal"]
  name = "GNOME terminal"
  comment = "X terminal emulator for GNOME"
  keywords = KwS(TerminalEmulator, GNOME)




class _konsole(_Terminal) :
  exes = ["konsole"]
  name = "Konsole"
  comment = "X terminal emulator for KDE"
  keywords = KwS(TerminalEmulator, KDE)




class kterm(_Terminal) :
  name = "Kterm"
  comment = "Japanese X terminal emulator"
  keywords = KwS(TerminalEmulator)




class mc(_App, _ConsoleApp) :
  name = "MC"
  comment = "Midnight Commander"
  exes = ["midc", "mc"]
  keywords = KwS(FileManager, Shell)




class rdesktop(_App, _X11App) :
  name = "Rdesktop"
  comment = "MS Windows terminal client"
  keywords = KwS(TerminalEmulator)




class rox(_App, _X11App) :
  name = "ROX"
  comment = "RISCOS-like file manager"
  keywords = KwS(FileManager, Shell)




class tuxcmd(_App, _X11App) :
  name = "TuxCommander"
  comment = "File manager for X"
  keywords = KwS(FileManager, Shell)




class wterm(_Terminal) :
  name = "Wterm"
  comment = "X terminal emulator"
  keywords = KwS(TerminalEmulator)




class x3270(_App, _X11App) :
  name = "x3270"
  comment = "An IBM 3278/3279 terminal emulator"
  keywords = KwS(TerminalEmulator)




class xfiles(_App, _X11App) :
  name = "X-Files"
  comment = "File manager for X"
  exes = ["X-Files"]
  keywords = KwS(FileManager, Shell)




class _xfterm(_Terminal) :
  exes = ["xfterm4", "xfterm"]
  name = "Xfterm"
  comment = "X terminal emulator for Xfce"
  keywords = KwS(TerminalEmulator, Kw("Xfce"))




class xnc(_App, _X11App) :
  name = "XNC"
  comment = "X Nothern Captain - NC clone"
  keywords = KwS(FileManager, Shell)




class xplore(_App, _X11App) :
  name = "Xplorer"
  comment = "X file manager"
  keywords = KwS(FileManager, Shell, Motif)




class xterm(_Terminal) :
  name = "Xterm"
  comment = "X terminal emulator"
  keywords = KwS(TerminalEmulator, Core)




class xvt(_Terminal) : # FIXME : do we need a separate entry for rxvt?
  name = "Rxvt"
  comment = "X terminal emulator"
  exes = ["rxvt", "xvt"]
  keywords = KwS(TerminalEmulator)




class xwc(_App, _X11App) :
  name = "XWinCommander"
  comment = "X file manager"
  keywords = KwS(FileManager, Shell)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.