2013-03-15 13:11:33 +00:00
|
|
|
namespace phoenix {
|
|
|
|
|
2012-01-15 08:29:57 +00:00
|
|
|
Size pDesktop::size() {
|
|
|
|
QRect rect = QApplication::desktop()->screenGeometry();
|
2013-05-02 11:25:45 +00:00
|
|
|
return {rect.width(), rect.height()};
|
2012-01-15 08:29:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Geometry pDesktop::workspace() {
|
|
|
|
QRect rect = QApplication::desktop()->availableGeometry();
|
2013-05-02 11:25:45 +00:00
|
|
|
return {rect.x(), rect.y(), rect.width(), rect.height()};
|
2012-01-15 08:29:57 +00:00
|
|
|
}
|
2013-03-15 13:11:33 +00:00
|
|
|
|
|
|
|
}
|