forked from adafruit/FreqShow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
controller.py
101 lines (89 loc) · 3.72 KB
/
controller.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# FreqShow controller class.
# This owns the views and controls application movement between views.
#
# Author: Tony DiCola (tony@tonydicola.com)
#
# The MIT License (MIT)
#
# Copyright (c) 2014 Adafruit Industries
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from views import *
class FreqShowController(object):
"""Class which controls the views shown in the application and mediates
changing between views.
"""
def __init__(self, model):
"""Initialize controller with specified FreqShow model."""
self.model = model
# Create instantaneous and waterfall spectrogram views once because they
# hold state and have a lot of data.
self.instant = InstantSpectrogram(model, self)
self.waterfall = WaterfallSpectrogram(model, self)
# Start with instantaneous spectrogram.
self._current_view = None
self.change_to_instant()
def change_view(self, view):
"""Change to specified view."""
self._prev_view = self._current_view
self._current_view = view
def current(self):
"""Return current view."""
return self._current_view
def message_dialog(self, text, **kwargs):
"""Open a message dialog which goes back to the previous view when
canceled.
"""
self.change_view(MessageDialog(self.model, text,
cancel=self._change_to_previous, **kwargs))
def number_dialog(self, label_text, unit_text, **kwargs):
"""Open a number dialog which goes back to the previous view when
canceled.
"""
self.change_view(NumberDialog(self.model, label_text, unit_text,
cancel=self._change_to_previous, **kwargs))
def _change_to_previous(self, *args):
# Change to previous view, note can only go back one level.
self.change_view(self._prev_view)
# Functions that switch between views and are able to work as a click handler
# because they ignore any arguments passed in (like clicked button).
def change_to_main(self, *args):
"""Change to main spectrogram view (either instant or waterfall depending
on what was the last main view).
"""
self.change_view(self._main_view)
def toggle_main(self, *args):
"""Switch between instantaneous and waterfall spectrogram views."""
if self._current_view == self.waterfall:
self.change_to_instant()
else:
self.change_to_waterfall()
def change_to_instant(self, *args):
"""Change to instantaneous spectrogram view."""
self._main_view = self.instant
self.change_view(self.instant)
def change_to_waterfall(self, *args):
"""Change to waterfall spectrogram view."""
self._main_view = self.waterfall
self.change_view(self.waterfall)
def change_to_settings(self, *args):
"""Change to settings list view."""
# Create a new settings list view object because the setting values might
# change and need to be rendered with different values.
self.change_view(SettingsList(self.model, self))