* [TD]allow DrawViewAnno to be attached to another view * [TD]allow image and spreadsheet attach to view * [TD]ensure correct parent in scene * [TD]refactor command helpers to separate file - gathering the helpers in one place - helper redundancy to be address in another change * [TD]create symbol, spreadsheet, image with parent * [TD]fix claimChildren for some views - also includes many lint fixes
25 lines
655 B
C++
25 lines
655 B
C++
#ifndef TECHDRAW_ZVALUE_
|
|
#define TECHDRAW_ZVALUE_
|
|
namespace ZVALUE {
|
|
const int BACKGROUND = -999999;
|
|
const int TEMPLATE = -1000;
|
|
const int SVGTEMPLATE = -500;
|
|
//border/label const int border = 0;
|
|
const int FACE = 10;
|
|
const int HATCH = 30;
|
|
const int SECTIONFACE = 40;
|
|
const int SECTIONHATCH = 41;
|
|
const int HIGHLIGHT = 50;
|
|
const int HIDEDGE = 60;
|
|
const int EDGE = 70;
|
|
const int VERTEX = 80;
|
|
const int SECTIONLINE = 90;
|
|
const int MATTING = 100;
|
|
const int DIMENSION = 110;
|
|
const int BALLOON = 120;
|
|
const int ANNOTATION = 120;
|
|
const int TRACKER = 125;
|
|
const int LOCK = 200;
|
|
}
|
|
#endif
|