blob: be7f323ec0c132cd6f3cd14c66a4bf334aab60bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#===============================================================================
#
# FILE: WorkerThread.py
#
# USAGE: ---
#
# DESCRIPTION: This class open all third party application using QT Thread
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Fahim Khan, fahim.elex@gmail.com
# ORGANIZATION: ecSim team at FOSSEE, IIT Bombay.
# CREATED: Tuesday 24 Feb 2015
# REVISION: ---
#===============================================================================
from PyQt4 import QtCore
import os
class WorkerThread(QtCore.QThread):
def __init__(self,args):
QtCore.QThread.__init__(self)
self.args = args
def __del__(self):
self.wait()
def run(self):
print "Calling :",self.args
self.call_system(self.args)
def call_system(self,command):
print "System called"
os.system(command)
|