2011-11-26 04:00:31 +00:00
|
|
|
/*
|
|
|
|
Common GUI Functions Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*/
|
|
|
|
|
2011-11-15 21:22:08 +00:00
|
|
|
#ifndef COMMON_GUI_H
|
|
|
|
#define COMMON_GUI_H
|
|
|
|
|
|
|
|
#include <QLocale>
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Gets the first day of week from the system locale, to show in the calendars.
|
2011-11-15 21:22:08 +00:00
|
|
|
Qt::DayOfWeek firstDayOfWeekFromLocale();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Delay of ms milliseconds
|
2011-12-17 10:36:28 +00:00
|
|
|
void sh_delay(int ms);
|
2011-11-15 21:22:08 +00:00
|
|
|
|
|
|
|
#endif
|