mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 23:49:37 +00:00
c293be56bd
In particular, the directory frontends/qt4 is renamed to frontends/qt. Many configurations file have to be updated. All mentions of qt4 in the source have been audited, and changed to qt if necessary. The only part that has not been updated is the CMake build system.
58 lines
1.3 KiB
C++
58 lines
1.3 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file EmptyTable.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Jürgen Spitzmüller
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef EMPTYTABLE_H
|
|
#define EMPTYTABLE_H
|
|
|
|
#include <QTableWidget>
|
|
|
|
|
|
class QMouseEvent;
|
|
|
|
//namespace lyx {
|
|
|
|
/**
|
|
* A simple widget for a quick "preview" in TabularCreateDialog.
|
|
* The user can drag on the widget to change the table dimensions.
|
|
*/
|
|
class EmptyTable : public QTableWidget {
|
|
Q_OBJECT
|
|
public:
|
|
EmptyTable(QWidget * parent = 0, int rows = 5, int columns = 5);
|
|
|
|
virtual QSize sizeHint() const;
|
|
public Q_SLOTS:
|
|
/// set the number of columns in the table and emit colsChanged() signal
|
|
void setNumberColumns(int nr_cols);
|
|
/// set the number of rows in the table and emit rowsChanged() signal
|
|
void setNumberRows(int nr_rows);
|
|
Q_SIGNALS:
|
|
/// the number of columns changed
|
|
void colsChanged(int);
|
|
/// the number of rows changed
|
|
void rowsChanged(int);
|
|
protected:
|
|
/// fill in a cell
|
|
virtual void paintCell(class QPainter *, int, int);
|
|
virtual void mouseMoveEvent(QMouseEvent *);
|
|
|
|
/// Reset all the cell size to default
|
|
virtual void resetCellSize();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
//} // namespace lyx
|
|
|
|
#endif
|