This repository was archived by the owner on Oct 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmemory_window.py
314 lines (251 loc) · 11.3 KB
/
memory_window.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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
import datetime
import json
from collections import OrderedDict
from PySide6.QtCore import Qt
from PySide6.QtGui import QPalette, QColor
from PySide6.QtWidgets import (QApplication, QMainWindow, QDialog, QLineEdit,
QTextEdit, QLabel, QVBoxLayout, QFormLayout, QDialogButtonBox, QHBoxLayout,
QPushButton, QInputDialog, QListWidgetItem, QListWidget, QWidget)
import services.windows_api_handler
from components.custom_message_box import CustomMessageBox
from components.custom_titlebar import CustomTitleBar
class MemoryManager:
def __init__(self, filename="memories.json"):
self.filename = filename
try:
with open(filename, 'r') as file:
self.memories = json.load(file, object_pairs_hook=OrderedDict)
except FileNotFoundError:
self.memories = OrderedDict()
def add_memory(self, content):
timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
memory_entry = {"content": content, "timestamp": timestamp}
self.memories[timestamp] = memory_entry
return timestamp
def save(self):
with open(self.filename, 'w') as file:
json.dump(self.memories, file, indent=4)
def get_memories_string(self):
all_memories_string = ""
for timestamp, _memory in self.memories.items():
formatted_memory = f"{timestamp} - {_memory['content']}\n"
all_memories_string += formatted_memory
return all_memories_string.strip()
def get_memories(self):
return list(self.memories.values())
def delete_memory(self, timestamp):
if timestamp in self.memories:
del self.memories[timestamp]
self.save()
def modify_memory(self, timestamp, modified_content):
if timestamp in self.memories:
self.memories[timestamp]['content'] = modified_content
self.save()
class MemoryWindow(QMainWindow):
def __init__(self, _memory_manager, parent=None):
super().__init__(parent)
self.messagebox = None
screen = QApplication.primaryScreen()
screen_geometry = screen.geometry()
screen_width = screen_geometry.width()
screen_height = screen_geometry.height()
self.init_width = int(screen_width * 0.42)
self.init_height = int(screen_height * 0.72)
self.resize(self.init_width, self.init_height)
self.move(int((screen_width - self.init_width) / 2), int((screen_height - self.init_height) / 2))
self.memory_manager = _memory_manager
self.setWindowFlags(Qt.Window | Qt.FramelessWindowHint | Qt.WindowSystemMenuHint | Qt.WindowMinimizeButtonHint
| Qt.WindowMaximizeButtonHint)
self.titleBar = CustomTitleBar(self, custom_title="Matcha Chat 2 - Memory Manager")
self.setMenuWidget(self.titleBar)
self.setWindowTitle("Memory Manager")
palette = QPalette()
palette.setColor(QPalette.Window, QColor(0, 0, 0))
self.setPalette(palette)
self.setStyleSheet("background:transparent")
self.windowEffect = services.windows_api_handler.WindowEffect()
self.windowEffect.setAcrylicEffect(int(self.winId()), gradientColor='00101080')
central_widget = QWidget(self)
self.setCentralWidget(central_widget)
self.content_edit = QLineEdit()
palette = self.content_edit.palette()
palette.setColor(QPalette.Highlight, QColor("#5bb481"))
self.content_edit.setPalette(palette)
self.timestamp_label = QLabel()
self.timestamp_label.setAlignment(Qt.AlignRight)
self.memory_list = QListWidget()
self.memory_list.setSelectionMode(QListWidget.ExtendedSelection)
self.memory_list.itemSelectionChanged.connect(self.update_memory_text)
self.memory_text = QTextEdit()
self.memory_text.setReadOnly(True)
self.add_button = QPushButton("Add")
self.add_button.clicked.connect(self.add_memory)
self.delete_button = QPushButton("Delete")
self.delete_button.clicked.connect(self.delete_memory)
self.modify_button = QPushButton("Modify")
self.modify_button.clicked.connect(self.modify_memory)
self.button_box = QDialogButtonBox(QDialogButtonBox.Save | QDialogButtonBox.Discard)
self.button_box.accepted.connect(self.save_memory)
# self.button_box.rejected.connect(self.reject)
for button in [self.add_button, self.delete_button, self.modify_button]:
button_style = """
QPushButton {
background-color: #599e5e;
border: none;
padding-top: 2px;
padding-right: 10px;
padding-bottom: 2px;
padding-left: 10px;
}
QPushButton:hover {
background-color: #2b8451;
}
"""
button.setStyleSheet(button_style)
form_layout = QFormLayout()
form_layout.addRow("Content:", self.content_edit)
form_layout.addRow("Timestamp:", self.timestamp_label)
main_layout = QHBoxLayout(central_widget)
main_layout.addWidget(self.memory_list)
right_layout = QVBoxLayout()
right_layout.addWidget(self.memory_text)
button_layout = QHBoxLayout()
button_layout.addWidget(self.add_button)
button_layout.addWidget(self.delete_button)
button_layout.addWidget(self.modify_button)
add_content_layout = QHBoxLayout()
add_content_label = QLabel("Add Memory:")
add_content_layout.addWidget(add_content_label)
add_content_layout.addWidget(self.content_edit)
right_layout.addLayout(add_content_layout)
right_layout.addLayout(button_layout)
right_layout.addWidget(self.button_box)
main_layout.addLayout(right_layout)
self.setLayout(main_layout)
hey_stylesheet = """
QTextEdit, QLineEdit {
border: 2px solid transparent;
border-radius: 0px;
}
QTextEdit:focus, QLineEdit:focus {
border: 2px solid #599e5e;
}
QScrollBar:vertical {
border: none;
background-color: lightgray;
width: 8px;
}
QScrollBar::handle:vertical {
background-color: #599e5e;
border-radius: 0px;
}
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical {
background: none;
}
"""
for widget in [self.content_edit, self.memory_text]:
widget.setStyleSheet(hey_stylesheet)
self.memory_list.setStyleSheet("""
QListWidget::item:selected {
background-color: #599e5e;
}
QScrollBar:vertical {
border: 0px solid grey;
background: #f1f1f1;
width: 10px;
margin: 0 0 0 0;
}
QScrollBar::sub-line:vertical, QScrollBar::add-line:vertical {
border: 2px solid grey;
background: #8f8f8f;
height: 20px;
subcontrol-position: top;
subcontrol-origin: margin;
}
QScrollBar::add-line:vertical {
subcontrol-position: bottom;
}
QScrollBar::handle:vertical {
background: #599e5e;
min-height: 20px;
}
QScrollBar::handle:vertical:hover {
background: #599e5e;
}
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
background: none;
}
""")
self.show_memories()
self.content_edit.setFocus()
def show_memories(self):
self.memory_list.clear()
self.memory_text.clear()
all_memories = self.memory_manager.get_memories()
for memory in all_memories:
timestamp = memory['timestamp']
content = memory['content']
item = QListWidgetItem(timestamp)
self.memory_list.addItem(item)
def update_memory_text(self):
selected_items = self.memory_list.selectedItems()
if selected_items:
selected_item = selected_items[0]
timestamp = selected_item.text()
all_memories = self.memory_manager.get_memories()
for memory in all_memories:
if memory['timestamp'] == timestamp:
content = memory['content']
self.memory_text.setText(f"{timestamp} - {content}")
break
def add_memory(self):
content = self.content_edit.text()
if not content:
self.messagebox = CustomMessageBox(title="Warning", text="Memory content cannot be empty.")
self.messagebox.show()
return
self.memory_manager.add_memory(content)
self.show_memories()
self.update_memory_text()
def delete_memory(self):
selected_items = self.memory_list.selectedItems()
if not selected_items:
self.messagebox = CustomMessageBox(title="Warning", text="Memory content cannot be empty.")
self.messagebox.show()
return
timestamps_to_delete = [item.text() for item in selected_items]
for timestamp in timestamps_to_delete:
self.memory_manager.delete_memory(timestamp)
self.show_memories()
self.update_memory_text()
def modify_memory(self):
selected_items = self.memory_list.selectedItems()
if not selected_items:
self.messagebox = CustomMessageBox(title="Warning", text="Please select a memory to modify.")
self.messagebox.show()
return
selected_item = selected_items[0]
timestamp = selected_item.text()
modified_content, okPressed = QInputDialog.getText(self, "Modify Memory", "Enter modified content:")
if okPressed:
self.memory_manager.modify_memory(timestamp, modified_content)
self.show_memories()
self.update_memory_text()
def save_memory(self):
content = self.content_edit.text()
if not content:
self.messagebox = CustomMessageBox(title="Warning", text="Memory content cannot be empty.")
self.messagebox.show()
return
self.memory_manager.add_memory(content)
self.show_memories()
self.update_memory_text()
if __name__ == "__main__":
app = QApplication([])
memory_manager = MemoryManager()
main_window = QMainWindow()
main_window.setWindowTitle("Main Window")
main_window.show()
memory_dialog = MemoryWindow(memory_manager, main_window)
memory_dialog.show()
app.exec()