Skip to content

Instantly share code, notes, and snippets.

Avatar
💭
This is my backup repo. For drafts and sketches.

Evgeny Shtanov eugesh

💭
This is my backup repo. For drafts and sketches.
View GitHub Profile
@eugesh
eugesh / qchecklist.h
Last active September 7, 2022 07:01 — forked from mistic100/qchecklist.h
[Qt/C++] QComboBox with support of checkboxes
View qchecklist.h
#ifndef QCHECKLIST
#define QCHECKLIST
#include <QWidget>
#include <QComboBox>
#include <QStandardItemModel>
#include <QLineEdit>
#include <QEvent>
#include <QStyledItemDelegate>
#include <QListView>
@eugesh
eugesh / clientapplication.cpp
Last active February 10, 2023 14:10
Example for QNmeaPositionInfoSource
View clientapplication.cpp
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QtCore>
#include <QNmeaPositionInfoSource>
#include <QSerialPort>
#include <QTextEdit>
#include "clientapplication.h"
ClientApplication::ClientApplication(QWidget *parent)