import Colors 1.0 import Fonts 1.0 import QtQuick 2.7 import QtQuick.Controls 2.0 import QtQuick.Controls.Styles 1.4 Column { id: koreanInfo spacing: 4 anchors.horizontalCenter: parent.horizontalCenter property var customLineHeight: 20 property var customFontSize: 14 Text { id: lineA anchors { left: parent.left right: parent.right } text: "한국마이크로소프트(유)
대표이사: 조원우
주소: (우)110-150 서울 종로구 종고1길 505 더 케이트윈타워 A동 12층" font.family: Fonts.standard font.pixelSize: customFontSize lineHeight: customLineHeight lineHeightMode: Text.FixedHeight color: Colors.common.text_secondary wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter Accessible.role: Accessible.StaticText Accessible.name: text } Rectangle { id: lineBRect anchors { left: parent.left right: parent.right } anchors.top: lineA.bottom color: "transparent" height: customLineHeight Row { id: lineB anchors.horizontalCenter: parent.horizontalCenter width: lineB1.width + lineB2.width height: lineB1.height Text { id: lineB1 text: "전화번호: 02-531-4500, 메일: " font.family: Fonts.standard font.pixelSize: customFontSize color: Colors.common.text_secondary wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter lineHeight: customLineHeight lineHeightMode: Text.FixedHeight Accessible.role: Accessible.StaticText Accessible.name: text } SimpleButtonLink { id: lineB2 anchors { left: lineB1.right } textcontrol.text: "ms-korea@microsoft.com" textcontrol.font.pixelSize: customFontSize textcontrol.font.family: Fonts.standard textcontrol.lineHeight: customLineHeight textcontrol.lineHeightMode: Text.FixedHeight textcontrol.wrapMode: Text.WordWrap visible: true Accessible.name: "ms-korea@microsoft.com" Accessible.focusable: true Accessible.ignored: !parent.visible callback: function() { Qt.openUrlExternally("mailto:ms-korea@microsoft.com"); } } } } Rectangle { id: lineCRect anchors { left: parent.left right: parent.right } anchors.top: lineBRect.bottom height: customLineHeight color: "transparent" Row { id: lineC anchors.horizontalCenter: parent.horizontalCenter width: lineC1.width + lineC2.width height: lineC1.height Text { id: lineC1 text: "사업자등록번호: 120-81-05948 " font.family: Fonts.standard font.pixelSize: customFontSize color: Colors.common.text_secondary wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter lineHeight: customLineHeight lineHeightMode: Text.FixedHeight Accessible.role: Accessible.StaticText Accessible.name: text } SimpleButtonLink { id: lineC2 anchors { left: lineC1.right } textcontrol.text: "사업자정보확인" textcontrol.font.pixelSize: customFontSize textcontrol.font.family: Fonts.standard textcontrol.wrapMode: Text.WordWrap textcontrol.lineHeight: customLineHeight textcontrol.lineHeightMode: Text.FixedHeight visible: true Accessible.name: textcontrol.text Accessible.focusable: true Accessible.ignored: !parent.visible callback: function() { Qt.openUrlExternally("https://go.microsoft.com/fwlink/?linkid=2306191"); } } } } Text { id: lineD anchors { left: parent.left right: parent.right top: lineCRect.bottom } text: "호스팅서비스 제공자: Microsoft Corporation
통신판매신고: 제2013-서울종로-1009호" font.family: Fonts.standard font.pixelSize: customFontSize lineHeight: customLineHeight lineHeightMode: Text.FixedHeight color: Colors.common.text_secondary wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter Accessible.role: Accessible.StaticText Accessible.name: text } Rectangle { id: lineERect anchors { left: parent.left right: parent.right } anchors.top: lineD.bottom height: customLineHeight color: "transparent" Row { id: lineE anchors.horizontalCenter: parent.horizontalCenter width: lineE1.width + lineE2.width height: lineE1.height Text { id: lineE1 text: "사이버몰의 이용약관: " font.family: Fonts.standard font.pixelSize: customFontSize lineHeight: customLineHeight lineHeightMode: Text.FixedHeight color: Colors.common.text_secondary wrapMode: Text.WordWrap horizontalAlignment: Text.AlignHCenter Accessible.role: Accessible.StaticText Accessible.name: text } SimpleButtonLink { id: lineE2 anchors { left: lineE1.right } textcontrol.text: "Microsoft Store 판매 약관" textcontrol.font.pixelSize: customFontSize textcontrol.font.family: Fonts.standard textcontrol.wrapMode: Text.WordWrap textcontrol.lineHeight: customLineHeight textcontrol.lineHeightMode: Text.FixedHeight visible: true Accessible.name: textcontrol.text Accessible.focusable: true Accessible.ignored: !parent.visible callback: function() { Qt.openUrlExternally("https://go.microsoft.com/fwlink/?linkid=2306295"); } } } } }