2011-11-26 04:00:31 +00:00
|
|
|
/*
|
|
|
|
Common GUI Functions Implementation
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*/
|
|
|
|
|
2011-11-15 21:22:08 +00:00
|
|
|
#include "common_gui.h"
|
|
|
|
#include "qglobal.h"
|
|
|
|
|
2011-12-17 10:41:10 +00:00
|
|
|
#ifdef Q_WS_WIN32
|
|
|
|
#include "windows.h"
|
2011-12-17 10:36:28 +00:00
|
|
|
void sh_delay(int ms)
|
2011-12-16 16:31:58 +00:00
|
|
|
{
|
2011-12-17 10:41:10 +00:00
|
|
|
Sleep(ms)
|
|
|
|
}
|
2011-12-16 16:31:58 +00:00
|
|
|
#else
|
2011-12-17 10:41:10 +00:00
|
|
|
void sh_delay(int ms)
|
|
|
|
{
|
2011-12-16 16:31:58 +00:00
|
|
|
sleep(ms/1000);
|
|
|
|
}
|
2011-12-17 10:41:10 +00:00
|
|
|
#endif
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
|
|
|
2011-11-15 22:08:48 +00:00
|
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(4,8,0))
|
|
|
|
// Qt 4.8 makes this a whole lot easier
|
|
|
|
Qt::DayOfWeek firstDayOfWeekFromLocale()
|
|
|
|
{
|
|
|
|
return QLocale::system().firstDayOfWeek();
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2011-11-17 02:56:44 +00:00
|
|
|
/*#if defined(Q_OS_MAC)
|
2011-11-15 21:22:08 +00:00
|
|
|
#include <Cocoa/Cocoa.h>
|
2011-11-17 02:56:44 +00:00
|
|
|
#endif */
|
2011-11-15 21:22:08 +00:00
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#include "windows.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __GLIBC__
|
|
|
|
#include <langinfo.h>
|
|
|
|
#endif
|
|
|
|
|
2011-11-15 22:02:10 +00:00
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
#ifdef Q_WS_WIN32
|
|
|
|
#include <dos.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2011-11-15 22:02:10 +00:00
|
|
|
// This function has been "borrowed".. Ahem..
|
2011-11-15 21:22:08 +00:00
|
|
|
Qt::DayOfWeek firstDayOfWeekFromLocale()
|
|
|
|
{
|
2011-11-15 22:02:10 +00:00
|
|
|
Qt::DayOfWeek firstDay = Qt::Monday; // Fallback, acknowledging the awesome concept of Week End.
|
|
|
|
|
2011-11-15 21:22:08 +00:00
|
|
|
#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
|
2011-11-15 22:02:10 +00:00
|
|
|
bool ok;
|
|
|
|
int wfd = QString::fromWCharArray(wsDay).toInt(&ok) + 1;
|
2011-11-15 21:22:08 +00:00
|
|
|
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);
|
2011-11-17 02:56:44 +00:00
|
|
|
/*#elif defined(Q_OS_MAC)
|
2011-11-15 22:02:10 +00:00
|
|
|
// Unsure if this will work.. Most Mac users use 4.8 anyway, so won't see this code..
|
2011-11-15 21:22:08 +00:00
|
|
|
NSCalendar *cal = [NSCalendar currentCalendar];
|
|
|
|
int day = ([cal firstWeekday] + 5) % 7 + 1;
|
|
|
|
|
2011-11-17 02:56:44 +00:00
|
|
|
firstDay = (Qt::DayOfWeek)(unsigned char)day; */
|
2011-11-15 21:22:08 +00:00
|
|
|
#endif
|
|
|
|
return firstDay;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|