-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRedactorView.py
226 lines (202 loc) · 10.2 KB
/
RedactorView.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
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
216
217
218
219
220
221
222
223
224
225
226
from PyQt5 import QtWidgets
from PyQt5.QtCore import QRect, QMimeData
from PyQt5.QtWidgets import (
QApplication, QMainWindow, QHBoxLayout, QVBoxLayout,
QTextEdit, QAction, QFileDialog, QMessageBox, QPushButton
)
from PyQt5.QtGui import QIcon, QFont, QPalette, QColor, QPixmap
from RedactorUtility import Bar, FileOpener, Find
from T9 import T9
class RedactorView(QMainWindow):
_WINDOW_WIDTH = 1000
_WINDOW_HEIGHT = 800
def __init__(self, model, controller, parent=None):
QMainWindow.__init__(self, parent)
self.main_form = None
self.t9_buttons_count = 3
self.model = model
self.controller = controller
self.text_edit = QTextEdit(self)
self.text_edit.textChanged.connect(self.controller.set_text_changed)
p = self.text_edit.palette()
p.setColor(QPalette.Highlight, QColor("blue"))
self.text_edit.setPalette(p)
self.text_edit.cursorPositionChanged.connect(
self.controller.on_cursor_changed)
self.mime_data = QMimeData()
self.clipboard = QApplication.clipboard()
self.qaction_name_to_qaction = dict()
self.qwidget_name_to_qwidget = dict()
self.bars = {
'File': Bar('File', self.menuBar().addMenu('Файл'),
'New, Open, Save, SaveAs, Sep, Close'),
'Edit': Bar('Edit', self.menuBar().addMenu('Правка'),
'Cut, Copy, Paste, Sep, Undo, Redo'),
'Format': Bar('Format', self.addToolBar('Формат'),
'Font, FontSize, FontColor, Sep, T9, Sep, Italic, '
'Underline, Bold, Strike, Find')
}
self.qwidgets_connect()
self.qactions_init()
self.model.add_observer(self)
FileOpener.init_redactor_view(self)
def init_UI(self):
self.main_form = RedactorWindowWidget(self)
self.setCentralWidget(self.main_form)
self.setWindowTitle("Текстовый редактор")
self.setGeometry(RedactorView.get_qrect_for_window())
for bar in self.bars.values():
bar.add_UI_elements(self)
def qwidgets_connect(self):
qwidget_font = QtWidgets.QFontComboBox(self)
qwidget_font_size = QtWidgets.QSpinBox(self)
self.qwidget_name_to_qwidget = {
'Font': qwidget_font,
'FontSize': qwidget_font_size
}
qwidget_font_size.setValue(14)
self.text_edit.setFontPointSize(14)
self.qwidget_name_to_qwidget['Font'].currentFontChanged.connect(
self.controller.change_font)
self.qwidget_name_to_qwidget['FontSize'].textChanged.connect(
self.controller.change_font_size)
def qactions_init(self):
self.qaction_name_to_qaction = {
'New': self.get_qaction('icons/new.png', 'Создать',
self.controller.new_file,
'Создать новый файл', 'CTRL+N'),
'Open': self.get_qaction('icons/open.png', 'Открыть..',
self.controller.open_file,
'Открыть файл', 'CTRL+O'),
'Save': self.get_qaction('icons/save.png', 'Сохранить',
self.controller.save_current_file,
'Сохранить файл', 'CTRL+S'),
'SaveAs': self.get_qaction('icons/save.png', 'Сохранить как..',
self.controller.save_as_current_file,
'Сохранить файл как', 'CTRL+SHIFT+S'),
'Close': self.get_qaction('', 'Выход',
self.controller.redactor_exit,
'', ''),
'Cut': self.get_qaction('icons/cut.png', 'Вырезать',
self.controller.cut,
'Копировать в буфер обмена и удалить',
'CTRL+X'),
'Copy': self.get_qaction('icons/copy.png', 'Копировать',
self.controller.copy,
'Копировать в буфер обмена',
'CTRL+C'),
'Paste': self.get_qaction('icons/paste.png', 'Вставить',
self.controller.paste,
'Вставить из буфера обмена',
'CTRL+V'),
'Undo': self.get_qaction('icons/undo.png', 'Отменить',
self.controller.undo,
'Возвращает предыдущее состояние',
'CTRL+Z'),
'Redo': self.get_qaction('icons/redo.png', 'Вернуть',
self.controller.redo,
'Возвращает состояние до отмены',
'CTRL+SHIFT+Z'),
'FontColor': self.get_qaction('icons/font-color.png',
'Изменить цвет шрифта',
self.controller.change_font_color),
'Italic': self.get_qaction('icons/italic.png', 'Курсив',
self.controller.set_font_italic),
'Underline': self.get_qaction('icons/underline.png',
'Подчёркнутый',
self.controller.set_font_underline),
'Bold': self.get_qaction('icons/bold.png', 'Жирный',
self.controller.set_font_bold),
'Strike': self.get_qaction('icons/strike.png', 'Зачёркнутый',
self.controller.set_font_strike),
'Find': self.get_qaction('icons/find.png', 'Поиск',
Find(self).show,
'Ищет совпадения', 'CTRL+F'),
'T9': self.get_qaction('icons/T9-icon.png', 'База слов T9',
T9.choose_t9_data_base,
'База слов для T9')
}
def get_qaction(self, icon_path: str, name: str, action,
status_tip=None, short_cut=None):
qaction = QAction(QIcon(icon_path), name, self)
if status_tip:
qaction.setStatusTip(status_tip)
if short_cut:
qaction.setShortcut(short_cut)
qaction.triggered.connect(action)
return qaction
@staticmethod
def get_qrect_for_window():
desktop = QApplication.desktop()
return QRect(desktop.width() // 2 - RedactorView._WINDOW_WIDTH // 2,
desktop.height() // 2 - RedactorView._WINDOW_HEIGHT // 2,
RedactorView._WINDOW_WIDTH,
RedactorView._WINDOW_HEIGHT)
@staticmethod
def show_error():
errorbox = QtWidgets.QMessageBox()
errorbox.setWindowTitle("Ошибка")
errorbox.setText("Что-то пошло не так, "
"невозможно продолжить действие")
errorbox.exec_()
@staticmethod
def notify_about_t9():
msg = QMessageBox()
msg.setIcon(QMessageBox.Information)
msg.setIconPixmap(QPixmap('icons/T9-icon.png'))
msg.setWindowTitle('T9')
msg.setText('Вы всегда можете это сделать '
'на панели инструментов сверху')
msg.addButton('Окей', QMessageBox.AcceptRole)
msg.exec()
def get_open_file_name(self):
return QFileDialog.getOpenFileName(
self, 'Выбор файла', filter='(*.html *.txt *.log *.red)')[0]
def get_save_file_name(self):
return QFileDialog.getSaveFileName(self, 'Сохранение файла',
filter='*.red')[0]
def suggest_saving_file_message(self):
return QMessageBox.question(
self, self.model.file_name,
'Вы хотите сохранить изменения в "' + self.model.file_name
+ '"?',
QMessageBox.Yes | QMessageBox.No | QMessageBox.Cancel)
def suggest_choose_t9_data(self):
return QMessageBox.question(
self, 'T9',
'Для работы функции «T9» необходимо выбрать базу слов. '
'Вы хотите это сделать?',
QMessageBox.Yes | QMessageBox.No)
def closeEvent(self, event):
self.controller.on_close_event(event)
class RedactorWindowWidget(QtWidgets.QWidget):
def __init__(self, view):
super(RedactorWindowWidget, self).__init__(view)
self.form = QVBoxLayout(self)
self.form.addWidget(view.text_edit)
self.helps = QHBoxLayout(self)
self.buttons = []
for i in range(view.t9_buttons_count):
button = RedactorWindowWidget.get_new_t9_button()
button.clicked.connect(
lambda _: view.controller.t9_button_clicked(self.sender()))
self.buttons.append(button)
self.helps.addWidget(button)
self.form.addLayout(self.helps)
self.setLayout(self.form)
def update_buttons(self, words):
for word, button in zip(words, self.buttons):
button.setText(word)
@staticmethod
def get_new_t9_button():
button = QPushButton('')
button.setStyleSheet('QPushButton {'
'border: 2px solid #8f8f91;'
'border-radius: 15px'
'}'
'QPushButton:pressed {'
'background-color: #c7c7c7;'
'}')
button.setFixedHeight(40)
button.setFont(QFont('Arial', 16))
return button