mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
20 lines
450 B
C++
20 lines
450 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;
|
|
};
|
|
|
|
#endif // _LC_QUTILS_H_
|