Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

#! /usr/bin/env python3 

# -*- coding: utf-8 -*- 

 

#       Copyright 2011-2013, Marten de Vries 

# 

#       This file is part of OpenTeacher. 

# 

#       OpenTeacher 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 3 of the License, or 

#       (at your option) any later version. 

# 

#       OpenTeacher 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 OpenTeacher.  If not, see <http://www.gnu.org/licenses/>. 

 

import datetime 

import weakref 

 

def installQtClasses(): 

        global Graph, ProgressViewer 

 

        class Graph(QtWidgets.QFrame): 

                def __init__(self, test, *args, **kwargs): 

                        """Raises KeyError if 'test' doesn't contain time info.""" 

 

                        super().__init__(*args, **kwargs) 

 

                        self._test = test 

 

                        self.setSizePolicy( 

                                QtWidgets.QSizePolicy.Expanding, 

                                QtWidgets.QSizePolicy.MinimumExpanding 

                        ) 

 

                        self.setFrameStyle(QtWidgets.QFrame.StyledPanel) 

                        self.setFrameShadow(QtWidgets.QFrame.Sunken) 

 

                        self.start = self._test["results"][0]["active"]["start"] 

                        self.end = self._test["results"][-1]["active"]["end"] 

                        self._totalSeconds = (self.end - self.start).total_seconds() 

 

                @property 

                def _amountOfUniqueItems(self): 

                        ids = set() 

                        for result in self._test["results"]: 

                                ids.add(result["itemId"]) 

                        return len(ids) 

 

                def event(self, event, *args, **kwargs): 

56                        if event.type() == QtCore.QEvent.ToolTip: 

                                second = event.x() / self._secondsPerPixel 

                                moment = self.start + datetime.timedelta(seconds=second) 

                                for pause in self._test["pauses"]: 

                                        if pause["start"] < moment and pause["end"] > moment: 

                                                text = _("Pause") 

                                                break 

                                try: 

                                        text 

                                except NameError: 

                                        for result in self._test["results"]: 

                                                if result["active"]["start"] < moment and result["active"]["end"] > moment: 

                                                        text = _("Thinking") 

                                try: 

                                        text 

                                except NameError: 

                                        text = _("Answering") 

                                QtWidgets.QToolTip.showText( 

                                        event.globalPos(), 

                                        text, 

                                ) 

                                return True 

                        return super().event(event, *args, **kwargs) 

 

                def _paintItem(self, p, item): 

                        x = (item["start"] - self.start).total_seconds() * self._secondsPerPixel 

                        width = (item["end"] - item["start"]).total_seconds() * self._secondsPerPixel 

 

                        p.drawRect(x, 0, width, self._h) 

 

                def paintEvent(self, event, *args, **kwargs): 

                        p = QtGui.QPainter() 

                        p.begin(self) 

 

                        p.setPen(QtCore.Qt.NoPen) 

 

                        w = self.width() 

                        self._h = self.height() 

 

                        try: 

                                #float, because one pixel might be more than one second. 

                                #When int was used, secondsPerPixel could become 0 showing 

                                #nothing in that case. 

                                self._secondsPerPixel = float(w) / self._totalSeconds 

                        except ZeroDivisionError: 

                                self._secondsPerPixel = 0 

                        colors = {} 

                        baseColor = self.palette().highlight().color() 

                        steps = 0 

                        colorDifference = (255 - baseColor.lightness()) / (self._amountOfUniqueItems +1)#+1 so it doesn't become 0 

                        for result in self._test["results"]: 

                                try: 

                                        p.setBrush(QtGui.QBrush(colors[result["itemId"]])) 

                                except KeyError: 

                                        color = QtGui.QColor(baseColor) 

                                        hsl = list(color.getHsl()) 

                                        hsl[2] = hsl[2] + colorDifference * steps 

                                        color.setHsl(*hsl) 

 

                                        steps += 1 

 

                                        colors[result["itemId"]] = QtGui.QBrush(color) 

                                        p.setBrush(colors[result["itemId"]]) 

 

                                if "active" in result: 

                                        self._paintItem(p, result["active"]) 

 

                        p.setBrush(self.palette().dark()) 

                        for pause in self._test.get("pauses", []): 

                                self._paintItem(p, pause) 

 

                        p.setBrush(QtGui.QBrush()) 

 

                        p.end() 

                        super().paintEvent(event, *args, **kwargs) 

 

                def sizeHint(self): 

                        return QtCore.QSize(200, 30) 

 

        class ProgressViewer(QtWidgets.QWidget): 

                def __init__(self, test, *args, **kwargs): 

                        """Raises KeyError if 'test' doesn't contain time info.""" 

 

                        super().__init__(*args, **kwargs) 

 

                        self.graph = Graph(test) 

                        format = "%X" 

                        firstTime = QtWidgets.QLabel(self.graph.start.strftime(format)) 

                        lastTime = QtWidgets.QLabel(self.graph.end.strftime(format)) 

 

                        horLayout = QtWidgets.QHBoxLayout() 

                        horLayout.addWidget(firstTime) 

                        horLayout.addStretch() 

                        horLayout.addWidget(lastTime) 

 

                        mainLayout = QtWidgets.QVBoxLayout() 

                        mainLayout.addLayout(horLayout) 

                        mainLayout.addWidget(self.graph) 

 

                        self.setLayout(mainLayout) 

 

class ProgressViewerModule: 

        def __init__(self, moduleManager, *args, **kwargs): 

                super().__init__(*args, **kwargs) 

                self._mm = moduleManager 

 

                self.type = "progressViewer" 

 

                self.requires = ( 

                        self._mm.mods(type="ui"), 

                ) 

                self.filesWithTranslations = ("progressViewer.py",) 

 

        def createProgressViewer(self, *args, **kwargs): 

                pv = ProgressViewer(*args, **kwargs) 

                self._progressViewers.add(weakref.ref(pv)) 

                return pv 

 

        def enable(self): 

                global QtCore, QtGui, QtWidgets 

                try: 

                        from PyQt5 import QtCore, QtGui, QtWidgets 

                except ImportError: 

                        return 

                installQtClasses() 

 

                self._modules = set(self._mm.mods(type="modules")).pop() 

                self._progressViewers = set() 

 

                try: 

                        translator = self._modules.default("active", type="translator") 

                except IndexError: 

                        pass 

                else: 

                        translator.languageChanged.handle(self._retranslate) 

                self._retranslate() 

 

                self.active = True 

 

        def _retranslate(self): 

                #Translations 

                global _ 

                global ngettext 

 

                try: 

                        translator = self._modules.default("active", type="translator") 

                except IndexError: 

                        _, ngettext = str, lambda a, b, n: a if n == 1 else b 

                else: 

                        _, ngettext = translator.gettextFunctions( 

                                self._mm.resourcePath("translations") 

                        ) 

 

        def disable(self): 

                self.active = False 

 

                del self._modules 

                del self._progressViewers 

 

def init(moduleManager): 

        return ProgressViewerModule(moduleManager)