This file is indexed.

/usr/share/ncarg/hluex/textitem/tx08c.c is in libncarg-data 6.3.0-6build1.

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
/*
 *  $Id: tx08c.c,v 1.4 2010-03-15 22:49:24 haley Exp $
 */
/***********************************************************************
*                                                                      *
*                Copyright (C)  1995                                   *
*        University Corporation for Atmospheric Research               *
*                All Rights Reserved                                   *
*                                                                      *
***********************************************************************/
/*
 *      File:           tx08c.c
 *
 *      Author:         Jeff Boote (converted to C by Mary Haley)
 *                      National Center for Atmospheric Research
 *                      PO 3000, Boulder, Colorado
 *
 *      Date:           Thu Jan  4 09:44:52 MST 1996
 *
 *      Description:    Simple annotation example.
 */

#include <stdio.h>
#include <ncarg/hlu/hlu.h>
#include <ncarg/hlu/ResList.h>
#include <ncarg/hlu/App.h>
#include <ncarg/hlu/TextItem.h>
#include <ncarg/hlu/NcgmWorkstation.h>
#include <ncarg/hlu/PSWorkstation.h>
#include <ncarg/hlu/PDFWorkstation.h>
#include <ncarg/hlu/CairoWorkstation.h>
#include <ncarg/hlu/XyPlot.h>

