1 Star 0 Fork 2

zhangyinjie/noter

forked from KongJun/noter 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
NotebookListComboBox.cpp 725 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include "NotebookListComboBox.h"
NotebookListComboBox::NotebookListComboBox(QWidget* parent)
: QComboBox(parent)
, m_menu{ new QMenu(this) }
{
setStyleSheet(QStringLiteral("QComboBox {combobox-popup:0;}"));
setContextMenuPolicy(Qt::CustomContextMenu);
m_menu->addAction(tr("Remove"), this,
[=]() { emit removeNotebookSignal(currentText()); });
m_menu->addAction(tr("New"), this, [=]() { emit newNotebookSignal(); });
m_menu->addAction(tr("Import"), this, [=]() { emit importNotebookSignal(); });
QObject::connect(this,
&QComboBox::customContextMenuRequested,
[this](const auto& pos) { m_menu->exec(QWidget::mapToGlobal(pos)); });
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zhang_yin_jie/noter.git
git@gitee.com:zhang_yin_jie/noter.git
zhang_yin_jie
noter
noter
master

搜索帮助