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

#! /usr/bin/env python3 

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

 

#       Copyright 2011-2012, Marten de Vries 

#       Copyright 2011, Milan Boers 

# 

#       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 weakref 

import traceback 

 

def installQtClasses(): 

        global RecentlyOpenedModel, RecentlyOpenedViewer 

 

        class RecentlyOpenedModel(QtCore.QAbstractListModel): 

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

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

 

                        self._modules = modules 

 

                        self._items = [] 

 

                def columnCount(self, parent=None): 

                        return 1 

 

                def rowCount(self, parent=None): 

                        return len(self._items) 

 

                def data(self, index, role): 

                        if not index.isValid(): 

                                return 

                        item = self._items[index.row()] 

                        if role == QtCore.Qt.DisplayRole: 

                                return item["label"] 

                        elif role == QtCore.Qt.DecorationRole: 

                                if "icon" in item: 

                                        return QtGui.QPixmap(item["icon"]) 

 

                def update(self, items): 

                        self.beginResetModel() 

                        self._items = items 

                        self.endResetModel() 

 

                def open(self, parent, row): 

                        item = self._items[row] 

 

                        showError = lambda: QtWidgets.QMessageBox.critical( 

                                parent, 

                                _("Can't open anymore"), 

                                _("It's not possible anymore to open this kind of list.") 

                        ) 

 

                        try: 

                                module = self._modules.default( 

                                        *item["moduleArgsSelectors"], 

                                        **item["moduleKwargsSelectors"] 

                                ) 

                        except IndexError: 

                                showError() 

                                return 

 

                        try: 

                                method = getattr(module, item["method"]) 

                        except AttributeError: 

                                showError() 

                                return 

 

                        try: 

                                method( 

                                        *item["args"], 

                                        **item["kwargs"] 

                                ) 

                        except Exception: 

                                #for debugging purposes 

                                traceback.print_exc() 

 

                                QtWidgets.QMessageBox.critical( 

                                        parent, 

                                        _("Can't open anymore"), 

                                        _("It's not possible anymore to open this list.") 

                                ) 

 

        class RecentlyOpenedViewer(QtWidgets.QListView): 

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

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

 

                        self.setModel(RecentlyOpenedModel(modules)) 

                        self.doubleClicked.connect(self._doubleClicked) 

 

                def _doubleClicked(self, index): 

                        self.model().open(self, index.row()) 

 

class RecentlyOpenedViewerModule: 

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

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

                self._mm = moduleManager 

 

                self.requires = ( 

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

                ) 

                self.uses = ( 

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

                ) 

 

                self.type = "recentlyOpenedViewer" 

 

        def enable(self): 

                global QtCore, QtGui, QtWidgets 

                try: 

                        from PyQt5 import QtCore, QtGui, QtWidgets 

                except ImportError: 

                        return 

                installQtClasses() 

 

                self._viewers = set() 

 

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

                try: 

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

                except IndexError: 

                        pass 

                else: 

                        translator.languageChanged.handle(self._retranslate) 

                self._retranslate() 

 

                self._recentlyOpened = self._modules.default( 

                        "active", 

                        type="recentlyOpened" 

                ) 

                self._recentlyOpened.updated.handle(self._update) 

                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._recentlyOpened 

                del self._viewers 

 

        def createViewer(self): 

                """By calling this method, you need to be able to guarantee that 

                   there's already a QApplication active. E.g. by depending on 

                   'ui', or by being the module that manages the QApplication... 

 

                """ 

                viewer = RecentlyOpenedViewer(self._modules) 

                recentlyOpened = self._recentlyOpened.getRecentlyOpened() 

 

                viewer.model().update(recentlyOpened) 

                self._viewers.add(weakref.ref(viewer)) 

                return viewer 

 

        def _update(self): 

                data = self._recentlyOpened.getRecentlyOpened() 

                for viewer in self._viewers: 

                        ref = viewer() 

                        if ref is not None: 

                                ref.model().update(data) 

 

def init(moduleManager): 

        return RecentlyOpenedViewerModule(moduleManager)