Add new type uiSort for sorting related operations.
uiSort: uiSortNone uiSortAscending uiSortDescending
This commit is contained in:
parent
9dc7e0871c
commit
b673b26f58
6
ui.h
6
ui.h
|
@ -1255,6 +1255,12 @@ _UI_EXTERN uiTableValue *uiNewTableValueColor(double r, double g, double b, doub
|
||||||
// TODO define whether all this, for both uiTableValue and uiAttribute, is undefined behavior or a caught error
|
// TODO define whether all this, for both uiTableValue and uiAttribute, is undefined behavior or a caught error
|
||||||
_UI_EXTERN void uiTableValueColor(const uiTableValue *v, double *r, double *g, double *b, double *a);
|
_UI_EXTERN void uiTableValueColor(const uiTableValue *v, double *r, double *g, double *b, double *a);
|
||||||
|
|
||||||
|
_UI_ENUM(uiSort) {
|
||||||
|
uiSortNone,
|
||||||
|
uiSortAscending,
|
||||||
|
uiSortDescending
|
||||||
|
};
|
||||||
|
|
||||||
// uiTableModel is an object that provides the data for a uiTable.
|
// uiTableModel is an object that provides the data for a uiTable.
|
||||||
// This data is returned via methods you provide in the
|
// This data is returned via methods you provide in the
|
||||||
// uiTableModelHandler struct.
|
// uiTableModelHandler struct.
|
||||||
|
|
Loading…
Reference in New Issue