You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
510 B
28 lines
510 B
import sys
|
|
import os.path
|
|
from .core import AbstractControl
|
|
|
|
|
|
class QuitControl(AbstractControl):
|
|
@property
|
|
def visible(self):
|
|
return False
|
|
|
|
def respond_to(self, command):
|
|
if command == 'q':
|
|
sys.exit(0)
|
|
elif command == 'refresh':
|
|
return True
|
|
|
|
|
|
class ChildReaperControl(AbstractControl):
|
|
@property
|
|
def visible(self):
|
|
return False
|
|
|
|
def periodic(self):
|
|
try:
|
|
os.wait3(os.WNOHANG)
|
|
except:
|
|
pass
|
|
|
|
|