full rework of the output order
This commit is contained in:
23
widgets/outputcolumn.h
Normal file
23
widgets/outputcolumn.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef OUTPUTCOLUMN_H
|
||||
#define OUTPUTCOLUMN_H
|
||||
|
||||
#include "output/output_options.h"
|
||||
#include <QLineEdit>
|
||||
#include <QStandardItem>
|
||||
|
||||
class OutputColumn
|
||||
{
|
||||
QString text;
|
||||
ColumnType type;
|
||||
public:
|
||||
OutputColumn();
|
||||
OutputColumn(QString text, ColumnType type);
|
||||
|
||||
void set_column_type(ColumnType type);
|
||||
ColumnType get_column_type();
|
||||
|
||||
void set_text(const QString &text);
|
||||
QString get_text();
|
||||
};
|
||||
|
||||
#endif // OUTPUTCOLUMN_H
|
||||
Reference in New Issue
Block a user