- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个应用程序,我需要在 QTableView
上画线显示帧的范围。我有一个 QGraphicsView
和 QGraphicsScene
其中包含 QTableView
如下所示:
标准
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "timelineview.h"
MainWindow::MainWindow(QWidget* parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
TimelineView* graphicsView = new TimelineView(this);
setCentralWidget(graphicsView);
}
MainWindow::~MainWindow()
{
delete ui;
}
// qt
#include <QHeaderView>
// local
#include "timelineview.h"
TimelineView::TimelineView(QWidget* parent) :
QGraphicsView(parent),
m_scene{new TimelineScene}
{
setScene(m_scene);
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
m_table = new QTableView;
// settings for table view
m_table->setSelectionMode(QAbstractItemView::NoSelection);
m_table->setEditTriggers(QAbstractItemView::NoEditTriggers);
m_table->verticalHeader()->hide();
m_table->horizontalHeader()->setHighlightSections(false);
m_tableModel = new QStandardItemModel(10, 100, m_table);
m_table->setModel(m_tableModel);
m_scene->addWidget(m_table);
setMouseTracking(true);
}
void TimelineView::resizeEvent(QResizeEvent* event)
{
m_scene->setSceneRect(0, 0, width(), height());
m_table->setGeometry(m_scene->sceneRect().toRect());
fitInView(m_scene->sceneRect(), Qt::KeepAspectRatioByExpanding);
QGraphicsView::resizeEvent(event);
}
#ifndef TIMELINEVIEW_H
#define TIMELINEVIEW_H
// qt
#include <QGraphicsView>
#include <QTableView>
#include <QStandardItemModel>
// local
#include "timelinescene.h"
class TimelineView : public QGraphicsView
{
public:
explicit TimelineView(QWidget* parent = nullptr);
protected:
virtual void resizeEvent(QResizeEvent* event) override;
private:
QTableView* m_table;
QStandardItemModel* m_tableModel;
TimelineScene* m_scene;
};
#endif // TIMELINEVIEW_H
#include "timelinescene.h"
TimelineScene::TimelineScene(QObject* parent) :
QGraphicsScene(parent)
, m_lineItem{nullptr}
, m_isPressed{false}
{
}
void TimelineScene::mousePressEvent(QGraphicsSceneMouseEvent* event)
{
if(event->button() == Qt::LeftButton)
{
m_origPoint = event->scenePos();
m_isPressed = true;
}
QGraphicsScene::mousePressEvent(event);
}
void TimelineScene::mouseMoveEvent(QGraphicsSceneMouseEvent* event)
{
if(m_isPressed)
{
if(m_lineItem == nullptr)
{
// create a pen for the line to be drawn
QPen pen;
pen.setStyle(Qt::SolidLine);
pen.setBrush(QColor(255, 102, 0));
pen.setWidth(8);
m_lineItem = new QGraphicsLineItem(m_origPoint.x(), m_origPoint.y(), event->scenePos().x(), event->scenePos().y());
// set the pen
m_lineItem->setPen(pen);
// add the item to the scene
addItem(m_lineItem);
}
m_lineItem->setLine(m_origPoint.x(), m_origPoint.y(), event->scenePos().x(), m_origPoint.y());
update();
}
QGraphicsScene::mouseMoveEvent(event);
}
void TimelineScene::mouseReleaseEvent(QGraphicsSceneMouseEvent* event)
{
m_lineItem = nullptr;
m_isPressed = false;
QGraphicsScene::mouseReleaseEvent(event);
}
#ifndef TIMELINESCENE_H
#define TIMELINESCENE_H
// qt
#include <QGraphicsScene>
#include <QObject>
#include <QGraphicsSceneMouseEvent>
#include <QGraphicsLineItem>
#include <QPointF>
class TimelineScene : public QGraphicsScene
{
public:
explicit TimelineScene(QObject* parent = nullptr);
protected:
virtual void mousePressEvent(QGraphicsSceneMouseEvent* event) override;
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent* event) override;
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* event) override;
private:
QGraphicsLineItem* m_lineItem;
QPointF m_origPoint;
bool m_isPressed;
};
#endif // TIMELINESCENE_H
QHeaderView
上画线以及QScrollbar
.我知道这样做的原因是因为整个 Canvas 是一个场景,我可以在任何地方绘制。但我只想将绘图限制在表格的单元格 QTableView
的信息,我就可以处理所有这些问题。但不确定如何。
最佳答案
如前所述,使用委托(delegate)是正确的方法。
如果由于某种原因不可能,我强烈建议您不要以这种方式将模型 View 与图形场景混合。
如果绝对不可能使用委托(delegate),我会考虑在 QTableView
上画线。 — 它具有通过像素坐标访问模型索引的 API,它确实知道它的滚动位置,并且它确实具有用于所有必要用户输入的处理程序。所以你所要做的就是存储 QLine
的集合。在派生自 QTableView
的类中并通过 QPainter
绘制适合当前视口(viewport)的线条.
恐怕即使“覆盖”与 QGraphicsScene
现在看起来像是最简单的解决方案,在坚果中,它有很多与用户输入处理/路由相关的问题。这绝对不是 Qt 方式。
UPD:基于委托(delegate)的样本:
这个想法很简单:
start
和 end
x坐标为void LineDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
{
QStyledItemDelegate::paint(painter, option, index);
const QVariant &lineData = index.data(Line::DataRole);
if (lineData.isValid() && lineData.canConvert<Line>()) {
const Line &line = lineData.value<Line>();
const QLineF &lineF = line.toQLine(option.rect);
painter->save();
painter->setPen(m_linePen);
painter->drawLine(lineF);
painter->restore();
}
}
bool LineDelegate::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option,
const QModelIndex &index)
{
switch (event->type()) {
case QEvent::MouseButtonPress:
handleMousePress(static_cast<QMouseEvent *>(event), model, option, index);
break;
case QEvent::MouseMove:
handleMouseMove(static_cast<QMouseEvent *>(event), model, option, index);
break;
case QEvent::MouseButtonRelease:
handleMouseRelease(static_cast<QMouseEvent *>(event), model, option, index);
break;
default:
break;
}
return QStyledItemDelegate::editorEvent(event, model, option, index);
}
void LineDelegate::handleMousePress(QMouseEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option,
const QModelIndex &index)
{
Q_UNUSED(event);
Q_UNUSED(model);
if (index.isValid()) {
m_startIndex = index;
m_startPoint = { event->x() - option.rect.x(), option.rect.center().y() };
}
}
void LineDelegate::handleMouseMove(QMouseEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option,
const QModelIndex &index)
{
const QPoint endPoint = { event->x() - option.rect.x(), option.rect.center().y() };
if (m_startIndex != index) {
m_startIndex = index;
m_startPoint = endPoint;
}
const Line &line = Line::fromQLine({ m_startPoint, endPoint }, option.rect);
model->setData(index, QVariant::fromValue(line), Line::DataRole);
}
void LineDelegate::handleMouseRelease(QMouseEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option,
const QModelIndex &index)
{
Q_UNUSED(event);
Q_UNUSED(model);
Q_UNUSED(option);
Q_UNUSED(index);
m_startIndex = QModelIndex();
m_startPoint = { -1, -1 };
}
关于c++ - 在 QTableView 上绘制 QGraphicsLineItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61216527/
我学习 SDL 二维编程已有一段时间了,现在我想创建一个结合使用 SDL 和 OpenGL 的程序。我是这样设置的: SDL_Init(SDL_INIT_VIDEO); window = SDL_Cr
尝试查找可在地块中使用的不同类型项目的列表 来自不同样本的投影类型: projection = list(type = "equirectangular") projection = list(typ
我正在尝试使用 Java Graphics API 绘制 GIF,但无法使用下面的代码成功绘制 GIF。仅绘制 GIF 的第一张图像或缩略图,但不播放。 public void paintCompon
我目前正在使用 JFrame 并尝试绘制一个矩形,但我不知道如何执行代码 paint(Graphics g),如何获取 Graphics 对象? package com.raggaer.frame;
这个领域的新手,希望得到一些帮助。 我有一个"Missile.java" 类,我在那里画东西。我想绘制一个 ImageView,我正在使用以下代码: ImageView v = (ImageView)
下面列出了圆形的例子 这是我的 JavaScript 代码。 最佳答案 假设您的 randomColor 是正确的,您只需要: 从 canvas.onclick 中移除 context.clearR
我在绘制和缩放 ImageView 时遇到问题。请帮帮我.. 当我画一些东西然后拖动或缩放图像时 - 绘图保留在原处,如您在屏幕截图中所见。而且我只需要简单地在图片上绘图,并且可以缩放和拖动这张图片。
我们可以在形式之外绘制图像和文本...我的意思是在字面上... 我知道问这个问题很愚蠢但是我们能不能... 最佳答案 您可以通过创建表单并将其 TransparentColor 属性设置为背景色来“作
我在绘制/布局期间收到 3 个对象分配警告 super.onDraw(canvas); canvas.drawColor(Color.WHITE); Paint textPaint = new Pai
我有一个示例时间序列数据框: df = pd.DataFrame({'year':'1990','1991','1992','1993','1994','1995','1996',
我试图想出一种简洁的方法来绘制 R 数据框中所有列的 GridView 。问题是我的数据框中既有离散值又有数值。为简单起见,我们可以使用 R 提供的名为 iris 的示例数据集。我会使用 par(mf
我有一个由 10 列和 50 行组成的 data.frame。我使用 apply 函数逐列计算密度函数。现在我想绘制我一次计算的密度。 换句话说,而不是绘图... plot(den[[1]]) plo
我想知道我们如何才能在第一个和第二个组件之外绘制个人,如下所示: 最佳答案 这可能有效: pc.cr <- princomp(USArrests, cor = TRUE) pairs(pc.cr$lo
我是Pandas和matplotlib的新手,想绘制此DataFrame season won team matches pct_won 0 20
我正在尝试为 distplot 子图编写一个 for 循环。 我有一个包含许多不同长度列的数据框。 (不包括 NaN 值) fig = make_subplots( rows=len(asse
我想创建一个具有密度的 3d 图。 我使用函数 density 首先为特定的 x 值创建一个二维图,然后该函数创建密度并将它们放入 y 变量中。现在我有第二组 x 值并将其再次放入密度函数中,然后我得
全部, 我一直在研究全局所有 MTB 步道的索引。我是 Python 人,所以对于所有涉及的步骤,我都尝试使用 Python 模块。 我能够像这样从 OSM 立交桥 API 中获取关系: from O
我正在使用 e1071 包中的支持向量机对我的数据进行分类,并希望可视化机器实际如何进行分类。但是,在使用 plot.svm 函数时,出现无法解决的错误。 脚本: library("e1071") d
我制作了以下图表,它是使用 xts 对象创建的。 我使用的代码很简单 plot(graphTS1$CCLL, type = "l", las = 2, ylab = "(c)\nCC for I
在绘制状态图时,您如何知道哪些状态放在框中,哪些状态用于转换箭头?我注意到转换也是状态。 我正在查看 this page 上的图 1 : 最佳答案 转换不是状态。转换是将对象从一种状态移动到下一种状态
我是一名优秀的程序员,十分优秀!