src/hbcore/gui/hbdialog.cpp
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 7 923ff622b8b9
child 21 4633027730f5
child 34 ed14f46c0e55
equal deleted inserted replaced
9:730c025d4b77 15:f378acbc9cfb
    39 #include <QShowEvent>
    39 #include <QShowEvent>
    40 #include <QHideEvent>
    40 #include <QHideEvent>
    41 #include <QEventLoop>
    41 #include <QEventLoop>
    42 #include <QPointer>
    42 #include <QPointer>
    43 #include <QDebug>
    43 #include <QDebug>
    44 #include <QGraphicsLinearLayout>
       
    45 #include <QApplication> // krazy:exclude=qclasses
    44 #include <QApplication> // krazy:exclude=qclasses
    46 
    45 
    47 #include <hbfeedbackmanager.h>
    46 #include <hbfeedbackmanager.h>
    48 
    47 
    49 #ifdef HB_EFFECTS
    48 #ifdef HB_EFFECTS
    68     \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,13}
    67     \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,13}
    69 
    68 
    70     An example of how to handle dialog signals from previous example.
    69     An example of how to handle dialog signals from previous example.
    71     \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,53}
    70     \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,53}
    72 
    71 
       
    72     An example of how to handle if finished(int) is connected instead of finished(HbAction*) in above example.
       
    73     \snippet{ultimatecodesnipped/ultimatecodesnippet.cpp,55}
       
    74 
    73     An example of how to create a non-modal dialog and show it.
    75     An example of how to create a non-modal dialog and show it.
    74     \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,26}
    76     \snippet{ultimatecodesnippet/ultimatecodesnippet.cpp,26}
    75 
    77 
    76 */
    78 */
       
    79 
       
    80 /*!
       
    81     \fn void HbDialog::finished( int code )
       
    82 
       
    83     This signal is emitted when the dialog is closed.
       
    84     This will have the HbDialog::DialogCode as the parameter code.
       
    85 
       
    86     \sa done(), accept(), reject()
       
    87 */
       
    88 /*!
       
    89     \fn void HbDialog::finished( HbAction *action )
       
    90 
       
    91     This signal is emitted when an action has been triggered in a dialog.
       
    92     The parameter will be the triggered action.
       
    93   */
       
    94 /*!
       
    95     \fn void HbDialog::accepted( )
       
    96 
       
    97     This signal is emitted when the dialog is closed and the user
       
    98     has accepted the dialog. which implies that either action has triggered
       
    99     or through function call the accept method is called, causing this signal.
       
   100 
       
   101     \sa done(), accept(), reject()
       
   102 */
       
   103 /*!
       
   104     \fn void HbDialog::rejected( )
       
   105 
       
   106     This signal is emitted when the dialog is closed and the user
       
   107     has rejected the dialog. which implies that either action triggered
       
   108     or through function call the reject method is called, causing this signal.
       
   109 
       
   110     \sa done(), accept(), reject()
       
   111 */
       
   112 
    77 
   113 
    78 /*!
   114 /*!
    79     \reimp
   115     \reimp
    80     \fn int HbDialog::type() const
   116     \fn int HbDialog::type() const
    81  */
   117  */
    82 
   118 
    83 HbDialogPrivate::HbDialogPrivate( ) :
   119 HbDialogPrivate::HbDialogPrivate( ) :
    84     contentWidget(0),
   120     contentWidget(0),
    85     headingWidget(0),
   121     headingWidget(0),
    86     mainLayout(new QGraphicsLinearLayout(Qt::Vertical)),
       
    87     primaryAction(0),
   122     primaryAction(0),
    88     secondaryAction(0),
   123     secondaryAction(0),
    89     closingAction(0),
   124     closingAction(0),
    90     toolBar(0)
   125     toolBar(0)
    91 {
   126 {
    93 
   128 
    94 HbDialogPrivate::~HbDialogPrivate()
   129 HbDialogPrivate::~HbDialogPrivate()
    95 {
   130 {
    96 }
   131 }
    97 
   132 
    98 void HbDialogPrivate::init()
   133 /*!
    99 {
       
   100     Q_Q(HbDialog);
       
   101 
       
   102     // Content is responsible of adding spacings & margins
       
   103     mainLayout->setSpacing(0);
       
   104     mainLayout->setContentsMargins(0,0,0,0);
       
   105 
       
   106     q->setLayout(mainLayout);
       
   107     mainLayout->setMinimumSize(0, 0);    
       
   108 }
       
   109 
       
   110 void HbDialogPrivate::setWidget(int layoutIndex, QGraphicsWidget *&destWidget, QGraphicsWidget *widget)
       
   111 {
       
   112     Q_Q(HbDialog);
       
   113     if (destWidget != widget) {
       
   114         if (destWidget) {
       
   115             mainLayout->removeItem(destWidget);
       
   116             delete destWidget;
       
   117             destWidget = 0;
       
   118         }
       
   119         if (widget) {
       
   120             destWidget = widget;
       
   121             destWidget->setParentItem(q);
       
   122             mainLayout->insertItem(layoutIndex, widget);
       
   123             mainLayout->setAlignment(widget, Qt::AlignCenter);
       
   124         }
       
   125 
       
   126         doLayout();
       
   127     }
       
   128 }
       
   129 
       
   130 /*
       
   131   Relayouts the popup. If expandSize is true it the new calculated size of the popup
   134   Relayouts the popup. If expandSize is true it the new calculated size of the popup
   132   cannot be smaller than the current size.
   135   cannot be smaller than the current size.
   133 */
   136 */
   134 void HbDialogPrivate::doLayout()
   137 void HbDialogPrivate::doLayout()
   135 {
   138 {
   148     }
   151     }
   149 
   152 
   150     q->updateGeometry();
   153     q->updateGeometry();
   151 }
   154 }
   152 
   155 
       
   156 /*!
       
   157  Utility function removes the spaces from string if any
       
   158 */
       
   159 void HbDialogPrivate::removeSpaces(QString& string)
       
   160 {
       
   161     QString tempStr(string);
       
   162     string.clear();
       
   163     foreach(QChar ch, tempStr)
       
   164     {
       
   165         if(!ch.isSpace())
       
   166             string.append(ch);
       
   167     }
       
   168 }
   153 
   169 
   154 /*!
   170 /*!
   155  Constructs a dialog with given  \a parent graphics item.\n
   171  Constructs a dialog with given  \a parent graphics item.\n
   156  Note: dialogs with \a parent set as 0 are behaving as real popups. 
   172  Note: dialogs with \a parent set as 0 are behaving as real popups. 
   157  This is actually the intended use. \sa HbPopup::HbPopup
   173  This is actually the intended use. \sa HbPopup::HbPopup
   159 HbDialog::HbDialog(QGraphicsItem *parent) :
   175 HbDialog::HbDialog(QGraphicsItem *parent) :
   160     HbPopup(*new HbDialogPrivate, parent)
   176     HbPopup(*new HbDialogPrivate, parent)
   161 {
   177 {
   162     Q_D(HbDialog);
   178     Q_D(HbDialog);
   163     d->q_ptr = this;
   179     d->q_ptr = this;
   164     d->init();
   180     d->timeout = HbPopupPrivate::timeoutValue(HbPopup::NoTimeout);
   165 }
   181 }
   166 
   182 
   167 /*!
   183 /*!
   168     \internal
   184     \internal
   169  */
   185  */
   170 HbDialog::HbDialog(HbDialogPrivate &dd, QGraphicsItem *parent) :
   186 HbDialog::HbDialog(HbDialogPrivate &dd, QGraphicsItem *parent) :
   171     HbPopup(dd, parent)
   187     HbPopup(dd, parent)
   172 {
   188 {
   173     Q_D(HbDialog);
   189     Q_D(HbDialog);
   174     d->q_ptr = this;
   190     d->q_ptr = this;
   175     d->init();
   191     d->timeout = HbPopupPrivate::timeoutValue(HbPopup::NoTimeout);
   176 }
   192 }
   177 
   193 
   178 /*!
   194 /*!
   179  Destroys the popup.
   195  Destroys the popup.
   180 */
   196 */
   198  \sa headingWidget()
   214  \sa headingWidget()
   199 */
   215 */
   200 void HbDialog::setHeadingWidget(QGraphicsWidget *headingWidget)
   216 void HbDialog::setHeadingWidget(QGraphicsWidget *headingWidget)
   201 {
   217 {
   202     Q_D(HbDialog);
   218     Q_D(HbDialog);
   203     HbStyle::setItemName(headingWidget,"heading");
   219     if (d->headingWidget == headingWidget)
   204     d->setWidget(0, d->headingWidget, headingWidget);
   220         return;
       
   221     if (d->headingWidget)
       
   222         delete d->headingWidget;
       
   223     d->headingWidget = headingWidget;
       
   224     if (headingWidget) {
       
   225         setProperty("heading_layout", true);
       
   226         headingWidget->setParentItem(this);
       
   227         HbStyle::setItemName(headingWidget,"heading");
       
   228     } else {
       
   229         setProperty("heading_layout", false);
       
   230     }
       
   231     repolish();
   205 }
   232 }
   206 
   233 
   207 /*!
   234 /*!
   208  Returns the content widget property of the popup.
   235  Returns the content widget property of the popup.
   209  HbDialog only draws a bordered rect, the rest is drawn by the content widget.
   236  HbDialog only draws a bordered rect, the rest is drawn by the content widget.
   222  to popup. If \a contentWidget is 0 the content widget is removed.
   249  to popup. If \a contentWidget is 0 the content widget is removed.
   223  \sa contentWidget()
   250  \sa contentWidget()
   224 */
   251 */
   225 void HbDialog::setContentWidget(QGraphicsWidget *contentWidget)
   252 void HbDialog::setContentWidget(QGraphicsWidget *contentWidget)
   226 {
   253 {
   227    Q_D(HbDialog);
   254     Q_D(HbDialog);
   228    HbStyle::setItemName(contentWidget,"content");
   255 
   229    d->setWidget((d->headingWidget?1:0), d->contentWidget, contentWidget);
   256     if (d->contentWidget == contentWidget)
       
   257         return;
       
   258     if (d->contentWidget)
       
   259         delete d->contentWidget;
       
   260     prepareGeometryChange(); // needed to paint screen properly
       
   261     d->contentWidget = contentWidget;
       
   262     if (contentWidget) {
       
   263         contentWidget->setParentItem(this);
       
   264         HbStyle::setItemName(contentWidget,"content");
       
   265     }
       
   266     repolish();    
   230 }
   267 }
   231 
   268 
   232 /*!
   269 /*!
   233  \deprecated HbDialog::primaryAction() const
   270  \deprecated HbDialog::primaryAction() const
   234        is deprecated.
   271        is deprecated.
   298     d->secondaryAction = action;
   335     d->secondaryAction = action;
   299     addAction(action);
   336     addAction(action);
   300 }
   337 }
   301 
   338 
   302 /*!
   339 /*!
       
   340     This is a slot which shows the dialog and returns immediately.
       
   341 
       
   342     \sa open(QObject*,const char*)
       
   343 */
       
   344 void HbDialog::open()
       
   345 {
       
   346     open(0,0);
       
   347 }
       
   348 /*!
   303 
   349 
   304  Shows the dialog as modal dialog returning immediately.  
   350  Shows the dialog as modal dialog returning immediately.  
   305 
   351 
   306  Connects finished(HbAction*) signal to the slot specified by \a receiver and
   352  Connects finished(HbAction*) or finished(int) signal to the slot specified by \a receiver and
   307  \a member. The signal will be disconnected from the slot when the
   353  \a member. The signal will be disconnected from the slot when the
   308  popup is closed.
   354  popup is closed. disambiguation between which method to connect to is done at runtime.
   309 
   355 
   310  For non modal popups, use show().  
   356  For non modal popups, use show().  
   311 */
   357 */
   312 
   358 
   313 void HbDialog::open( QObject* receiver, const char* member )
   359 void HbDialog::open( QObject* receiver, const char* member )
   314 {
   360 {
   315     Q_D(HbDialog);
   361     Q_D(HbDialog);
   316     if ( receiver && member ) {
   362     if ( receiver && member ) {
   317         connect( this, SIGNAL(finished(HbAction*)), receiver, member );
   363 
       
   364         QString myStr(member);
       
   365         d->removeSpaces(myStr);
       
   366         if(myStr.contains("(int)")) {
       
   367             connect( this, SIGNAL(finished(int)), receiver, member );
       
   368         }
       
   369         else {
       
   370             connect( this, SIGNAL(finished(HbAction*)), receiver, member );
       
   371         }
   318         d->receiverToDisconnectOnClose = receiver;
   372         d->receiverToDisconnectOnClose = receiver;
   319         d->memberToDisconnectOnClose = member;
   373         d->memberToDisconnectOnClose = member;
   320     } else {
   374     } else {
   321         d->receiverToDisconnectOnClose = 0;
   375         d->receiverToDisconnectOnClose = 0;
   322         d->memberToDisconnectOnClose.clear();
   376         d->memberToDisconnectOnClose.clear();
   323     }
   377     }
   324     show();
   378     show();
       
   379 }
       
   380 /*!
       
   381   Closes the dialog and emits finished ,accepted and rejected signals appropriately.
       
   382 
       
   383   If the dialog is accepted the code is HbDialog::Accepted, if it is rejected code
       
   384   is HbDialog::Rejected.
       
   385   As with HbWidget::close(), done() deletes the dialog if the
       
   386   Qt::WA_DeleteOnClose flag is set. 
       
   387 
       
   388   \sa accept(), reject()
       
   389 */
       
   390 void HbDialog::done( int code )
       
   391 {  
       
   392     HbAction *action=qobject_cast<HbAction*>(sender());
       
   393     if(!action) {
       
   394         close();
       
   395         //if there is no sender or if there is some sender which is not hbaction
       
   396         //then we need to close the dialog when done is called.
       
   397     }
       
   398     else if(actions().contains(action)==false) {
       
   399         close();
       
   400         //if our actions done have this HbAction. then we need to call the
       
   401         //close method explicitly.
       
   402     } //otherwise close will be called automatically due to connection in base class
       
   403     
       
   404     emit finished(code);
       
   405     if(code == Accepted) {
       
   406         emit accepted();
       
   407     }
       
   408     else if(code == Rejected) {
       
   409         emit rejected();
       
   410     }
       
   411 }
       
   412 /*!
       
   413   Hides the modal dialog and emits finished(HbDialog::Accepted),accepted() and finished(HbAction*) signals.
       
   414 
       
   415   \sa reject(), done()
       
   416 */
       
   417 void HbDialog::accept()
       
   418 {
       
   419     done(Accepted);
       
   420 }
       
   421 /*!
       
   422   Hides the modal dialog and emits finished(HbDialog::Rejected),rejected() and finished(HbAction*) signals.
       
   423 
       
   424   \sa accept(), done()
       
   425 */
       
   426 void HbDialog::reject()
       
   427 {
       
   428     done(Rejected);
   325 }
   429 }
   326 
   430 
   327 /*!
   431 /*!
   328  \reimp
   432  \reimp
   329 */
   433 */
   382     \reimp
   486     \reimp
   383  */
   487  */
   384 bool HbDialog::event(QEvent *event)
   488 bool HbDialog::event(QEvent *event)
   385 {
   489 {
   386     Q_D(HbDialog);
   490     Q_D(HbDialog);
   387     event->accept();
   491     if(event->type() != QEvent::ShortcutOverride && event->type() != QEvent::GestureOverride)
       
   492         event->accept();
   388 
   493 
   389     if (event->type() == QEvent::ActionAdded) {
   494     if (event->type() == QEvent::ActionAdded) {
   390         if (!d->toolBar) {
   495         if (!d->toolBar) {
   391             // TODO: HbToolBar private interface should make it possible to choose
   496             // TODO: HbToolBar private interface should make it possible to choose
   392             // different graphics for tool buttons.            
   497             // different graphics for tool buttons.            
   393             d->toolBar = new HbToolBar();
   498             d->toolBar = new HbToolBar();
       
   499             d->toolBar->setParentItem(this);
   394             HbStyle::setItemName(d->toolBar ,"controls");
   500             HbStyle::setItemName(d->toolBar ,"controls");
   395             d->toolBar->setParentItem(this);
   501             setProperty("controls_layout", true);
   396             d->toolBar->setOrientation(Qt::Horizontal);
   502             d->toolBar->setOrientation(Qt::Horizontal);
   397             HbToolBarPrivate::d_ptr(d->toolBar)->mDialogToolBar = true;
   503             HbToolBarPrivate::d_ptr(d->toolBar)->mDialogToolBar = true;
   398             // prevent stretching buttons, should the content be small
   504             repolish();
   399             // but dialog size forcibly large
       
   400             d->mainLayout->addStretch();
       
   401             d->mainLayout->addItem(d->toolBar);
       
   402         }
   505         }
   403         QActionEvent *actionEvent = static_cast<QActionEvent *>(event);
   506         QActionEvent *actionEvent = static_cast<QActionEvent *>(event);
   404         d->toolBar->insertAction (actionEvent->before(), actionEvent->action());
   507         d->toolBar->insertAction (actionEvent->before(), actionEvent->action());
   405         if (!parentItem()) { // only for popup without parent
   508         if (!parentItem()) { // only for popup without parent
   406             connect(actionEvent->action(), SIGNAL(triggered()), this, SLOT(close()));
   509             connect(actionEvent->action(), SIGNAL(triggered()), this, SLOT(close()));
   420         disconnect(actionEvent->action(), 0, this, 0);
   523         disconnect(actionEvent->action(), 0, this, 0);
   421 
   524 
   422         if (d->toolBar) {
   525         if (d->toolBar) {
   423            d->toolBar->removeAction(actionEvent->action());
   526            d->toolBar->removeAction(actionEvent->action());
   424            if (!d->toolBar->actions().count()) {
   527            if (!d->toolBar->actions().count()) {
   425                d->mainLayout->removeItem(d->toolBar);
       
   426                d->toolBar->deleteLater();
   528                d->toolBar->deleteLater();
   427                d->toolBar = 0;
   529                d->toolBar = 0;
       
   530                setProperty("controls_layout", false);
   428            }
   531            }
   429         }
   532         }
   430         d->doLayout();
   533         d->doLayout();
   431         return true;
   534         return true;
   432  
   535