"PyQt"의 두 판 사이의 차이

(새 문서: ==개요== ;PyQt ;파이Qt * 크로스플랫폼 GUI 툴킷 Qt의 파이썬 바인딩 * 작성언어: C++, Python * 라이선스: GNU GPL, 커머셜 https://upload.wikimedia.org/wikip...)
 
잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(사용자 2명의 중간 판 7개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;PyQt
;PyQt
;파이Qt
;파이큐트
* 크로스플랫폼 GUI 툴킷 Qt의 파이썬 바인딩
* 크로스플랫폼 GUI 툴킷 [[Qt]]의 파이썬 바인딩
* 작성언어: C++, Python
* 작성언어: C++, Python
* 라이선스: GNU GPL, 커머셜
* 라이선스: GNU GPL, 커머셜
22번째 줄: 22번째 줄:


==예제==
==예제==
<source lang='python'>
<syntaxhighlight lang='python'>
#! /usr/bin/env python
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
36번째 줄: 36번째 줄:


sys.exit(a.exec_())  # Finally, we enter the mainloop of the application.
sys.exit(a.exec_())  # Finally, we enter the mainloop of the application.
</source>
</syntaxhighlight>


https://upload.wikimedia.org/wikipedia/commons/6/6d/PyQt_screen.png
https://upload.wikimedia.org/wikipedia/commons/6/6d/PyQt_screen.png


==참고 자료==
==같이 보기==
* [[PySide]]
* [[PyGTK]]
* [[wxPython]]
* [[Tkinter]]
* [[Python]]
* [[Qt]]
 
==참고==
* https://en.wikipedia.org/wiki/PyQt
* https://en.wikipedia.org/wiki/PyQt
* http://pyqt.syntaxhighlightforge.net/Docs/PyQt4/
* https://opentutorials.org/module/544/4998


[[분류: Python]]
[[분류: Python]]

2020년 11월 2일 (월) 02:31 기준 최신판

1 개요[ | ]

PyQt
파이큐트
  • 크로스플랫폼 GUI 툴킷 Qt의 파이썬 바인딩
  • 작성언어: C++, Python
  • 라이선스: GNU GPL, 커머셜

 

 

2 구성[ | ]

  • QtCore
  • QtGui
  • QtNetwork
  • QtOpenGL
  • QtSql
  • QtSvg
  • QtXml
  • QtMultimedia
  • QtDesigner

3 예제[ | ]

#! /usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from PyQt4.QtGui import *

a = QApplication(sys.argv)
w = QWidget()

w.resize(320, 240)
w.setWindowTitle("Hello, World!")
w.show()

sys.exit(a.exec_())  # Finally, we enter the mainloop of the application.

 

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}