mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 23:25:53 +08:00
* Formatting * renaming * fixed some issues of cppcheck * new icons * smooth scrolling in views, stretching for few columns * fixed start timer in updatetimer * background colors of some LEDs
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/* Copyright (C) 2013
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKGUI_NAMEVARIANTPAIRVIEW_H
|
|
#define BLACKGUI_NAMEVARIANTPAIRVIEW_H
|
|
|
|
#include "viewbase.h"
|
|
#include "../models/namevariantpairlistmodel.h"
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Views
|
|
{
|
|
//! User view
|
|
class CNameVariantPairView : public CViewBase<Models::CNameVariantPairModel, BlackMisc::CNameVariantPairList>
|
|
{
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CNameVariantPairView(QWidget *parent = nullptr);
|
|
|
|
//! Icon mode
|
|
void setIconMode(bool withIcon);
|
|
|
|
//! Update or add value, QVariant version
|
|
bool addOrUpdateByName(const QString &name, const QVariant &value, const BlackMisc::CIcon &icon = BlackMisc::CIcon(), bool performResizing = true, bool skipEqualValues = true);
|
|
|
|
//! Remove by name
|
|
void removeByName(const QString &name, bool performResizing = true);
|
|
|
|
//! Contains name
|
|
bool containsName(const QString &name);
|
|
|
|
};
|
|
}
|
|
}
|
|
#endif // guard
|