forked from andijakl/nfcinteractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnfcrecorddefaults.h
29 lines (25 loc) · 1.01 KB
/
nfcrecorddefaults.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Andreas Jakl ([email protected])
**
** Released under Nokia Example Code License.
** See license.txt in the main project folder.
**
****************************************************************************/
#ifndef NFCRECORDDEFAULTS_H
#define NFCRECORDDEFAULTS_H
#include <QObject>
#include "nfctypes.h"
class NfcRecordDefaults : public QObject
{
Q_OBJECT
public:
explicit NfcRecordDefaults(QObject *parent = 0);
public:
QString itemHeaderTextDefault(const NfcTypes::MessageType messageType);
void itemContentDefault(const NfcTypes::MessageType msgType, const NfcTypes::RecordContent contentType, QString &defaultTitle, QString &defaultContents);
QVariantList itemSelectionDefault(const NfcTypes::RecordContent contentType, int &defaultSelectedItem);
};
#endif // NFCRECORDDEFAULTS_H