MCPcopy Create free account
hub / github.com/BasicProtein/AugmentCode-Free / SectionFrame

Class SectionFrame

gui_qt6/components.py:116–129  ·  view source on GitHub ↗

区域框架组件

Source from the content-addressed store, hash-verified

114
115
116class SectionFrame(QFrame):
117 """区域框架组件"""
118
119 def __init__(self, parent=None):
120 super().__init__(parent)
121 self.setFrameStyle(QFrame.Shape.Box)
122 self.setStyleSheet(f"""
123 QFrame {{
124 background-color: #ffffff;
125 border: 1px solid #e5e7eb;
126 border-radius: 8px;
127 padding: 6px;
128 }}
129 """)
130
131
132class ScrollableFrame(QScrollArea):

Callers 3

_create_ide_sectionMethod · 0.85
_create_patch_sectionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected