mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
18 lines
410 B
C++
18 lines
410 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
QString lcFormatValue(float Value, int Precision);
|
|
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;
|
|
};
|
|
|