Namespaces
Variants
Actions
(Difference between revisions)

Working with QSystemDeviceInfo - System Information API - Part 1

Jump to: navigation, search
m (Related articles)
Line 196: Line 196:
 
* [[Getting started with Qt Mobility APIs]]
 
* [[Getting started with Qt Mobility APIs]]
 
* [[Setting up environment for Qt Mobility API]]
 
* [[Setting up environment for Qt Mobility API]]
 +
* [[Working with Carbide.c++ IDE for Qt Mobility APIs]]
 
* [[Working with QSystemInfo - System Information API - Part 1]]
 
* [[Working with QSystemInfo - System Information API - Part 1]]
 
* [[Working with QSystemInfo - System Information API - Part 2]]
 
* [[Working with QSystemInfo - System Information API - Part 2]]

Revision as of 12:18, 19 March 2010

ID Creation date 8-March-2010
Platform S60 3rd Edition, FP1, FP2

S60 5th Edition

Tested on devices Nokia 5800 xPressMusic
Category Qt for Symbian Subcategory Qt Mobility API


Keywords (APIs, classes, methods, functions): QSystemDeviceInfo, QString, QStringList, QButton, QLabel


Underconstruction.png
Under Construction: This article is under construction and it may have outstanding issues. If you have any comments please use the comments tab.
Tip.png
Tip: 

Contents

Overview

This is a part 1 of the QSystemDeviceInfo API which is a part of the System Information API from Qt Mobility project.

What is covered in QSystemDeviceInfo API Part 1

  • It is a part of the System Information API.
  • This article covers information about
    • IMEI of the device
    • IMSI information
    • Manufacturer information
    • Model information
    • Product information
    • Battery level
    • Battery status
    • Current profile
    • SIM card status
    • Device status


Capabilities required

  • ReadDeviceData


UI design (.ui file)

QSystemDeviceInfo UI.png


Project configuration file (.Pro file)

  • Add the Qt Mobility project configuration option in the .Pro file as shown below
CONFIG += mobility
MOBILITY += systeminfo


  • Add required capability in .pro file as shown below:
symbian:TARGET.CAPABILITY = ReadDeviceData

Implementing QSystemDeviceInfo API

  • QSystemDeviceInfo API is a part of the QtMobility namespace. So declare the QtMobility namespace as shown below:
using namespace QtMobility;

Header file

#ifndef SYSTEMDEVICEINFO_H
#define SYSTEMDEVICEINFO_H
 
#include <QtGui/QWidget>
#include "ui_SystemDeviceInfo.h"
#include <qsysteminfo.h>
 
using namespace QtMobility;
class SystemDeviceInfo : public QWidget
{
Q_OBJECT
 
public:
SystemDeviceInfo(QWidget *parent = 0);
~SystemDeviceInfo();
 
public slots:
void listDeviceInformation();
void resetAllFields();
private:
Ui::SystemDeviceInfo ui;
QSystemDeviceInfo* deviceInfo;
};
 
#endif // SYSTEMDEVICEINFO_H


Source file

#include "SystemDeviceInfo.h"
 
SystemDeviceInfo::SystemDeviceInfo(QWidget *parent)
: QWidget(parent), deviceInfo(NULL)
{
ui.setupUi(this);
deviceInfo = new QSystemDeviceInfo;
QObject::connect(ui.listDeviceInfoButton,
SIGNAL(clicked()),
this,
SLOT(listDeviceInformation()));
QObject::connect(ui.resetButton,
SIGNAL(clicked()),
this,
SLOT(resetAllFields()));
}
 
SystemDeviceInfo::~SystemDeviceInfo()
{
delete deviceInfo;
}
 
void SystemDeviceInfo::listDeviceInformation()
{
if(deviceInfo)
{
ui.imeiLabel->setText(deviceInfo->imei());
ui.imsiLabel->setText(deviceInfo->imsi());
ui.manufacturerLabel->setText(deviceInfo->manufacturer());
ui.modelLabel->setText(deviceInfo->model());
ui.productLabel->setText(deviceInfo->productName());
ui.batteryLabel->setText(QString::number(deviceInfo->batteryLevel()));
ui.batteryStatusLabel->setText(QString::number(
(QSystemDeviceInfo::BatteryStatus)deviceInfo->batteryStatus()));
ui.profileLabel->setText(QString::number(
(QSystemDeviceInfo::Profile)deviceInfo->currentProfile()));
ui.simLabel->setText(QString::number(
(QSystemDeviceInfo::SimStatus)deviceInfo->simStatus()));
ui.deviceLabel->setText(QString::number((int)deviceInfo->isDeviceLocked()));
}
}
 
void SystemDeviceInfo::resetAllFields()
{
if(deviceInfo)
{
ui.imeiLabel->clear();
ui.imsiLabel->clear();
ui.manufacturerLabel->clear();
ui.modelLabel->clear();
ui.productLabel->clear();
ui.batteryLabel->clear();
ui.batteryStatusLabel->clear();
ui.profileLabel->clear();
ui.simLabel->clear();
ui.deviceLabel->clear();
}
}


Output

QSystemDeviceInfo device.jpg


Useful functions

Keywords

Headers

  • #include <qsysteminfo.h>


Classes

  • QSystemDeviceInfo


Example Application


Related articles

Reference links

121 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