Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-10259

Symbian: Fullscreen softkeys responsiveness needs binary compatible reimplementation

    XMLWordPrintable

Details

    • Bug
    • Resolution: Invalid
    • P2: Important
    • None
    • 4.6.3, 4.7.0
    • None

    Description

      The original implementation of fullscreen softkeys responsiveness (shown below) needed to be removed because it wasn't binary compatible between S60 platform versions (see QTBUG-10199 for more details.) This needs to be reimplemented in a binary compatible manner.

      This code was removed from src/gui/kernel/qapplication_s60.cpp and src/gui/kernel/qwidget_s60.cpp:
      
      		// Responsiviness
      		CEikCba *cba = static_cast<CEikCba *>( buttonGroup->ButtonGroup() ); // downcast from MEikButtonGroup
      		TUint cbaFlags = cba->ButtonGroupFlags();
      		if(qwidget->windowFlags() & Qt::WindowSoftkeysRespondHint)
      		    cbaFlags |= EAknCBAFlagRespondWhenInvisible;
      		else
      		    cbaFlags &= ~EAknCBAFlagRespondWhenInvisible;
      		cba->SetButtonGroupFlags(cbaFlags);
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            Unassigned Unassigned
            e0348803 Miikka Heikkinen
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes