/usr/include/ncarg/hlu/CairoWorkstation.h is in libncarg-dev 6.3.0-13.
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 | /*
 *      $Id: CairoWorkstation.h 15910 2015-01-12 19:03:40Z brownrig $
 */
#ifndef    _NCarioWorkstation_h
#define    _NCarioWorkstation_h
#include   <ncarg/hlu/Workstation.h>
#define    NhlNwkFormat     "wkFormat"
#define    NhlCwkFormat     "WkFormat"
#define    NhlNwkFileName   "wkFileName"
#define    NhlCwkFileName   "WkFileName"
#define    _NhlNwkPixConf   "_wkPixConf"
#define    _NhlCwkPixConf   "_WkPixConf"
/* WindowWorkstation resources */
#define    NhlNwkWindowId   "wkWindowId"
#define    NhlCwkWindowId   "WkWindowId"
#define    NhlNwkPause      "wkPause"
#define    NhlCwkPause      "WkPause"
#define    NhlNpositionX    "wkPositionX"
#define    NhlCpositionX    "WkPositionX"
#define    NhlNpositionY    "wkPositionY"
#define    NhlCpositionY    "WkPositionY"
#define    NhlNwkTitle      "wkWinTitle"
#define    NhlCwkTitle      "WkWinTitle"
#define    NhlNwkIconTitle  "wkIconTitle"
#define    NhlCwkIconTitle  "WkIconTitle"
#define    NhlNwkCairoFillWorkaround "wkCairoFillWorkaround"
#define    NhlCwkCairoFillWorkaround "WKCairoFillWorkaround"
/*
 * See: Workstation.h for common, shared resources for visual type,
 * orientation, background, device upper/lower coordinates, and
 * color model.
 */
/*
 * New Types.
 */
#define    NhlTCairoFormat   "CairoFormat"
typedef enum _NhlCairoFormat {
    NhlCPS   = 0,
    NhlCPNG  = 1,
    NhlCPDF  = 2,
    NhlCTIFF = 3,
    NhlCX11  = 4,
    NhlCEPS  = 5,
    NhlCQT   = 6,
    NhlCSVG  = 7        
} NhlCairoFormat;
extern NhlClass NhlcairoDocumentWorkstationClass;
extern NhlClass NhlcairoImageWorkstationClass;
extern NhlClass NhlcairoWindowWorkstationClass;
#ifdef BuildQtEnabled
extern NhlClass NhlcairoQtWorkstationClass;
#endif
#endif /* _NCairoWorkstation_h */
 |