add notes plugin

This commit is contained in:
2022-01-29 18:53:05 +01:00
parent 21317fd254
commit 6fd3783878
6 changed files with 67 additions and 4 deletions

View File

View File

@@ -0,0 +1,14 @@
from raven.plugins.ravenlog.Tab import Tab
from PyQt6.QtWidgets import *
class NotesWidget(Tab):
def __init__(self, unique_id: str, title: str):
super(NotesWidget, self).__init__(unique_id, title)
self.text_area = QTextEdit(self)
self.layout = QVBoxLayout(self)
self.layout.setContentsMargins(0, 0, 0, 0)
self.layout.addWidget(self.text_area)