From 8ffd594de62de51e7c786f2b0549ba5da1a3f766 Mon Sep 17 00:00:00 2001 From: iovar Date: Tue, 5 Sep 2006 06:52:33 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r44, which included commits to RCS files with non-trunk default branches. git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@45 f606c939-3180-4ac9-a4b8-4b8779d57d0a --- gtk-recordmydesktop/rmdTrayIcon.py | 136 +++++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 gtk-recordmydesktop/rmdTrayIcon.py (limited to 'gtk-recordmydesktop/rmdTrayIcon.py') diff --git a/gtk-recordmydesktop/rmdTrayIcon.py b/gtk-recordmydesktop/rmdTrayIcon.py new file mode 100644 index 0000000..69bbc3f --- /dev/null +++ b/gtk-recordmydesktop/rmdTrayIcon.py @@ -0,0 +1,136 @@ +#/********************************************************************************* +#* gtk-recordMyDesktop * +#********************************************************************************** +#* * +#* Copyright (C) 2006 John Varouhakis * +#* * +#* * +#* This program 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 * +#* * +#* * +#* * +#* For further information contact me at johnvarouhakis@gmail.com * +#**********************************************************************************/ + + +import pygtk +pygtk.require('2.0') +import gtk + +import rmdPrefsWidget as pW +import egg.trayicon +import os + + +class trayIcon(object): + values=[15,0,0,1,os.path.join(os.getenv('HOME'),'out.ogg')] + event_box = gtk.EventBox() + state=0#0 stopped,1 recording,2 paused + optionsOpen=[0] + rmdPid=None + + def __buttonPress__(self,widget,event=None): + if event.button==1 and self.optionsOpen[0]==0: + if self.state == 0: + self.trayIcon.set_from_stock(gtk.STOCK_MEDIA_STOP,gtk.ICON_SIZE_SMALL_TOOLBAR) + self.state=1 + self.__execRMD__() + elif self.state== 1: + self.trayIcon.set_from_stock(gtk.STOCK_MEDIA_RECORD,gtk.ICON_SIZE_SMALL_TOOLBAR) + self.state=0 + self.__stopRMD__() + elif self.state == 2 : + self.trayIcon.set_from_stock(gtk.STOCK_MEDIA_STOP,gtk.ICON_SIZE_SMALL_TOOLBAR) + self.state=1 + self.__pauseRMD__() + + + elif event.button == 3: + if self.state == 0: + + if self.optionsOpen[0] ==0: + self.optionsOpen[0]=1 + self.options=pW.prefsWidget(self.values,self.optionsOpen) + else: + if self.options != None: + self.options.window.destroy() + self.optionsOpen[0]=0 + + elif self.state == 1: + self.trayIcon.set_from_stock(gtk.STOCK_MEDIA_PAUSE,gtk.ICON_SIZE_SMALL_TOOLBAR) + self.state=2 + self.__pauseRMD__() + elif self.state ==2: + self.trayIcon.set_from_stock(gtk.STOCK_MEDIA_STOP,gtk.ICON_SIZE_SMALL_TOOLBAR) + self.state=1 + self.__pauseRMD__() + + def __execRMD__(self): + + execargs=["recordmydesktop","-o","%s"%self.values[4], + "--no-quick-subsampling", + "-fps","%d"%self.values[0]] + if self.values[2]==1 : + execargs.append("--nosound") + if self.values[1] == 0: + execargs.append("-dummy-cursor") + execargs.append("white") + + elif self.values[1] == 1: + execargs.append("-dummy-cursor") + execargs.append("black") + else: + execargs.append("--no-dummy-cursor") + + if self.values[3] == 0: + execargs.append("--full-shots") + execargs.append("--with-shared") + + + self.rmdPid=os.fork() + + if self.rmdPid==0: + res=os.execvp("recordmydesktop",execargs) + print res + + + def __pauseRMD__(self): + os.system("kill -s USR1 %d"%self.rmdPid) + + def __stopRMD__(self): + os.system("kill -s TERM %d"%self.rmdPid) + self.rmdPid=None + + + def __init__(self): + + self.trayIcon=gtk.Image() + self.trayIcon.set_from_stock(gtk.STOCK_MEDIA_RECORD, gtk.ICON_SIZE_SMALL_TOOLBAR) + self.event_box.add(self.trayIcon) + self.tray_container = egg.trayicon.TrayIcon("recordMyDesktop") + self.tray_container.add(self.event_box) + self.event_box.connect("button-press-event", self.__buttonPress__) + self.tray_container.show_all() + gtk.main() + + + + + + + + + + -- cgit v1.2.1