비슷한예제 diagramscene 검색
diagramscene.pro
The Qt Resource System
http://doc.qt.io/qt-5/resources.html
The resource system is based on tight cooperation between qmake, rcc (Qt's resource compiler), and QFile.
아이콘 , 전송파일, 기타 등을 설정한다. .qrc 파일
컴파일 옵션주는법
RESOURCES = application.qrc
main.cpp
다음과 같이 정의되어 있다.
QT_BEGIN_NAMESPACE class QGraphicsPolygonItem; class QGraphicsLineItem; class QGraphicsScene; class QRectF; class QGraphicsSceneMouseEvent; class QPainterPath; QT_END_NAMESPACE |
QT_BEGIN_NAMESPACE
QT_END_NAMESPACE
들어가보면
# define QT_BEGIN_NAMESPACE namespace QT_NAMESPACE {# define QT_END_NAMESPACE }
Q_OBJECT 란?Q_OBJECT 메크로 역할 http://cafe.naver.com/qtprograming/36
qobjectdefs.h
/* qmake ignore Q_OBJECT */
diagramitem.h
diagramitem.cpp
'Qt' 카테고리의 다른 글
Exposing Attributes of C++ Types to QML[QT] (0) | 2015.10.23 |
---|---|
git 설치 (0) | 2015.06.29 |
Qt 시그널 슬롯 시스템 (0) | 2015.06.27 |
CBDSW 가이드 (0) | 2015.06.25 |
Qt (0) | 2015.06.23 |