/usr/include/dcmtk/dcmpstat/dvpsgll.h is in libdcmtk-dev 3.6.2-3build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | /*
*
* Copyright (C) 1998-2012, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmpstat
*
* Author: Marco Eichelberg
*
* Purpose:
* classes: DVPSGraphicLayer_PList
*
*/
#ifndef DVPSGLL_H
#define DVPSGLL_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmdata/dcitem.h"
#include "dcmtk/dcmpstat/dpdefine.h"
class DVPSGraphicLayer;
class DVPSOverlayCurveActivationLayer_PList;
class DVPSGraphicAnnotation_PList;
/** the list of graphic layers contained in a presentation state (internal use only).
* This class manages the data structures comprising the complete
* Graphic Layer Sequence in a Presentation State object.
*/
class DCMTK_DCMPSTAT_EXPORT DVPSGraphicLayer_PList
{
public:
/// default constructor
DVPSGraphicLayer_PList();
/// copy constructor
DVPSGraphicLayer_PList(const DVPSGraphicLayer_PList& copy);
/** clone method.
* @return a pointer to a new DVPSGraphicLayer_PList object containing
* a deep copy of this object.
*/
DVPSGraphicLayer_PList *clone() { return new DVPSGraphicLayer_PList(*this); }
/// destructor
virtual ~DVPSGraphicLayer_PList();
/** reads the Graphic Layer Sequence from a DICOM dataset.
* The completeness of the sequence items (presence of all required elements,
* value multiplicity) is checked.
* If this method returns an error code, the object is in undefined state afterwards.
* @param dset the DICOM dataset from which the overlays are read
* @return EC_Normal if successful, an error code otherwise.
*/
OFCondition read(DcmItem &dset);
/** writes the Graphic Layer Sequence managed by this object to a DICOM dataset.
* Copies of the DICOM elements managed by this object are inserted into
* the DICOM dataset.
* @param dset the DICOM dataset to which the sequence is written
* @return EC_Normal if successful, an error code otherwise.
*/
OFCondition write(DcmItem &dset);
/** reset the object to initial state.
* After this call, the object is in the same state as after
* creation with the default constructor.
*/
void clear();
/** adds a new graphic layer to the list. The recommended display value
* of the new graphic layer remains undefined and can be set later.
* @param gLayer name of the graphic layer. Must be unique within the sequence,
* i.e. no other graphic layer with the same name may exist, otherwise an error
* code is returned.
* @param gLayerOrder graphic layer order of the new layer.
* @param gLayerDescription (optional) description of the new layer. Default: description absent.
* @return EC_Normal if successful, an error code otherwise.
*/
OFCondition addGraphicLayer(const char *gLayer,
const Sint32 gLayerOrder,
const char *gLayerDescription=NULL);
/** creates a new graphic layer with the given
* name and optional description.
* The new name must be unique, otherwise an error code is returned.
* The toFrontGraphicLayer() method is implicitly called for the new layer.
* @param gLayer the name of the graphic layer. Must be a valid DICOM Code String.
* @param gLayerDescription the optional description of the graphic layer.
* Must be a valid DICOM Long String.
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition addGraphicLayer(
const char *gLayer,
const char *gLayerDescription=NULL);
/** get number of graphic layer objects in this list.
* @return the number of objects.
*/
size_t size() const { return list_.size(); }
/** sorts the graphic layers according to
* the graphic layer order. Layers with lower order have lower
* indices after sorting which means that the layers can be
* drawn to the screen in ascending index order.
* Calling this routine may result in a re-numbering
* of the graphic layer orders in a way that does not affect
* their sequence.
* @param lowestLayer is the lowest number assigned to
* a layer during the renumbering.
*/
void sortGraphicLayers(Sint32 lowestLayer=1);
/** gets the unique name of the graphic
* layer with the given index. If no layer for the given
* index exists, NULL is returned.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @return name of the graphic layer
*/
const char *getGraphicLayerName(size_t idx);
/** gets the index of the graphic
* layer with the given unique name. If no matching layer
* is found, DVPS_IDX_NONE is returned.
* @param name name of the graphic layer
* @return index of the graphic layer
*/
size_t getGraphicLayerIndex(const char *name);
/** gets a description string for the graphic
* layer with the given index. If no layer for the given
* index exists, or if the description is empty, NULL is returned.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @return description of the graphic layer
*/
const char *getGraphicLayerDescription(size_t idx);
/** checks whether a recommended display value (grayscale, color or both) for the given graphic layer exists.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @return OFTrue if a recommended display value exists
*/
OFBool haveGraphicLayerRecommendedDisplayValue(size_t idx);
/** gets the recommended grayscale display value for the given graphic layer.
* If the graphic layer contains an RGB display value but no grayscale
* display value, the RGB value is implicitly converted to grayscale.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @param gray the recommended display value as an unsigned 16-bit P-value
* is returned in this parameter.
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition getGraphicLayerRecommendedDisplayValueGray(size_t idx, Uint16& gray);
/** gets the recommended RGB display value for the given graphic layer.
* If the graphic layer contains a grayscale display value but no RGB
* display value, the grayscale value is implicitly converted to RGB.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @param r returns the R component of the recommended display value as unsigned 16-bit P-value
* @param g returns the G component of the recommended display value as unsigned 16-bit P-value
* @param b returns the B component of the recommended display value as unsigned 16-bit P-value
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition getGraphicLayerRecommendedDisplayValueRGB(size_t idx, Uint16& r, Uint16& g, Uint16& b);
/** set graphic layer recommended grayscale display value for the given graphic layer.
* This method does not affect (set or modify) the recommended RGB display value
* which should be set separately.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @param gray the recommended display value as an unsigned 16-bit P-value
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition setGraphicLayerRecommendedDisplayValueGray(size_t idx, Uint16 gray);
/** set graphic layer recommended RGB display value for the given graphic layer.
* This method does not affect (set or modify) the recommended grayscale display value
* which should be set separately.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @param r the R component of the recommended display value as unsigned 16-bit P-value
* @param g the G component of the recommended display value as unsigned 16-bit P-value
* @param b the B component of the recommended display value as unsigned 16-bit P-value
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition setGraphicLayerRecommendedDisplayValueRGB(size_t idx, Uint16 r, Uint16 g, Uint16 b);
/** removes recommended display values for the given graphic layer.
* @param rgb if true, the RGB recommended display value is removed
* @param monochrome if true the monochrome recommended display value is removed
*/
void removeGraphicLayerRecommendedDisplayValue(size_t idx, OFBool rgb, OFBool monochrome);
/** assigns a new unique name to the given graphic layer.
* The new name must be unique, otherwise an error code is returned.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @param name the new name of the graphic layer. Must be a valid DICOM Code String.
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition setGraphicLayerName(size_t idx, const char *name);
/** sets a new description to the given graphic layer.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @param descr description of the graphic layer. Must be a valid DICOM Long String.
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition setGraphicLayerDescription(size_t idx, const char *descr);
/** makes a graphic layer the highest layer for display.
* This method assigns a graphic layer order higher than all
* existing graphic layer orders to the given graphic layer,
* sorts and renumbers the list of graphic layers. Upon success,
* the given graphic layer is guaranteed to have the new index
* (getNumberOfGraphicLayers()-1).
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition toFrontGraphicLayer(size_t idx);
/** makes a graphic layer the lowest layer for display.
* This method assigns a graphic layer order lower than all
* existing graphic layer orders to the given graphic layer,
* sorts and renumbers the list of graphic layers. Upon success,
* the given graphic layer is guaranteed to have the new index 0.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition toBackGraphicLayer(size_t idx);
/** exchanges the layer order of the two graphic layers with
* the given indices. This method does not sort or renumber
* the graphic layers.
* @param idx1 index of the first graphic layer, must be < getNumberOfGraphicLayers()
* @param idx2 index of the second graphic layer, must be < getNumberOfGraphicLayers()
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition exchangeGraphicLayers(size_t idx1, size_t idx2);
/** removes and deletes a graphic layer.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @return EC_Normal upon success, an error code otherwise
*/
OFCondition removeGraphicLayer(size_t idx);
/** removes and deletes all graphic layers for which
* no matching text, graphic, curve or overlay object exists.
* Called before writing a presentation state.
*/
void cleanupLayers(
DVPSOverlayCurveActivationLayer_PList& activations,
DVPSGraphicAnnotation_PList& annotations);
private:
/// private undefined assignment operator
DVPSGraphicLayer_PList& operator=(const DVPSGraphicLayer_PList&);
/** gets the the graphic layer with the given index. If no layer for the given
* index exists, NULL is returned.
* @param idx index of the graphic layer, must be < getNumberOfGraphicLayers()
* @return pointer to the graphic layer
*/
DVPSGraphicLayer *getGraphicLayer(size_t idx);
/** the list maintained by this object
*/
OFList<DVPSGraphicLayer *> list_;
};
#endif
|