Use System Locale to determine first day of week

This commit is contained in:
Mark Watkins 2011-11-15 15:49:41 +10:00
parent f1e2c215ab
commit c3b5fa51f6
3 changed files with 7 additions and 0 deletions

View File

@ -210,6 +210,7 @@ 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());
ui->tabWidget->setCurrentWidget(ui->details);

View File

@ -31,6 +31,9 @@ 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());
// 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)));
connect(ui->endDate->calendarWidget(),SIGNAL(currentPageChanged(int,int)),SLOT(endDate_currentPageChanged(int,int)));

View File

@ -33,6 +33,9 @@ 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());
// Stop both calendar drop downs highlighting weekends in red
QTextCharFormat format = ui->dateStart->calendarWidget()->weekdayTextFormat(Qt::Saturday);