Orientation problem
-
According to the link ,I have done it vertically but I want to do the things horizontally as I have mentioned in the link but cant able to....Can somebody please help me....
-
you could refer to this for similar discussion: "http://developer.qt.nokia.com/forums/viewthread/1398":http://developer.qt.nokia.com/forums/viewthread/1398
-
Thanks for your reply but still I am not getting any solution for this.....Is this possible that I can do coding for both horizontal and vertical view and declare a function , that if the condition is horizontal then it'll show horizontal view and in other case will show vertical view ...Please don't mind but is this possible .....
-
I have done upto this and here how can I declare a function based on my screen size ....means if (screen size =someValue)
stackedWidget->setCurrentIndex(0);can anybody please tell me how should I declare a function for this
i'm getting my screen size like this...SIZE:: QSize(360, 640)
SIZE:: QSize(640, 360)@
#include <QtGui/QVBoxLayout>
#include <QtGui/QPushButton>
#include <QtGui>
#include <QResizeEvent>#include "rotate.h"
Rotate::Rotate(QWidget *parent) :
QWidget(parent){
QWidget *vWidget = new QWidget; vWidget->setObjectName(QString::fromUtf8("vWidget")); QPushButton *video1 = new QPushButton("VIDEOS"); video1->setObjectName(QString::fromUtf8("video1")); video1->setFixedHeight(80); QPushButton *photo1 = new QPushButton("PHOTOS"); photo1->setObjectName(QString::fromUtf8("photo1")); photo1->setFixedHeight(80); QPushButton *radio1 = new QPushButton("RADIO"); radio1->setObjectName(QString::fromUtf8("radio1")); radio1->setFixedHeight(80); QPushButton *news1 = new QPushButton("NEWS"); news1->setObjectName(QString::fromUtf8("news")); news1->setFixedHeight(80); QVBoxLayout *buttonLayout1 = new QVBoxLayout(vWidget); buttonLayout1->setContentsMargins(0,150,0,3); buttonLayout1->setSpacing(3); buttonLayout1->addWidget(video1); buttonLayout1->addWidget(photo1); buttonLayout1->addWidget(radio1); buttonLayout1->addWidget(news1); vWidget->setLayout(buttonLayout1); ///////////////////////////////////////////////////////// QWidget *hWidget = new QWidget; QLabel *label = new QLabel; QPushButton *video2 = new QPushButton("VIDEOS"); video2->setObjectName(QString::fromUtf8("video2")); video2->setFixedHeight(60); QPushButton *photo2 = new QPushButton("PHOTOS"); photo2->setObjectName(QString::fromUtf8("photo2")); photo2->setFixedHeight(60); QPushButton *radio2 = new QPushButton("RADIO"); radio2->setObjectName(QString::fromUtf8("radio2")); radio2->setFixedHeight(60); QPushButton *news2 = new QPushButton("NEWS"); news2->setObjectName(QString::fromUtf8("news2")); news2->setFixedHeight(60); QVBoxLayout *buttonLayout2 = new QVBoxLayout; buttonLayout2->addWidget(video2); buttonLayout2->addWidget(photo2); buttonLayout2->addWidget(radio2); buttonLayout2->addWidget(news2); QPushButton *home = new QPushButton("HOME"); QPushButton *back = new QPushButton("BACK"); QHBoxLayout *hLayout2 = new QHBoxLayout; hLayout2->addWidget(home); hLayout2->addWidget(back); QVBoxLayout *vLayout2 = new QVBoxLayout; vLayout2->addWidget(label); vLayout2->addLayout(hLayout2); QHBoxLayout *hLayout3 = new QHBoxLayout(hWidget); hLayout3->addLayout(vLayout2); hLayout3->addLayout(buttonLayout2); hWidget->setLayout(hLayout3); /////////////////////////////////////////////////////////////// QStackedWidget *stackedWidget = new QStackedWidget; stackedWidget->addWidget(vWidget); stackedWidget->addWidget(hWidget); QVBoxLayout *layout = new QVBoxLayout; layout->addWidget(stackedWidget); setLayout(layout); stackedWidget->setCurrentIndex(1);
}
void Rotate::resizeEvent(QResizeEvent *event)
{
qDebug()<<"SIZE::"<<qApp->desktop()->size();
}
@ -
thanks chetankjain for your reply
I did it in another way....Its working......
@
void Rotate::resizeEvent(QResizeEvent *event)
{
qDebug()<<"SIZE::"<<qApp->desktop()->size();
if(qApp->desktop()->size()== QSize(360,640))
{
stackedWidget->setCurrentIndex(0);
}
else
{
stackedWidget->setCurrentIndex(1);
}
}
@ -
You are correct but I cant find any other options....if you have any other way than this,please tell me ....
-
can you chk if QOrientationReading can help here?
"http://doc.troll.no/qtmobility-1.0/qorientationreading.html#orientation-prop":http://doc.troll.no/qtmobility-1.0/qorientationreading.html#orientation-prop -
This is surely helpful but in this case it is different...Thanks for your reply...