example/DemoGUI/ScreenSize.h
author cgandhi
Thu, 16 Sep 2010 11:15:30 +0530
changeset 22 b2eb79881f9d
parent 16 b78fa4cdbf2b
permissions -rw-r--r--
removing redundant armcc options

#ifndef SCREENSIZE_H
#define SCREENSIZE_H

#include <qobject.h>
#include <qrect.h>
#include <qapplication.h>
#include <qdesktopwidget.h>

class ScreenSize : public QObject
{
public:
    inline static QRect GetScreenRect()
    {
        return   QApplication::desktop()->screenGeometry();
    }
};

#endif // SCREENSIZE_H