Home
last modified time | relevance | path

Searched refs:drawLabel (Results 1 – 25 of 441) sorted by relevance

12345678910>>...18

/dports/astro/kstars/kstars-3.5.6/kstars/projections/
H A Dequirectangularprojector.cpp118 if (drawLabel) in groundPoly()
119 *drawLabel = false; in groundPoly()
127 if (drawLabel) in groundPoly()
128 *drawLabel = false; in groundPoly()
143 if (drawLabel) in groundPoly()
144 *drawLabel = true; in groundPoly()
188 if (drawLabel) in groundPoly()
189 *drawLabel = false; in groundPoly()
200 if (drawLabel) in groundPoly()
211 if (drawLabel) in groundPoly()
[all …]
/dports/print/texlive-base/texlive-20150521-source/utils/asymptote/
H A Ddrawlabel.h18 class drawLabel : public virtual drawElement {
35 drawLabel(string label, string size, transform T, pair position, in drawLabel() function
41 virtual ~drawLabel() {} in ~drawLabel()
60 class drawLabelPath : public drawLabel, public drawPathPenBase {
67 drawLabel(label,size,identity,pair(0.0,0.0),align,pentype), in drawLabelPath()
H A Ddrawlabel.cc21 void drawLabel::labelwarning(const char *action) in labelwarning()
89 void drawLabel::getbounds(iopipestream& tex, const string& texengine) in getbounds()
116 void drawLabel::bounds(bbox& b, iopipestream& tex, boxvector& labelbounds, in bounds()
181 void drawLabel::checkbounds() in checkbounds()
187 bool drawLabel::write(texfile *out, const bbox&) in write()
196 drawElement *drawLabel::transformed(const transform& t) in transformed()
198 return new drawLabel(label,size,t*T,t*position, in transformed()
248 if(drawLabel::pentype.invisible()) return true; in write()
249 out->setpen(drawLabel::pentype); in write()
/dports/math/asymptote/asymptote-2.67/
H A Ddrawlabel.h18 class drawLabel : public virtual drawElement {
35 drawLabel(string label, string size, transform T, pair position,
42 virtual ~drawLabel() {} in ~drawLabel()
61 class drawLabelPath : public drawLabel, public drawPathPenBase {
69 drawLabel(label,size,identity,pair(0.0,0.0),pair(0.0,0.0),pentype,key),
H A Ddrawlabel.cc21 void drawLabel::labelwarning(const char *action) in labelwarning()
89 void drawLabel::getbounds(iopipestream& tex, const string& texengine) in getbounds()
116 void drawLabel::bounds(bbox& b, iopipestream& tex, boxvector& labelbounds, in bounds()
181 void drawLabel::checkbounds() in checkbounds()
187 bool drawLabel::write(texfile *out, const bbox&) in write()
196 drawElement *drawLabel::transformed(const transform& t) in transformed()
198 return new drawLabel(label,size,t*T,t*position, in transformed()
248 if(drawLabel::pentype.invisible()) return true; in write()
249 out->setpen(drawLabel::pentype); in write()
/dports/graphics/qgis/qgis-3.22.3/src/core/labeling/
H A Dqgslabelsink.cpp29 void QgsLabelSinkProvider::drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const in drawLabel() function in QgsLabelSinkProvider
32 mLabelSink->drawLabel( layerId(), context, label, mSettings ); in drawLabel()
53 void QgsRuleBasedLabelSinkProvider::drawLabel( QgsRenderContext &context, pal::LabelPosition *label… in drawLabel() function in QgsRuleBasedLabelSinkProvider
56 mLabelSink->drawLabel( layerId(), context, label, mSettings ); in drawLabel()
H A Dqgslabelsink.h47 …virtual void drawLabel( const QString &layerId, QgsRenderContext &context, pal::LabelPosition *lab…
63 void drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const override;
88 void drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const override;
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/labeling/
H A Dqgslabelsink.cpp29 void QgsLabelSinkProvider::drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const in drawLabel() function in QgsLabelSinkProvider
32 mLabelSink->drawLabel( layerId(), context, label, mSettings ); in drawLabel()
53 void QgsRuleBasedLabelSinkProvider::drawLabel( QgsRenderContext &context, pal::LabelPosition *label… in drawLabel() function in QgsRuleBasedLabelSinkProvider
56 mLabelSink->drawLabel( layerId(), context, label, mSettings ); in drawLabel()
H A Dqgslabelsink.h47 …virtual void drawLabel( const QString &layerId, QgsRenderContext &context, pal::LabelPosition *lab…
63 void drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const override;
88 void drawLabel( QgsRenderContext &context, pal::LabelPosition *label ) const override;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/gm/
H A Dorientation.cpp95 auto drawLabel = [&](const char* string, SkScalar x, SkScalar y) { in make_images() local
113 drawLabel("top", midX - bounds.centerX(), -bounds.top() + kPad); in make_images()
116 drawLabel("bottom", midX - bounds.centerX(), kImgH - kPad - bounds.bottom()); in make_images()
122 drawLabel("left", kPad - bounds.left(), baseY); in make_images()
125 drawLabel("right", midX - kPad - bounds.right(), baseY); in make_images()
129 drawLabel(num.c_str(), midX - bounds.centerX(), baseY); in make_images()
/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/skyitems/skynodes/
H A Dplanetmoonsnode.cpp74 bool drawLabel = true; in updateMoons() local
78 drawLabel = false; in updateMoons()
86 m_moonNodes[i]->SkyNode::update(drawLabel); in updateMoons()
93 m_moonNodes[i]->SkyNode::update(drawLabel); in updateMoons()
H A Dskynode.cpp33 void SkyNode::update(bool drawLabel) in update() argument
35 m_drawLabel = drawLabel; in update()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/docs/examples/
H A DImageInfo_makeColorSpace.cpp10 auto drawLabel = [=](const char* what, bool closeToSRGB) -> void {
23 drawLabel("canvas", canvas->imageInfo().gammaCloseToSRGB());
31 drawLabel("offscreen", offscreenInfo.gammaCloseToSRGB());
39 drawLabel("linear", linearGamma.gammaCloseToSRGB());
H A DImageInfo_gammaCloseToSRGB.cpp10 auto drawLabel = [=](const char* what, bool closeToSRGB) -> void {
23 drawLabel("canvas", canvas->imageInfo().gammaCloseToSRGB());
31 drawLabel("offscreen", offscreenInfo.gammaCloseToSRGB());
/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/skyitems/
H A Dcometsitem.cpp58 bool drawLabel = false; in update() local
61 drawLabel = true; in update()
63 skyNode->update(drawLabel); in update()
H A Dasteroidsitem.cpp69 bool drawLabel = false; in update() local
78 drawLabel = true; in update()
80 pNode->update(drawLabel); in update()
/dports/math/reduce/Reduce-svn5758-src/csl/fox/src/
H A DFXTriStateButton.cpp326 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
331 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
336 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
361 drawLabel(dc,altlabel,althotoff,tx+1,ty+1,tw,th); in onPaint()
363 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
368 drawLabel(dc,maybelabel,-1,tx+1,ty+1,tw,th); in onPaint()
370 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
375 drawLabel(dc,label,hotoff,tx+1,ty+1,tw,th); in onPaint()
377 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
/dports/audio/gogglesmm/gogglesmm-1.2.2/cfox/lib/
H A DFXTriStateButton.cpp328 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
333 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
338 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
363 drawLabel(dc,altlabel,althotoff,tx+1,ty+1,tw,th); in onPaint()
365 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
370 drawLabel(dc,maybelabel,-1,tx+1,ty+1,tw,th); in onPaint()
372 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
377 drawLabel(dc,label,hotoff,tx+1,ty+1,tw,th); in onPaint()
379 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
/dports/x11-toolkits/fox16/fox-1.6.57/src/
H A DFXTriStateButton.cpp326 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
331 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
336 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
361 drawLabel(dc,altlabel,althotoff,tx+1,ty+1,tw,th); in onPaint()
363 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
368 drawLabel(dc,maybelabel,-1,tx+1,ty+1,tw,th); in onPaint()
370 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
375 drawLabel(dc,label,hotoff,tx+1,ty+1,tw,th); in onPaint()
377 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
/dports/x11-toolkits/fox14/fox-1.4.35/src/
H A DFXTriStateButton.cpp326 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
331 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
336 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
361 drawLabel(dc,altlabel,althotoff,tx+1,ty+1,tw,th); in onPaint()
363 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
368 drawLabel(dc,maybelabel,-1,tx+1,ty+1,tw,th); in onPaint()
370 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
375 drawLabel(dc,label,hotoff,tx+1,ty+1,tw,th); in onPaint()
377 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
/dports/x11-toolkits/fox17/fox-1.7.77/lib/
H A DFXTriStateButton.cpp328 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
333 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
338 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
363 drawLabel(dc,altlabel,althotoff,tx+1,ty+1,tw,th); in onPaint()
365 drawLabel(dc,altlabel,althotoff,tx,ty,tw,th); in onPaint()
370 drawLabel(dc,maybelabel,-1,tx+1,ty+1,tw,th); in onPaint()
372 drawLabel(dc,maybelabel,-1,tx,ty,tw,th); in onPaint()
377 drawLabel(dc,label,hotoff,tx+1,ty+1,tw,th); in onPaint()
379 drawLabel(dc,label,hotoff,tx,ty,tw,th); in onPaint()
/dports/graphics/tikzit/tikzit-2.1.6/src/gui/
H A Dnodeitem.cpp94 bool drawLabel = _node->label() != ""; in paint() local
97 drawLabel= drawLabel && sc->drawNodeLabels(); in paint()
100 if (drawLabel) { in paint()
/dports/audio/infamous-plugins-lv2/infamousPlugins-0.3.0-7-g778e591/src/ffffltk/
H A Dffffltk_dial.h86 drawLabel = true; in Fl_Slider()
95 int drawLabel; variable
246 if(drawLabel)Fl_Widget::copy_label(lable); in handle()
271 if(drawLabel)Fl_Widget::copy_label(lable); in handle()
/dports/astro/kstars/kstars-3.5.6/kstars/skycomponents/
H A Dhorizoncomponent.cpp80 bool drawLabel; in draw() local
81 skyp->drawHorizon(Options::showGround(), &labelPoint, &drawLabel); in draw()
83 if (drawLabel) in draw()
/dports/java/jgraphx/jgraphx-4.2.2/examples/com/mxgraph/examples/swing/
H A DCustomCanvas.java36 boolean drawLabel) in CustomCanvas()
38 String label = (drawLabel) ? state.getLabel() : ""; in CustomCanvas()
58 super.drawState(canvas, state, drawLabel); in CustomCanvas()

12345678910>>...18