aboutsummaryrefslogtreecommitdiff
path: root/voctogui/lib/videopreviews.py
blob: 3490a4d5f97947185d69c926e49d78edbf9fb699 (plain)
  1. import logging
  2. from gi.repository import Gst, Gtk
  3. from lib.config import Config
  4. from lib.videodisplay import VideoDisplay
  5. import lib.connection as Connection
  6. class VideoPreviewsController(object):
  7. """ Displays Video-Previews and selection Buttons for them """
  8. def __init__(self, drawing_area, win, uibuilder):
  9. self.log = logging.getLogger('VideoPreviewsController')
  10. self.drawing_area = drawing_area
  11. self.win = win
  12. self.sources = Config.getlist('mix', 'sources')
  13. self.preview_players = {}
  14. self.previews = {}
  15. self.a_btns = {}
  16. self.b_btns = {}
  17. self.current_source = {'a': None, 'b': None}
  18. try:
  19. width = Config.getint('previews', 'width')
  20. self.log.debug('Preview-Width configured to %u', width)
  21. except:
  22. width = 320
  23. self.log.debug('Preview-Width selected as %u', width)
  24. try:
  25. height = Config.getint('previews', 'height')
  26. self.log.debug('Preview-Height configured to %u', height)
  27. except:
  28. height = width*9/16
  29. self.log.debug('Preview-Height calculated to %u', height)
  30. # Accelerators
  31. accelerators = Gtk.AccelGroup()
  32. win.add_accel_group(accelerators)
  33. group_a = None
  34. group_b = None
  35. for idx, source in enumerate(self.sources):
  36. self.log.info('Initializing Video Preview %s', source)
  37. preview = uibuilder.get_check_widget('widget_preview', clone=True)
  38. video = uibuilder.find_widget_recursive(preview, 'video')
  39. video.set_size_request(width, height)
  40. drawing_area.pack_start(preview, fill=False, expand=False, padding=0)
  41. player = VideoDisplay(video, port=13000 + idx, width=width, height=height)
  42. uibuilder.find_widget_recursive(preview, 'label').set_label(source)
  43. btn_a = uibuilder.find_widget_recursive(preview, 'btn_a')
  44. btn_b = uibuilder.find_widget_recursive(preview, 'btn_b')
  45. btn_a.set_name("%c %u" % ('a', idx))
  46. btn_b.set_name("%c %u" % ('b', idx))
  47. if not group_a:
  48. group_a = btn_a
  49. else:
  50. btn_a.join_group(group_a)
  51. if not group_b:
  52. group_b = btn_b
  53. else:
  54. btn_b.join_group(group_b)
  55. btn_a.connect('toggled', self.btn_toggled)
  56. btn_b.connect('toggled', self.btn_toggled)
  57. key, mod = Gtk.accelerator_parse('%u' % (idx+1))
  58. btn_a.add_accelerator('activate', accelerators, key, mod, Gtk.AccelFlags.VISIBLE)
  59. key, mod = Gtk.accelerator_parse('<Ctrl>%u' % (idx+1))
  60. btn_b.add_accelerator('activate', accelerators, key, mod, Gtk.AccelFlags.VISIBLE)
  61. btn_fullscreen = uibuilder.find_widget_recursive(preview, 'btn_fullscreen')
  62. btn_fullscreen.set_name("%c %u" % ('f', idx))
  63. btn_fullscreen.connect('clicked', self.btn_fullscreen_clicked)
  64. key, mod = Gtk.accelerator_parse('<Alt>%u' % (idx+1))
  65. btn_fullscreen.add_accelerator('activate', accelerators, key, mod, Gtk.AccelFlags.VISIBLE)
  66. self.preview_players[source] = player
  67. self.previews[source] = preview
  68. self.a_btns[source] = btn_a
  69. self.b_btns[source] = btn_b
  70. # connect event-handler and request initial state
  71. Connection.on('video_status', self.on_video_status)
  72. Connection.send('get_video')
  73. def btn_toggled(self, btn):
  74. if not btn.get_active():
  75. return
  76. btn_name = btn.get_name()
  77. self.log.debug('btn_toggled: %s', btn_name)
  78. channel, idx = btn_name.split(' ')[:2]
  79. source_name = self.sources[int(idx)]
  80. if self.current_source[channel] == source_name:
  81. self.log.info('video-channel %s already on %s', channel, source_name)
  82. return
  83. self.log.info('video-channel %s changed to %s', channel, source_name)
  84. Connection.send('set_video_'+channel, source_name)
  85. def btn_fullscreen_clicked(self, btn):
  86. btn_name = btn.get_name()
  87. self.log.debug('btn_fullscreen_clicked: %s', btn_name)
  88. channel, idx = btn_name.split(' ')[:2]
  89. source_name = self.sources[int(idx)]
  90. self.log.info('selcting video %s for fullscreen', source_name)
  91. Connection.send('set_videos_and_composite', source_name, '*', 'fullscreen')
  92. def on_video_status(self, source_a, source_b):
  93. self.log.info('on_video_status callback w/ sources: %s and %s', source_a, source_b)
  94. self.current_source['a'] = source_a
  95. self.current_source['b'] = source_b
  96. self.a_btns[source_a].set_active(True)
  97. self.b_btns[source_b].set_active(True)