mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-04 08:21:17 -05:00
b8e4517718
This include inverting the order of table view rows so the newest is at the top, without that the Qt MVC interactions when using a database table based model is too slow and complex to manage. The table views now have sort by column capability in the normal way (click column header to reverse sort order) for timely logging and non-disruption of Tx starts the log view should be sorted in descending time order and scrolled to the last row added. Without that Fox and contest logging will work but serious delays may be invoked that disrupt operation.
31 lines
1.4 KiB
Plaintext
31 lines
1.4 KiB
Plaintext
SOURCES += \
|
|
widgets/astro.cpp widgets/LettersSpinBox.cpp \
|
|
widgets/logqso.cpp widgets/displaytext.cpp \
|
|
widgets/meterwidget.cpp widgets/signalmeter.cpp \
|
|
widgets/plotter.cpp widgets/widegraph.cpp widgets/about.cpp \
|
|
widgets/mainwindow.cpp widgets/messageaveraging.cpp \
|
|
widgets/echoplot.cpp widgets/echograph.cpp widgets/fastgraph.cpp \
|
|
widgets/fastplot.cpp widgets/MessageBox.cpp \
|
|
widgets/colorhighlighting.cpp widgets/ExportCabrillo.cpp \
|
|
widgets/AbstractLogWindow.cpp \
|
|
widgets/FoxLogWindow.cpp widgets/CabrilloLogWindow.cpp
|
|
|
|
HEADERS += \
|
|
widgets/mainwindow.h widgets/plotter.h \
|
|
widgets/about.h widgets/widegraph.h \
|
|
widgets/displaytext.h widgets/logqso.h widgets/LettersSpinBox.hpp \
|
|
widgets/FrequencyLineEdit.hpp widgets/signalmeter.h \
|
|
widgets/meterwidget.h widgets/messageaveraging.h \
|
|
widgets/echoplot.h widgets/echograph.h widgets/fastgraph.h \
|
|
widgets/fastplot.h widgets/MessageBox.hpp widgets/colorhighlighting.h \
|
|
widgets/ExportCabrillo.h widgets/AbstractLogWindow.hpp \
|
|
widgets/FoxLogWindow.hpp widgets/CabrilloLogWindow.hpp
|
|
|
|
FORMS += \
|
|
widgets/mainwindow.ui widgets/about.ui \
|
|
widgets/widegraph.ui widgets/astro.ui \
|
|
widgets/logqso.ui widgets/messageaveraging.ui \
|
|
widgets/echograph.ui widgets/fastgraph.ui \
|
|
widgets/colorhighlighting.ui widgets/ExportCabrillo.ui \
|
|
widgets/FoxLogWindow.ui widgets/CabrilloLogWindow.ui
|