完善json编辑器
This commit is contained in:
parent
47ee71d7e2
commit
0fbac536dd
3
config.json
Normal file
3
config.json
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"1":"13"
|
||||||
|
}
|
|
@ -1,11 +1,15 @@
|
||||||
from PyQt5.QtWidgets import QApplication, QTextEdit
|
from PyQt5.QtWidgets import QApplication, QTextEdit
|
||||||
from PyQt5.QtGui import QSyntaxHighlighter, QTextCharFormat, QFont, QColor
|
from PyQt5.QtGui import QSyntaxHighlighter, QTextCharFormat, QFont, QFontMetrics
|
||||||
from PyQt5.QtCore import QRegularExpression, Qt
|
from PyQt5.QtCore import QRegularExpression, Qt
|
||||||
|
|
||||||
class CodeEditor(QTextEdit):
|
class CodeEditor(QTextEdit):
|
||||||
def __init__(self):
|
def __init__(self, text:str=""):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.setFont(QFont("Courier New", 12))
|
self.setFont(QFont("Courier New", 12))
|
||||||
|
fontMetrics = QFontMetrics(self.font())
|
||||||
|
tabWidth = 4 * fontMetrics.width(' ') # Calculate the width of a tab
|
||||||
|
self.setTabStopWidth(tabWidth)
|
||||||
|
self.setPlainText(text)
|
||||||
self.highlighter = CodeHighlighter(self.document())
|
self.highlighter = CodeHighlighter(self.document())
|
||||||
self.highlighter.rehighlight()
|
self.highlighter.rehighlight()
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
from PyQt5.QtWidgets import QWidget, QHBoxLayout
|
from PyQt5.QtWidgets import QWidget, QHBoxLayout
|
||||||
from qfluentwidgets import SwitchSettingCard
|
|
||||||
from qfluentwidgets import FluentIcon as FIF
|
from qfluentwidgets import FluentIcon as FIF
|
||||||
from .json_edit import CodeEditor
|
from .json_edit import CodeEditor
|
||||||
|
import json
|
||||||
|
|
||||||
class SettingWidget(QWidget):
|
class SettingWidget(QWidget):
|
||||||
def __init__(self, title="设置"):
|
def __init__(self, title="设置"):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.base = QHBoxLayout(self)
|
self.base = QHBoxLayout(self)
|
||||||
c1 = CodeEditor()
|
json.load(open("config.json"))
|
||||||
|
c1 = CodeEditor(open("config.json").read())
|
||||||
self.base.addWidget(c1)
|
self.base.addWidget(c1)
|
||||||
|
|
||||||
self.setLayout(self.base) # 设置布局
|
self.setLayout(self.base) # 设置布局
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user