mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-09 16:47:27 +03:00
b3378d4599
In addition to the current tooltip, which shows color legend, if user holds the Shift key during hovering we show another tooltip which contains a table of contents for the piece under the moue cursor. The table lists file sizes and names. If the cursor points to a part of a file which spans several pieces, those pieces are highlighted.
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
INCLUDEPATH += $$PWD
|
|
|
|
FORMS += $$PWD/propertieswidget.ui \
|
|
$$PWD/trackersadditiondlg.ui \
|
|
$$PWD/peersadditiondlg.ui
|
|
|
|
HEADERS += $$PWD/propertieswidget.h \
|
|
$$PWD/peerlistwidget.h \
|
|
$$PWD/proplistdelegate.h \
|
|
$$PWD/trackerlist.h \
|
|
$$PWD/downloadedpiecesbar.h \
|
|
$$PWD/peerlistdelegate.h \
|
|
$$PWD/peerlistsortmodel.h \
|
|
$$PWD/peersadditiondlg.h \
|
|
$$PWD/trackersadditiondlg.h \
|
|
$$PWD/pieceavailabilitybar.h \
|
|
$$PWD/proptabbar.h \
|
|
$$PWD/speedwidget.h \
|
|
$$PWD/speedplotview.h \
|
|
$$PWD/piecesbar.h
|
|
|
|
SOURCES += $$PWD/propertieswidget.cpp \
|
|
$$PWD/proplistdelegate.cpp \
|
|
$$PWD/peerlistwidget.cpp \
|
|
$$PWD/trackerlist.cpp \
|
|
$$PWD/peersadditiondlg.cpp \
|
|
$$PWD/downloadedpiecesbar.cpp \
|
|
$$PWD/trackersadditiondlg.cpp \
|
|
$$PWD/pieceavailabilitybar.cpp \
|
|
$$PWD/proptabbar.cpp \
|
|
$$PWD/speedwidget.cpp \
|
|
$$PWD/speedplotview.cpp \
|
|
$$PWD/piecesbar.cpp
|