Qt < 4.8 build fixes (Locale firstDayOfWeek)

This commit is contained in:
Mark Watkins 2011-11-16 07:22:08 +10:00
parent 031de957f2
commit 3ffbc14138
7 changed files with 88 additions and 10 deletions

View File

@ -66,7 +66,8 @@ SOURCES += main.cpp\
SleepLib/schema.cpp \
profileselect.cpp \
newprofile.cpp \
exportcsv.cpp
exportcsv.cpp \
common_gui.cpp
unix:SOURCES += qextserialport/posix_qextserialport.cpp
unix:!macx:SOURCES += qextserialport/qextserialenumerator_unix.cpp
@ -120,7 +121,8 @@ HEADERS += \
SleepLib/schema.h \
profileselect.h \
newprofile.h \
exportcsv.h
exportcsv.h \
common_gui.h
FORMS += \
@ -153,3 +155,5 @@ OTHER_FILES += \

52
common_gui.cpp Normal file
View File

@ -0,0 +1,52 @@
#include "common_gui.h"
#include "qglobal.h"
#if QT_VERSION<0x400800
#if defined(Q_OS_MAC)
#include "cocoacommon.h"
#include <Cocoa/Cocoa.h>
#endif
#ifdef Q_OS_WIN
#include "windows.h"
#endif
#ifdef __GLIBC__
#include <langinfo.h>
#endif
Qt::DayOfWeek firstDayOfWeekFromLocale()
{
Qt::DayOfWeek firstDay = Qt::Monday;
#ifdef Q_OS_WIN
WCHAR wsDay[4];
# if defined(_WIN32_WINNT_VISTA) && WINVER >= _WIN32_WINNT_VISTA && defined(LOCALE_NAME_USER_DEFAULT)
if (GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT, LOCALE_IFIRSTDAYOFWEEK, wsDay, 4)) {
# else
if (GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_IFIRSTDAYOFWEEK, wsDay, 4)) {
# endif
bool ok;
int wfd = QString::fromWCharArray(wsDay).toInt(&ok) + 1;
if (ok) {
firstDay = (Qt::DayOfWeek)(unsigned char)wfd;
}
}
#elif defined(__GLIBC__)
firstDay = (Qt::DayOfWeek)(unsigned char)((*nl_langinfo(_NL_TIME_FIRST_WEEKDAY) + 5) % 7 + 1);
#elif defined(Q_OS_MAC)
NSCalendar *cal = [NSCalendar currentCalendar];
int day = ([cal firstWeekday] + 5) % 7 + 1;
firstDay = (Qt::DayOfWeek)(unsigned char)day;
#endif
return firstDay;
}
#else
Qt::DayOfWeek firstDayOfWeekFromLocale()
{
return QLocale::system().firstDayOfWeek();
}
#endif

10
common_gui.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef COMMON_GUI_H
#define COMMON_GUI_H
//#if QT_VERSION
#include <QLocale>
Qt::DayOfWeek firstDayOfWeekFromLocale();
//#endif
#endif

View File

@ -18,6 +18,7 @@
#include <QResizeEvent>
#include <QScrollBar>
#include "common_gui.h"
#include "SleepLib/profiles.h"
#include "SleepLib/session.h"
#include "Graphs/graphdata_custom.h"
@ -210,7 +211,11 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
format.setForeground(QBrush(Qt::black, Qt::SolidPattern));
ui->calendar->setWeekdayTextFormat(Qt::Saturday, format);
ui->calendar->setWeekdayTextFormat(Qt::Sunday, format);
ui->calendar->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
//Qt::DayOfWeek dow=QLocale::system().firstDayOfWeek();
Qt::DayOfWeek dow=firstDayOfWeekFromLocale();
ui->calendar->setFirstDayOfWeek(dow);
ui->tabWidget->setCurrentWidget(ui->details);

View File

@ -12,9 +12,9 @@ however, I have still managed to cook up a few nice improvements...</p>
<p><b>What's New?</b><br/>
<li>You can now Shift+Left Click on a day in an overview graph, and it will jump to that day in Daily tab.</li>
<li>New calendar navigation bar allows easy hiding the calendar to get more room.</li>
<li>(Relative) AHI is displayed above the flow rate waveform for selected area.</li>
<li>Event count, duration and (relative) AHI is displayed above the flow rate waveform for selected area.</li>
<li>Improved support for ResMed S9 ASV/VPAP Machines.</li>
<li>Added some basic CSV export capabilities.</li>
<li>Added some basic CSV export capabilities (File Menu->Export).</li>
<li>A new preference option to switch some daily graphs between square plots and normal line plots.</li>
<li>Some graphing optimizations to improve performance.</li>
<li>Quite a few other little bugfixes I've forgotten about.</li>
@ -32,7 +32,7 @@ If I've still missed your bug, my appologies, I'm not deliberately ignoring you,
Thanks to all the wonderful people who have given their support to this project, be it via donations,
sharing CPAP data, following GIT source tree, testing binary builds, submitting bug reports, giving ideas for improvement, and general feedback on the CPAP forums.</p>
<p>I very much appreciate all the help and encouragement.</p>
<p>Cheers,</p>
<p>Sleep Well,</p>
<p>Mark Watkins (JediMark)</p>
</body>
</html>

View File

@ -5,6 +5,7 @@
#include <QTextCharFormat>
#include "SleepLib/profiles.h"
#include "SleepLib/day.h"
#include "common_gui.h"
#include "exportcsv.h"
#include "ui_exportcsv.h"
#include "mainwindow.h"
@ -35,8 +36,10 @@ ExportCSV::ExportCSV(QWidget *parent) :
ui->endDate->calendarWidget()->setWeekdayTextFormat(Qt::Saturday, format);
ui->endDate->calendarWidget()->setWeekdayTextFormat(Qt::Sunday, format);
ui->startDate->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
ui->endDate->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
Qt::DayOfWeek dow=firstDayOfWeekFromLocale();
ui->startDate->calendarWidget()->setFirstDayOfWeek(dow);
ui->endDate->calendarWidget()->setFirstDayOfWeek(dow);
// Connect the signals to update which days have CPAP data when the month is changed
connect(ui->startDate->calendarWidget(),SIGNAL(currentPageChanged(int,int)),SLOT(startDate_currentPageChanged(int,int)));

View File

@ -14,6 +14,7 @@
#include "SleepLib/profiles.h"
#include "overview.h"
#include "ui_overview.h"
#include "common_gui.h"
#include "Graphs/gXAxis.h"
#include "Graphs/gLineChart.h"
#include "Graphs/gYAxis.h"
@ -33,8 +34,11 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
}
ui->dateStart->setDisplayFormat(shortformat);
ui->dateEnd->setDisplayFormat(shortformat);
ui->dateStart->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
ui->dateEnd->calendarWidget()->setFirstDayOfWeek(QLocale::system().firstDayOfWeek());
Qt::DayOfWeek dow=firstDayOfWeekFromLocale();
ui->dateStart->calendarWidget()->setFirstDayOfWeek(dow);
ui->dateEnd->calendarWidget()->setFirstDayOfWeek(dow);
// Stop both calendar drop downs highlighting weekends in red