2018-12-19 00:13:18 +08:00
|
|
|
/*
|
2019-01-12 23:01:55 +08:00
|
|
|
Copyright (c) 2008-2019 Jan W. Krieger (<jan@jkrieger.de>, <j.krieger@dkfz.de>)
|
2018-12-19 00:13:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This software is free software: you can redistribute it and/or modify
|
2019-02-08 00:24:46 +08:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 2.1 of the License, or
|
2018-12-19 00:13:18 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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
|
2019-02-08 00:24:46 +08:00
|
|
|
GNU Lesser General Public License for more details.
|
2018-12-19 00:13:18 +08:00
|
|
|
|
2019-02-08 00:24:46 +08:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2018-12-19 00:13:18 +08:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef JKQTPEnhancedTableView_H_INCLUDED
|
|
|
|
#define JKQTPEnhancedTableView_H_INCLUDED
|
2019-06-22 20:21:32 +08:00
|
|
|
#include "jkqtplotter/jkqtplotter_imexport.h"
|
2018-12-19 00:13:18 +08:00
|
|
|
#include <QTableView>
|
|
|
|
#include <QPrinter>
|
|
|
|
|
2019-01-26 20:00:40 +08:00
|
|
|
/*! \brief this class extends the <a href="http://doc.qt.io/qt-5/qtableview.html">QTableView</a>
|
2019-01-13 01:53:16 +08:00
|
|
|
\ingroup jkqtptools_qtwidgets
|
2018-12-19 00:13:18 +08:00
|
|
|
|
|
|
|
This enhanced table view adds some functionality to the Qt class:
|
2019-01-26 20:00:40 +08:00
|
|
|
- return HTML code that describes the table (see toHtml() )
|
|
|
|
- contains methods to draw the table onto a <a href="http://doc.qt.io/qt-5/qpainter.html">QPainter</a>: paint()
|
|
|
|
- the selected cells may be copied to Excel using the clipboard (Excel will recognize number !) see copySelectionToExcel() and copySelectionToCSV()
|
|
|
|
- copySelectionToExcel() is called when the user presses the default copy key combination for your system (e.g. Ctrl+C)
|
|
|
|
- print() is called when the user presses the default print key combination for your system (e.g. Ctrl+P)
|
|
|
|
- the signal keyPressed() is emitted, when the suer pressed a key
|
2018-12-19 00:13:18 +08:00
|
|
|
.
|
2019-01-26 20:00:40 +08:00
|
|
|
|
|
|
|
\image html JKQTPEnhancedTableView.png
|
2018-12-19 00:13:18 +08:00
|
|
|
*/
|
2019-06-22 20:21:32 +08:00
|
|
|
class JKQTPLOTTER_LIB_EXPORT JKQTPEnhancedTableView : public QTableView {
|
2018-12-19 00:13:18 +08:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
JKQTPEnhancedTableView(QWidget* parent=nullptr);
|
|
|
|
virtual ~JKQTPEnhancedTableView();
|
|
|
|
|
|
|
|
/** \brief return the contents of the table view as HTML fragment */
|
|
|
|
QString toHtml(int borderWidth=1, bool non_breaking=false, int fontSizePt=-1) const;
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief print the contents of the table view
|
|
|
|
*
|
|
|
|
* \param printer the QPrinter to use for printing the table view
|
|
|
|
* \param onePageWide limit the width of the table to a single page, if not set the printout may span several pages
|
|
|
|
* \param onePageHigh limit the height of the table to a single page, if not set the printout may span several pages
|
|
|
|
*
|
|
|
|
* The printouts look like this:
|
|
|
|
*
|
|
|
|
* \image html JKQTPEnhancedTableViewPrint.png
|
|
|
|
*
|
|
|
|
* Depending on the options set in the dialog above, the printout is split over several pages, or not:
|
|
|
|
*
|
|
|
|
* \image html JKQTPEnhancedTableViewPrintMultipage.png "Split over pages (onePageWide=false onePageHigh=false)"
|
|
|
|
* \image html JKQTPEnhancedTableViewPrintSinglepage.png "Print on one page (onePageWide=true onePageHigh=true)"
|
|
|
|
*/
|
2018-12-19 00:13:18 +08:00
|
|
|
void print(QPrinter* printer, bool onePageWide=false, bool onePageHigh=false);
|
|
|
|
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief draw the contents of the table-view into the given \a pageRect, using the given \a painter
|
|
|
|
*
|
|
|
|
* The output look like this:
|
|
|
|
*
|
|
|
|
* \image html JKQTPEnhancedTableViewPrint.png
|
|
|
|
*
|
|
|
|
* \see print()
|
|
|
|
*/
|
2018-12-19 00:13:18 +08:00
|
|
|
void paint(QPainter& painter, QRect pageRec=QRect());
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief returns the totoal size of the table-view \see paint() */
|
2018-12-19 00:13:18 +08:00
|
|
|
QSizeF getTotalSize() const;
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief return a QAction that prints the table using the methode print() \see print() */
|
2019-01-26 03:16:04 +08:00
|
|
|
QAction* getActionPrint() const { return printAction; }
|
2018-12-19 00:13:18 +08:00
|
|
|
|
|
|
|
signals:
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief emitted when a key is pressed in the context of this widget */
|
2019-01-26 19:28:44 +08:00
|
|
|
void keyPressed(int key, Qt::KeyboardModifiers modifiers, const QString& text);
|
2018-12-19 00:13:18 +08:00
|
|
|
public slots:
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief copy the selected cells' contents to the clipboard, so it can be pasted into Excel */
|
2018-12-19 00:13:18 +08:00
|
|
|
void copySelectionToExcel(int copyrole=Qt::EditRole, bool storeHead=true);
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief copy the selected cells' contents to the clipboard, so it can be pasted into Excel, without header */
|
2018-12-19 00:13:18 +08:00
|
|
|
void copySelectionToExcelNoHead(int copyrole=Qt::EditRole);
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief copy the selected cells' contents to the clipboard as comma separated text
|
|
|
|
*
|
|
|
|
* \param copyrole specifies how the values for copying are extracted (see <a href="http://doc.qt.io/qt-5/qt.html#ItemDataRole-enum">Qt::ItemDataRole</a>).
|
|
|
|
* During the export, this parameter is supplied to function \c data() of the underlying model.
|
|
|
|
* \param storeHead en-/disable storage of the table header \see copySelectionToCSVNoHead()
|
|
|
|
* \param separator separator between two values (default is a comma)
|
|
|
|
* \param decimalpoint decimal separator for values (default is a dot)
|
|
|
|
*
|
|
|
|
* \see copySelectionToCSVNoHead()
|
|
|
|
*/
|
2018-12-19 00:13:18 +08:00
|
|
|
void copySelectionToCSV(int copyrole=Qt::EditRole, bool storeHead=true, const QString& separator=", ", const QChar& decimalpoint='.');
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief copy the selected cells' contents to the clipboard as comma separated text, without the header
|
|
|
|
*
|
|
|
|
* \param copyrole specifies how the values for copying are extracted (see <a href="http://doc.qt.io/qt-5/qt.html#ItemDataRole-enum">Qt::ItemDataRole</a>).
|
|
|
|
* During the export, this parameter is supplied to function \c data() of the underlying model.
|
|
|
|
* \param separator separator between two values (default is a comma)
|
|
|
|
* \param decimalpoint decimal separator for values (default is a dot)
|
|
|
|
*
|
|
|
|
* \see copySelectionToCSV()
|
|
|
|
*/
|
2018-12-19 00:13:18 +08:00
|
|
|
void copySelectionToCSVNoHead(int copyrole=Qt::EditRole, const QString& separator=", ", const QChar& decimalpoint='.');
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief print the table contents
|
|
|
|
*
|
|
|
|
* Before printing this function opens a <a href="http://doc.qt.io/qt-5/qprintdialog.html">QPrintDialog</a> to select a printer
|
|
|
|
* and then opens a second dialog that allows to set different options for the printout:
|
|
|
|
*
|
|
|
|
* \image html JKQTPEnhancedTableViewOptionsDialog.png
|
|
|
|
*
|
|
|
|
* The printouts look like this:
|
|
|
|
*
|
|
|
|
* \image html JKQTPEnhancedTableViewPrint.png
|
|
|
|
*
|
|
|
|
* Depending on the options set in the dialog above, the printout is split over several pages, or not:
|
|
|
|
*
|
|
|
|
* \image html JKQTPEnhancedTableViewPrintMultipage.png "Split over pages (onePageWide=false onePageHigh=false)"
|
|
|
|
* \image html JKQTPEnhancedTableViewPrintSinglepage.png "Print on one page (onePageWide=true onePageHigh=true)"
|
|
|
|
*
|
|
|
|
*/
|
2018-12-19 00:13:18 +08:00
|
|
|
void print();
|
|
|
|
|
|
|
|
protected:
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief handles key presses and reacts to some standard keys
|
|
|
|
* \internal
|
|
|
|
*/
|
2018-12-19 00:13:18 +08:00
|
|
|
virtual void keyPressEvent(QKeyEvent* event);
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief internal paintig method
|
|
|
|
* \internal
|
|
|
|
*/
|
|
|
|
void paint(QPainter &painter, double scale, int page, double hhh, double vhw, const QList<int>& pageCols, const QList<int>& pageRows, QPrinter* p=nullptr);
|
|
|
|
/** \brief select a printer, using a print-selection dialog if necessary */
|
2018-12-19 00:13:18 +08:00
|
|
|
QPrinter* getPrinter(QPrinter* printerIn=nullptr, bool *localPrinter=nullptr);
|
2019-01-26 20:00:40 +08:00
|
|
|
/** \brief action that calls print() */
|
2018-12-19 00:13:18 +08:00
|
|
|
QAction* printAction;
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // JKQTPEnhancedTableView_H_INCLUDED
|