Home
last modified time | relevance | path

Searched refs:widthInPixels (Results 1 – 25 of 67) sorted by relevance

123

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/
H A DColumnPixelData.java50 public ColumnPixelData(int widthInPixels) { in ColumnPixelData() argument
51 this(widthInPixels, true, false); in ColumnPixelData()
61 public ColumnPixelData(int widthInPixels, boolean resizable) { in ColumnPixelData() argument
62 this(widthInPixels, resizable, false); in ColumnPixelData()
79 public ColumnPixelData(int widthInPixels, boolean resizable, boolean addTrim) { in ColumnPixelData() argument
81 Assert.isTrue(widthInPixels >= 0); in ColumnPixelData()
82 this.width = widthInPixels; in ColumnPixelData()
/dports/cad/sumo/sumo-1.2.0/src/gui/
H A DGUITLLogicPhasesTrackerWindow.cpp78 int widthInPixels = getWidth(); in onConfigure() local
80 if (widthInPixels != 0 && heightInPixels != 0) { in onConfigure()
81 glViewport(0, 0, widthInPixels - 1, heightInPixels - 1); in onConfigure()
104 int widthInPixels = getWidth(); in onPaint() local
106 if (widthInPixels != 0 && heightInPixels != 0) { in onPaint()
107 glViewport(0, 0, widthInPixels - 1, heightInPixels - 1); in onPaint()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_utils/gui/
H A Djuce_MidiKeyboardComponent.cpp101 void MidiKeyboardComponent::setKeyWidth (float widthInPixels) in setKeyWidth() argument
103 jassert (widthInPixels > 0); in setKeyWidth()
105 …if (keyWidth != widthInPixels) // Prevent infinite recursion if the width is being computed in a '… in setKeyWidth()
107 keyWidth = widthInPixels; in setKeyWidth()
112 void MidiKeyboardComponent::setScrollButtonWidth (int widthInPixels) in setScrollButtonWidth() argument
114 jassert (widthInPixels > 0); in setScrollButtonWidth()
116 if (scrollButtonWidth != widthInPixels) in setScrollButtonWidth()
118 scrollButtonWidth = widthInPixels; in setScrollButtonWidth()
H A Djuce_MidiKeyboardComponent.h126 void setKeyWidth (float widthInPixels);
132 void setScrollButtonWidth (int widthInPixels);
/dports/cad/gerbv/gerbv-2.7.0/src/
H A Dexport-image.c73 …id gerbv_export_png_file_from_project_autoscaled (gerbv_project_t *gerbvProject, int widthInPixels, in gerbv_export_png_file_from_project_autoscaled() argument
77 widthInPixels, heightInPixels}; in gerbv_export_png_file_from_project_autoscaled()
/dports/graphics/qgis/qgis-3.22.3/src/core/layout/
H A Dqgslayoutitem.cpp307 double widthInPixels = 0; in paint() local
312widthInPixels = boundingRect().width() * QgsLayoutUtils::scaleFactorFromItemStyle( itemStyle, pain… in paint()
318 widthInPixels = boundingRect().width() * layoutUnitsToPixels; in paint()
323 … if ( previewRender && ( widthInPixels > CACHE_SIZE_LIMIT || heightInPixels > CACHE_SIZE_LIMIT ) ) in paint()
326 if ( widthInPixels > heightInPixels ) in paint()
328 scale = widthInPixels / CACHE_SIZE_LIMIT; in paint()
329 widthInPixels = CACHE_SIZE_LIMIT; in paint()
336 widthInPixels /= scale; in paint()
355 QImage image = QImage( widthInPixels, heightInPixels, QImage::Format_ARGB32 ); in paint()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/layout/
H A Dqgslayoutitem.cpp307 double widthInPixels = 0; in paint() local
312widthInPixels = boundingRect().width() * QgsLayoutUtils::scaleFactorFromItemStyle( itemStyle ); in paint()
318 widthInPixels = boundingRect().width() * layoutUnitsToPixels; in paint()
323 … if ( previewRender && ( widthInPixels > CACHE_SIZE_LIMIT || heightInPixels > CACHE_SIZE_LIMIT ) ) in paint()
326 if ( widthInPixels > heightInPixels ) in paint()
328 scale = widthInPixels / CACHE_SIZE_LIMIT; in paint()
329 widthInPixels = CACHE_SIZE_LIMIT; in paint()
336 widthInPixels /= scale; in paint()
355 QImage image = QImage( widthInPixels, heightInPixels, QImage::Format_ARGB32 ); in paint()
/dports/audio/faust/faust-2.37.3/architecture/smartKeyboard/android/app/oboe/samples/RhythmGame/src/main/java/com/google/oboe/samples/rhythmgame/
H A DRendererWrapper.java25 public static native void native_onSurfaceChanged(int widthInPixels, int heightInPixels); in native_onSurfaceChanged() argument
/dports/print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.7.17/lib/
H A Depson-escpage-mono.c196 static EPS_ERR_CODE BandInit (EPS_PAGE_BAND_M *pBand, EPS_INT32 widthInPixels);
204 static void HT_Scan (EPS_UINT8 *Con, EPS_UINT8 *Bin, EPS_INT32 widthInPixels);
880 EPS_INT32 widthInPixels in BandInit() argument
890 pBand->WidthInPixels = widthInPixels; in BandInit()
1151 static void HT_Scan(EPS_UINT8 *Con, EPS_UINT8 *Bin, EPS_INT32 widthInPixels) in HT_Scan() argument
1173 for (k = 0; k < widthInPixels; k++) { in HT_Scan()
H A Depson-escpage-color.c109 EPS_INT32 widthInPixels; member
881 pBand->widthInPixels = printJob.printableAreaWidth; in BandInit()
888 pBand->scanLineSize = pBand->widthInPixels * printJob.bpp; in BandInit()
891 pBand->scanLineSize = (pBand->widthInPixels * printJob.bpp); in BandInit()
/dports/devel/gwenhywfar-gtk3/gwenhywfar-5.6.0/gui/cocoa/
H A DCocoaListBox.m188 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index {
189 if (index < 0 || widthInPixels < 0) return NO;
192 [tableColumn setWidth:widthInPixels];
H A DCocoaListBox.h35 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index;
/dports/devel/gwenhywfar-qt5/gwenhywfar-5.6.0/gui/cocoa/
H A DCocoaListBox.m188 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index {
189 if (index < 0 || widthInPixels < 0) return NO;
192 [tableColumn setWidth:widthInPixels];
H A DCocoaListBox.h35 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index;
/dports/devel/gwenhywfar/gwenhywfar-5.6.0/gui/cocoa/
H A DCocoaListBox.m188 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index {
189 if (index < 0 || widthInPixels < 0) return NO;
192 [tableColumn setWidth:widthInPixels];
H A DCocoaListBox.h35 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index;
/dports/devel/gwenhywfar-gtk2/gwenhywfar-5.6.0/gui/cocoa/
H A DCocoaListBox.m188 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index {
189 if (index < 0 || widthInPixels < 0) return NO;
192 [tableColumn setWidth:widthInPixels];
H A DCocoaListBox.h35 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index;
/dports/devel/gwenhywfar-fox16/gwenhywfar-5.6.0/gui/cocoa/
H A DCocoaListBox.m188 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index {
189 if (index < 0 || widthInPixels < 0) return NO;
192 [tableColumn setWidth:widthInPixels];
H A DCocoaListBox.h35 -(BOOL) setColumnWidthTo:(NSInteger)widthInPixels forColumn:(NSInteger)index;
/dports/graphics/qgis/qgis-3.22.3/src/core/providers/arcgis/
H A Dqgsarcgisrestutils.cpp474 double widthInPixels = symbolData.value( QStringLiteral( "width" ) ).toInt( &ok ); in parseEsriPictureFillSymbolJson() local
480 widthInPixels *= xScale; in parseEsriPictureFillSymbolJson()
495 fillLayer->setWidth( widthInPixels ); in parseEsriPictureFillSymbolJson()
572 const double widthInPixels = symbolData.value( QStringLiteral( "width" ) ).toInt( &ok ); in parseEsriPictureMarkerSymbolJson() local
593 …erLayer = std::make_unique< QgsRasterMarkerSymbolLayer >( symbolPath, widthInPixels, angleCW, Qgis… in parseEsriPictureMarkerSymbolJson()
597 …if ( !qgsDoubleNear( static_cast< double >( heightInPixels ) / widthInPixels, markerLayer->default… in parseEsriPictureMarkerSymbolJson()
598 markerLayer->setFixedAspectRatio( static_cast< double >( heightInPixels ) / widthInPixels ); in parseEsriPictureMarkerSymbolJson()
/dports/graphics/qgis/qgis-3.22.3/src/core/annotations/
H A Dqgsannotationpointtextitem.cpp128 …const double widthInPixels = QgsTextRenderer::textWidth( context, mTextFormat, displayText.split( … in boundingBox() local
134 …const double widthInMapUnits = context.convertToMapUnits( widthInPixels, QgsUnitTypes::RenderPixel… in boundingBox()
/dports/audio/faust/faust-2.37.3/architecture/smartKeyboard/android/app/oboe/samples/RhythmGame/src/main/cpp/
H A DGame.h50 void onSurfaceChanged(int widthInPixels, int heightInPixels);
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/features/autofill_assistant/java/src/org/chromium/chrome/browser/autofill_assistant/generic_ui/
H A DAssistantDrawable.java51 String url, int widthInPixels, int heightInPixels) { in createFromUrl() argument
52 return new AssistantBitmapDrawable(url, widthInPixels, heightInPixels); in createFromUrl()
/dports/www/firefox-esr/firefox-91.8.0/layout/generic/
H A DnsFrameSetFrame.cpp1361 nscoord widthInPixels = nsPresContext::AppUnitsToIntCSSPixels(mWidth); in PaintBorder() local
1364 if (widthInPixels <= 0) return; in PaintBorder()
1396 for (int i = 0; i < widthInPixels; i++) { in PaintBorder()
1410 if (widthInPixels >= 5) { in PaintBorder()
1419 if (widthInPixels >= 2) { in PaintBorder()
1428 if (widthInPixels >= 1) { in PaintBorder()

123