add notes plugin
This commit is contained in:
14
raven/plugins/notes/noteswidget.py
Normal file
14
raven/plugins/notes/noteswidget.py
Normal 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)
|
||||
Reference in New Issue
Block a user