Changeset 330
- Timestamp:
- 02/06/15 15:58:45 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/loader_test_param.cpp
r329 r330 46 46 { "f2", 0, 0, "Float 2", "f -100 100 -100", FIELD(f2), }, // [-100..100] float, default=-100 47 47 { "f3", 0, 0, "Float 3", "f -10 10", FIELD(f3), }, // [-10..10] float 48 { "f4", 0, 0, "Float 4", "f 1 -1 4 04", FIELD(f4), }, // unrestricted float (invalidmin>max), default=4448 { "f4", 0, 0, "Float 4", "f 1 -1 44", FIELD(f4), }, // unrestricted float (because min>max), default=44 49 49 { "x1", 0, 0, "Untyped 1", "x", FIELD(x1), }, // any type (class ExtValue) 50 50 { "x2", 0, 0, "Untyped 2", "x", FIELD(x2), }, // any type (class ExtValue) 51 { "notchanged", 0, PARAM_READONLY, "Read only field", "d", FIELD(notchanged), }, // neither load() nor setDefault() can change this 52 { "notloaded", 0, PARAM_DONTLOAD, " Unloadable field", "d", FIELD(notloaded), }, // load() does not change this53 { "notsaved", 0, PARAM_DONTSAVE, " Unsaveable field", "d", FIELD(notsaved), }, // save() skips this field51 { "notchanged", 0, PARAM_READONLY, "Read only field", "d", FIELD(notchanged), }, // neither load() nor setDefault() can change this field 52 { "notloaded", 0, PARAM_DONTLOAD, "Non-loadable field", "d", FIELD(notloaded), }, // load() does not change this field 53 { "notsaved", 0, PARAM_DONTSAVE, "Non-saveable field", "d", FIELD(notsaved), }, // save() skips this field 54 54 { 0, 0, 0, }, 55 55 };
Note: See TracChangeset
for help on using the changeset viewer.