wowlet/src/model/ModelUtils.h

19 lines
453 B
C
Raw Permalink Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
2021-03-30 09:52:29 +00:00
#ifndef WOWLET_MODELUTILS_H
#define WOWLET_MODELUTILS_H
#include <QString>
#include <QModelIndex>
class ModelUtils {
public:
static QString displayAddress(const QString& address, int sections = 3, const QString & sep = " ");
static void copyColumn(QModelIndex * index, int column);
static QFont getMonospaceFont();
};
2021-03-30 09:52:29 +00:00
#endif //WOWLET_MODELUTILS_H