example/DemoGUI/ScreenSize.h
author cgandhi
Thu, 05 Aug 2010 16:35:33 +0530
changeset 16 b78fa4cdbf2b
permissions -rw-r--r--
pushing the demo application

#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