int main()
{
    int ixwk, list, ixyplot, itx, ianno;
    char const *wks_type = "x11";
/*
 * Create application.
 */ 
    NhlOpen();
    list = NhlRLCreate(NhlSETRL);

    if (!strcmp(wks_type,"ncgm") || !strcmp(wks_type,"NCGM")) {
/*
 * Create a meta file workstation.
 */
        NhlRLClear(list);
        NhlRLSetString(list,NhlNwkMetaName,"./tx08c.ncgm");
        NhlCreate(&ixwk,"tx08Work",NhlncgmWorkstationClass,
                  NhlDEFAULT_APP,list);
    }
    else if (!strcmp(wks_type,"x11") || !strcmp(wks_type,"X11")) {
/*
 * Create an X11 workstation.
 */
        NhlRLClear(list);
        NhlCreate(&ixwk,"tx08Work",
                  NhlcairoWindowWorkstationClass,NhlDEFAULT_APP, list);
    }
    else if (!strcmp(wks_type,"oldps") || !strcmp(wks_type,"OLDPS")) {
/*
 * Create an older-style PostScript workstation.
 */
        NhlRLClear(list);
        NhlRLSetString(list,NhlNwkPSFileName,"./tx08c.ps");
        NhlCreate(&ixwk,"tx08Work",NhlpsWorkstationClass,
                  NhlDEFAULT_APP,list);
    }
    else if (!strcmp(wks_type,"oldpdf") || !strcmp(wks_type,"OLDPDF")) {
/*
 * Create an older-style PDF workstation.
 */
        NhlRLClear(list);
        NhlRLSetString(list,NhlNwkPDFFileName,"./tx08c.pdf");
        NhlCreate(&ixwk,"tx08Work",NhlpdfWorkstationClass,
                  NhlDEFAULT_APP,list);
    }
    else if (!strcmp(wks_type,"pdf") || !strcmp(wks_type,"PDF") ||
             !strcmp(wks_type,"ps") || !strcmp(wks_type,"PS")) {
/*
 * Create a cairo PS/PDF workstation.
 */
        NhlRLClear(list);
        NhlRLSetString(list,NhlNwkFileName,"./tx08c");
        NhlRLSetString(list,NhlNwkFormat,(char*)wks_type);
        NhlCreate(&ixwk,"tx08Work",NhlcairoDocumentWorkstationClass,
                  NhlDEFAULT_APP,list);
    }
    else if (!strcmp(wks_type,"png") || !strcmp(wks_type,"PNG")) {
/*
 * Create a cairo PNG workstation.
 */
        NhlRLClear(list);
        NhlRLSetString(list,NhlNwkFileName,"./tx08c");
        NhlRLSetString(list,NhlNwkFormat,(char*)wks_type);
        NhlCreate(&ixwk,"tx08Work",NhlcairoImageWorkstationClass,
                  NhlDEFAULT_APP,list);
    }
/*
 * Create Plot object - no data, just illustration annotations.
 */
    NhlRLClear(list);
    NhlRLSetFloat(list,"vpXF",0.2);
    NhlRLSetFloat(list,"vpYF",.7);
    NhlRLSetFloat(list,"vpWidthF",.3);
    NhlRLSetFloat(list,"vpHeightF",.3);
    NhlCreate(&ixyplot,"xyPlot",NhlxyPlotClass,ixwk,list);

    NhlRLClear(list);
    NhlRLSetString(list,"txString","Second Line");
    NhlCreate(&itx,"txItem",NhltextItemClass,ixwk,list);
/*
 * There is currently a bug in the HLU library - you have to specify
 * ier - it should be returned in ianno if there is an error, but
 * this is what you currently have to use.
 */
    ianno = NhlAddAnnotation(ixyplot,itx);
/*
 * Just set the "zone" to something fairly large, so it is outside
 * of all "PlotManager" defined annotations.
 * Set the "side" to top - "amJust" defaults to centercenter - but
 * setting "amSide" to top makes that effectively bottomcenter.  So,
 * the textitem would be drawn so its bottomcenter is placed at the
 * top of the viewport of the plot, on the left side.  To get the
 * text centered over the plot - set "amParallelPosF" to .5 to move
 * the textitem over .5 the width of the plot.
 * Set "amOrthogonalPosF" to .1 to give a little bit of spacing
 * in the y direction from the plot (the previous zone).
 */
    NhlRLClear(list);
    NhlRLSetInteger(list,"amZone",10);
    NhlRLSetString(list,"amSide","top");
    NhlRLSetString(list,"amJust","bottomcenter");
    NhlRLSetFloat(list,"amParallelPosF",0.5);
    NhlRLSetFloat(list,"amOrthogonalPosF",0.1);
    NhlSetValues(ianno,list);

    NhlRLClear(list);
    NhlRLSetString(list,"txString","First Line");
    NhlCreate(&itx,"txItem",NhltextItemClass,ixwk,list);

    ianno = NhlAddAnnotation(ixyplot,itx);
/*
 * Add this textitem as an annotation with the same charactoristics
 * as the first one, but make the zone one higher - so it is just
 * outside of the first annotation.  (With a .1 distance away due
 * to the "amOrthogonalPosF".
 */
    NhlRLClear(list);
    NhlRLSetInteger(list,"amZone",11);
    NhlRLSetString(list,"amSide","top");
    NhlRLSetString(list,"amJust","bottomcenter");
    NhlRLSetFloat(list,"amParallelPosF",0.5);
    NhlRLSetFloat(list,"amOrthogonalPosF",0.1);
    NhlSetValues(ianno,list);
/*
 * Draw and advance frame.
 *   Notice that drawing the main plot automatically draw's the textitem
 *   since it is now a "member plot" of the xyplot.  In fact, you can
 *   no-longer draw the textitem indepentently.
 */
    NhlDraw(ixyplot);
    NhlFrame(ixwk);
/*
 * Now, if we move the base plot, the annoation stays with the plot.
 * It is drawn in its relative position to the xyplot.
 */
    NhlRLClear(list);
    NhlRLSetFloat(list,"vpXF",0.5);
    NhlRLSetFloat(list,"vpYF",.4);
    NhlSetValues(ixyplot,list);

    NhlDraw(ixyplot);
    NhlFrame(ixwk);
/*
 * Close automatically destroys all hlu objects that currently exist,
 * and destroys all "res-list's" that currently exist as well.
 * It is really only important to explicitly destroy those things
 * for long running applications, so memory use doesn't grow too
 * large.
 */
    NhlClose();
    exit(0);
}