Namespaces
Variants
Actions

Archived:Change SoftKey labels of a QWidget

Jump to: navigation, search
Archived.png
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.

Qt Quick should be used for all UI development on mobile devices. The approach described in this article (based on QWidget) is deprecated.

This code snippets shows how to change SoftKeyLabels of widget using QAction::setSoftKeyRole().

Article Metadata

Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 3rd Edition, FP1, FP2
S60 5th Edition

Article
Keywords: QAction::setSoftKeyRole()
Created: savaj (01 Jul 2009)
Last edited: hamishwillee (11 Oct 2012)

Source code

QWidget* centralwidget = new QWidget(this);
centralwidget->setContextMenuPolicy(Qt::NoContextMenu);
setCentralWidget(centralwidget);
 
/* Add new softkey "MyOption" */
QAction* newOption = new QAction(tr("MyOption"), this);
/* set soft key for Options */
newOption->setSoftKeyRole(QAction::PositiveSoftKey);
 
/* Add new softkey "MyExit" */
QAction* newExit = new QAction(tr("MyExit"), this);
/* set soft key for Exit */
newExit->setSoftKeyRole(QAction::NegativeSoftKey);
 
QList<QAction *> softKeys;
softKeys.append(newOption);
softKeys.append(newExit);
 
/* set new soft keys */
centralwidget->addActions(softKeys);
centralwidget->setFocus();

Postconditions

The code snippet is expected to show new softkey labels in Widget.

Change SoftKey Label Qt.JPG

Download Code Example


This page was last modified on 11 October 2012, at 04:13.
174 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved