File size: 4,491 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | // SPDX-License-Identifier: LGPL-2.1-or-later
/***************************************************************************
* Copyright (c) 2015 Eivind Kvedalen <eivind@kvedalen.name> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#ifndef SHEETTABLEVIEW_H
#define SHEETTABLEVIEW_H
#include <QHeaderView>
#include <QTableView>
#include <QTimer>
#include <QMenu>
#include <Mod/Spreadsheet/App/Sheet.h>
namespace SpreadsheetGui
{
class SheetViewHeader: public QHeaderView
{
Q_OBJECT
public:
SheetViewHeader(QTableView* owner, Qt::Orientation o)
: QHeaderView(o)
, owner(owner)
{
setSectionsClickable(true);
}
Q_SIGNALS:
void resizeFinished();
void cursorChanged(QCursor);
protected:
void mouseMoveEvent(QMouseEvent* e) override;
void mouseReleaseEvent(QMouseEvent* event) override;
bool viewportEvent(QEvent* e) override;
private:
QTableView* owner;
};
class SheetTableView: public QTableView
{
Q_OBJECT
public:
explicit SheetTableView(QWidget* parent = nullptr);
~SheetTableView() override;
void edit(const QModelIndex& index);
void setSheet(Spreadsheet::Sheet* _sheet);
std::vector<App::Range> selectedRanges() const;
QModelIndexList selectedIndexesRaw() const;
QString toHtml() const;
public Q_SLOTS:
void mergeCells();
void splitCell();
void deleteSelection();
void copySelection();
void cutSelection();
void pasteClipboard();
void finishEditWithMove(int keyPressed, Qt::KeyboardModifiers modifiers, bool handleTabMotion = false);
void ModifyBlockSelection(int targetRow, int targetColumn);
protected Q_SLOTS:
void commitData(QWidget* editor) override;
void updateCellSpan();
void insertRows();
void insertRowsAfter();
void removeRows();
void insertColumns();
void insertColumnsAfter();
void removeColumns();
void cellProperties();
void onRecompute();
void onBind();
void onConfSetup();
protected:
bool edit(const QModelIndex& index, EditTrigger trigger, QEvent* event) override;
bool event(QEvent* event) override;
void closeEditor(QWidget* editor, QAbstractItemDelegate::EndEditHint hint) override;
void mousePressEvent(QMouseEvent* event) override;
void selectionChanged(const QItemSelection& selected, const QItemSelection& deselected) override;
void contextMenuEvent(QContextMenuEvent* e) override;
void _copySelection(const std::vector<App::Range>& ranges, bool copy);
QModelIndex currentEditIndex;
Spreadsheet::Sheet* sheet;
int tabCounter;
QMenu contextMenu;
QAction* actionProperties;
QAction* actionRecompute;
QAction* actionConf;
QAction* actionMerge;
QAction* actionSplit;
QAction* actionCopy;
QAction* actionPaste;
QAction* actionCut;
QAction* actionDel;
QAction* actionBind;
QTimer timer;
fastsignals::scoped_connection cellSpanChangedConnection;
std::set<App::CellAddress> spanChanges;
};
} // namespace SpreadsheetGui
#endif // SHEETTABLEVIEW_H
|