mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
191 files reformatted across views, components, widgets, hybrid, contexts. New components: CCreateSchemaDialog, CAddFieldDialog, CAdminContentPanel. JS helpers: connBadgeStatus/Text, adminStats, exampleLabels, onLevelClicked. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
331 B
QML
13 lines
331 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
Popup {
|
|
id: tip
|
|
implicitWidth: contentItem.implicitWidth
|
|
implicitHeight: contentItem.implicitHeight
|
|
contentItem: Text { id: t; text: tip.text; color: "white"
|
|
wrapMode: Text.WordWrap }
|
|
property string text: ""
|
|
background: Rectangle { color: "black"; radius: 4 }
|
|
}
|