mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 12:07:03 +08:00
50 lines
1.0 KiB
C++
50 lines
1.0 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef ADDRESSWIDGET_H
|
|
#define ADDRESSWIDGET_H
|
|
|
|
#include "newaddresstab.h"
|
|
#include "tablemodel.h"
|
|
|
|
#include <QItemSelection>
|
|
#include <QTabWidget>
|
|
#include <QStandardPaths>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QSortFilterProxyModel;
|
|
class QItemSelectionModel;
|
|
QT_END_NAMESPACE
|
|
|
|
//! [0]
|
|
class AddressWidget : public QTabWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AddressWidget(QWidget *parent = nullptr);
|
|
void readFromFile();
|
|
void writeToFile();
|
|
|
|
public slots:
|
|
void showAddEntryDialog();
|
|
void addEntry(const QString &name, const QString &address);
|
|
void editEntry();
|
|
void removeEntry();
|
|
|
|
signals:
|
|
void selectionChanged (const QItemSelection &selected);
|
|
|
|
private:
|
|
void setupTabs();
|
|
|
|
inline static QString fileName =
|
|
QStandardPaths::standardLocations(QStandardPaths::TempLocation).value(0)
|
|
+ QStringLiteral("/addressbook.dat");
|
|
TableModel *table;
|
|
NewAddressTab *newAddressTab;
|
|
};
|
|
//! [0]
|
|
|
|
#endif // ADDRESSWIDGET_H
|