forked from qt-creator/qt-creator
		
	This tool made selecting items in your QML app more complicated than necessary. Now, left-click will always just select the top-most item under the mouse and right-click will allow you to select any of the items below. Also, the highlighted bounding rect now always applies to just one item, instead of also including the children bounding rect. Reviewed-by: Kai Koehne Change-Id: I17b5ab397d951fd68711590469ca6e723a9cb0e6 (backported from Qt 4.8 commit 935472c16fc53ee43e1e680ed0122e6363282a8e) Reviewed-on: http://codereview.qt.nokia.com/89 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
INCLUDEPATH += $$PWD/include
 | 
						|
 | 
						|
include($$PWD/protocol/protocol.pri)
 | 
						|
 | 
						|
HEADERS += \
 | 
						|
    $$PWD/include/jsdebuggeragent.h \
 | 
						|
    $$PWD/include/qmljsdebugger_global.h
 | 
						|
 | 
						|
SOURCES += \
 | 
						|
    $$PWD/jsdebuggeragent.cpp
 | 
						|
 | 
						|
HEADERS += \
 | 
						|
    $$PWD/include/qdeclarativeviewobserver.h \
 | 
						|
    $$PWD/include/qdeclarativeobserverservice.h \
 | 
						|
    $$PWD/include/qmlobserverconstants.h \
 | 
						|
    $$PWD/editor/abstractliveedittool.h \
 | 
						|
    $$PWD/editor/liveselectiontool.h \
 | 
						|
    $$PWD/editor/livelayeritem.h \
 | 
						|
    $$PWD/editor/livesingleselectionmanipulator.h \
 | 
						|
    $$PWD/editor/liverubberbandselectionmanipulator.h \
 | 
						|
    $$PWD/editor/liveselectionrectangle.h \
 | 
						|
    $$PWD/editor/liveselectionindicator.h \
 | 
						|
    $$PWD/editor/boundingrecthighlighter.h \
 | 
						|
    $$PWD/editor/subcomponentmasklayeritem.h \
 | 
						|
    $$PWD/editor/zoomtool.h \
 | 
						|
    $$PWD/editor/colorpickertool.h \
 | 
						|
    $$PWD/editor/qmltoolbar.h \
 | 
						|
    $$PWD/editor/toolbarcolorbox.h \
 | 
						|
    $$PWD/qdeclarativeviewobserver_p.h
 | 
						|
 | 
						|
SOURCES += \
 | 
						|
    $$PWD/qdeclarativeviewobserver.cpp \
 | 
						|
    $$PWD/qdeclarativeobserverservice.cpp \
 | 
						|
    $$PWD/editor/abstractliveedittool.cpp \
 | 
						|
    $$PWD/editor/liveselectiontool.cpp \
 | 
						|
    $$PWD/editor/livelayeritem.cpp \
 | 
						|
    $$PWD/editor/livesingleselectionmanipulator.cpp \
 | 
						|
    $$PWD/editor/liverubberbandselectionmanipulator.cpp \
 | 
						|
    $$PWD/editor/liveselectionrectangle.cpp \
 | 
						|
    $$PWD/editor/liveselectionindicator.cpp \
 | 
						|
    $$PWD/editor/boundingrecthighlighter.cpp \
 | 
						|
    $$PWD/editor/subcomponentmasklayeritem.cpp \
 | 
						|
    $$PWD/editor/zoomtool.cpp \
 | 
						|
    $$PWD/editor/colorpickertool.cpp \
 | 
						|
    $$PWD/editor/qmltoolbar.cpp \
 | 
						|
    $$PWD/editor/toolbarcolorbox.cpp
 | 
						|
 | 
						|
RESOURCES += $$PWD/editor/editor.qrc
 | 
						|
 | 
						|
DEFINES += QMLJSDEBUGGER
 |