Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Flutter Example
- Flutter Tutorial
- 반석천
- Networking
- flutter
- WillPopScope
- Row Widget
- Scaffold
- InkWell
- listview
- Load Image
- CrossAxisAlignment
- Snackbar
- HTTP
- AppBar
- ListTile
- navigator
- MainAxisAlignment
- Cached Image
- FutureBuilder
- Flutter 앱 배포
- Column Widget
- Row
- sqlite
- Flutter 강좌
- ListView.builder
- Flutter 예제
- Hello World
- Image.network
- node.js
Archives
- Today
- Total
목록QML (1)
꿈꾸는 시스템 디자이너
QML간의 fuction 호출(Signal/Slot)
QML 파일들간에 fuction 호출이 필요한 경우가 있다. 아래의 그림의 경우 Panret(main.qml)에서 ChildA와 ChildB qml파일을 이용하고 있으며, 각 파일들간에 시그널을 이용해서 데이터를 주고 받는 것을 확인해 본다. import QtQuick 2.3import QtQuick.Controls 1.2 ApplicationWindow { id: applicationWindow1 visible: true width: 400 height: 400 title: qsTr("Hello World") /*시그널 정의부 시그널이 정의된 영역의 id가 ApplicationWindow1이므로 applicationWindow1.sigSay("text")로 시그널을 발생할 수 있음*/ signal si..
Development/Qt
2015. 11. 25. 11:58