Home
last modified time | relevance | path

Searched refs:photoHeight (Results 1 – 17 of 17) sorted by relevance

/dports/cad/sweethome3d/SweetHome3D-6.6.4-src/src/com/eteks/sweethome3d/model/
H A DHomeEnvironment.java66 private int photoHeight; field in HomeEnvironment
143 this.photoHeight = 300; in HomeEnvironment()
159 this.photoHeight = 300; in readObject()
453 return this.photoHeight; in getPhotoHeight()
461 public void setPhotoHeight(int photoHeight) { in setPhotoHeight() argument
462 if (this.photoHeight != photoHeight) { in setPhotoHeight()
463 int oldPhotoHeight = this.photoHeight; in setPhotoHeight()
464 this.photoHeight = photoHeight; in setPhotoHeight()
465 firePropertyChange(Property.PHOTO_HEIGHT.name(), oldPhotoHeight, photoHeight); in setPhotoHeight() local
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/examples/osgphotoalbum/
H A DImageReaderWriter.cpp138 float photoHeight = 0.0f; in local_readNode() local
150 photoHeight = photoWidth*(t/s); in local_readNode()
158 photoHeight = maxHeight; in local_readNode()
159 photoWidth = photoHeight*(s/t); in local_readNode()
163 photoHeight*=0.95; in local_readNode()
166 osg::Vec3 halfHeightVector(dr._maximumHeight*(photoHeight*0.5f/maxHeight)); in local_readNode()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/examples/osgphotoalbum/
H A DImageReaderWriter.cpp138 float photoHeight = 0.0f; in local_readNode() local
150 photoHeight = photoWidth*(t/s); in local_readNode()
158 photoHeight = maxHeight; in local_readNode()
159 photoWidth = photoHeight*(s/t); in local_readNode()
163 photoHeight*=0.95; in local_readNode()
166 osg::Vec3 halfHeightVector(dr._maximumHeight*(photoHeight*0.5f/maxHeight)); in local_readNode()
/dports/net/messagelib/messagelib-21.12.3/messageviewer/src/header/
H A Dheaderstyle_util.cpp248 settings.photoHeight = photo.height(); in updateXFaceSettings()
250 if (settings.photoHeight > 60) { in updateXFaceSettings()
251 double ratio = (double)settings.photoHeight / (double)settings.photoWidth; in updateXFaceSettings()
252 settings.photoHeight = 60; in updateXFaceSettings()
254 …photo = photo.scaled(settings.photoWidth, settings.photoHeight, Qt::IgnoreAspectRatio, Qt::SmoothT… in updateXFaceSettings()
329 settings.photoHeight = 48; in xface()
351 settings.photoHeight = 48; in xface()
H A Dheaderstyle_util.h33 , photoHeight(60) in xfaceSettings()
39 int photoHeight; member
H A Dgrantleeheaderformatter.cpp472 headerObject.insert(QStringLiteral("photoheight"), xface.photoHeight); in format()
/dports/converters/wkhtmltopdf/qt-5db36ec/demos/declarative/flickr/qml/flickr/mobile/
H A DGridDelegate.qml51 imageDetails.photoHeight = photoHeight;
H A DImageDetails.qml52 property int photoHeight
84 …xt.ElideRight; text: "Size: " + container.photoWidth + 'x' + container.photoHeight; width: parent.…
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/ui/chat/attach/
H A Dattach_album_thumbnail.h35 int photoHeight() const;
H A Dattach_album_preview.cpp117 return thumb->photoHeight(); in prepareThumbs()
144 ? thumb->photoHeight() in findThumb()
307 const auto bottom = top + thumb->photoHeight(); in paintPhotos()
H A Dattach_album_thumbnail.cpp177 int AlbumThumbnail::photoHeight() const { in photoHeight() function in Ui::AlbumThumbnail
/dports/deskutils/kdepim-addons/kdepim-addons-21.12.3/plugins/messageviewerheaderplugins/fancyheaderstyleplugin/
H A Dfancyheaderstyle.cpp81 …\" width=\"%2\" height=\"%3\"/>").arg(xface.photoURL).arg(xface.photoWidth).arg(xface.photoHeight); in format()
/dports/converters/wkhtmltopdf/qt-5db36ec/demos/declarative/flickr/qml/flickr/common/
H A DRssModel.qml62 XmlRole { name: "photoHeight"; query: "media:content/@height/string()" }
/dports/graphics/digikam/digikam-7.4.0/core/dplugins/generic/tools/printcreator/wizard/
H A Dadvprintphotopage.cpp887 int photoHeight = (pageHeight - (MARGIN * 2) - ((rows - 1) * GAP)) / rows; in createPhotoGrid() local
892 y += (photoHeight + GAP)) in createPhotoGrid()
900 p->m_layouts.append(new QRect(x, y, photoWidth, photoHeight)); in createPhotoGrid()
901 iconpreview->fillRect(x, y, photoWidth, photoHeight, Qt::color1); in createPhotoGrid()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/SourceFiles/window/themes/
H A Dwindow_theme_preview.cpp133 int photoHeight = 0; member
297 bubble.photoHeight = style::ConvertScale(bubble.photo.height() / 2); in addPhotoBubble()
883 …auto image = bubble.photo.scaled(bubble.photoWidth * cIntRetinaFactor(), bubble.photoHeight * cInt… in paintBubble()
885 _p->drawImage(x, y - bubble.photoHeight, image); in paintBubble()
886 _historyBottom -= bubble.photoHeight; in paintBubble()
/dports/graphics/kipi-plugins/kipi-plugins-21.12.3/printimages/wizard/
H A Dwizard.cpp366 int photoHeight = (pageHeight - (MARGIN * 2) - ((rows - 1) * GAP)) / rows; in createPhotoGrid() local
369 for (int y = MARGIN; row < rows && y < pageHeight - MARGIN; y += photoHeight + GAP) in createPhotoGrid()
375 p->layouts.append(new QRect(x, y, photoWidth, photoHeight)); in createPhotoGrid()
376 iconpreview->fillRect(x, y, photoWidth, photoHeight, Qt::color1); in createPhotoGrid()
/dports/cad/sweethome3d/SweetHome3D-6.6.4-src/src/com/eteks/sweethome3d/io/
H A DHomeXMLHandler.java912 Integer photoHeight = parseOptionalInteger(attributes, "photoHeight"); in setEnvironmentAttributes() local
913 if (photoHeight != null) { in setEnvironmentAttributes()
914 environment.setPhotoHeight(photoHeight); in setEnvironmentAttributes()