mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
31 lines
691 B
C++
31 lines
691 B
C++
#ifndef _LC_QUTILS_H_
|
|
#define _LC_QUTILS_H_
|
|
|
|
#include <QObject>
|
|
|
|
QString lcFormatValue(float Value);
|
|
QString lcFormatValueLocalized(float Value);
|
|
float lcParseValueLocalized(const QString& Value);
|
|
|
|
class lcQTreeWidgetColumnStretcher : public QObject
|
|
{
|
|
public:
|
|
lcQTreeWidgetColumnStretcher(QTreeWidget *treeWidget, int columnToStretch);
|
|
|
|
virtual bool eventFilter(QObject *obj, QEvent *ev);
|
|
|
|
const int m_columnToStretch;
|
|
};
|
|
|
|
class lcQPartsListModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
lcQPartsListModel(QObject *parent = 0);
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
};
|
|
|
|
#endif // _LC_QUTILS_H_
|