Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  nsSize.h

  Sprache: C
 

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#ifndef NSSIZE_H
#define NSSIZE_H

#include "nsCoord.h"
#include "mozilla/gfx/BaseSize.h"
#include "mozilla/gfx/Point.h"

// Maximum allowable size
inline constexpr nscoord NS_MAXSIZE = nscoord_MAX;

typedef mozilla::gfx::IntSize nsIntSize;

struct nsSize : public mozilla::gfx::BaseSize<nscoord, nsSize> {
  typedef mozilla::gfx::BaseSize<nscoord, nsSize> Super;

  constexpr nsSize() = default;
  constexpr nsSize(nscoord aWidth, nscoord aHeight) : Super(aWidth, aHeight) {}

  mozilla::gfx::IntSize ScaleToNearestPixels(float aXScale, float aYScale,
                                             nscoord aAppUnitsPerPixel) const {
    return {NSToIntRoundUp(NSAppUnitsToDoublePixels(width, aAppUnitsPerPixel) *
                           aXScale),
            NSToIntRoundUp(NSAppUnitsToDoublePixels(height, aAppUnitsPerPixel) *
                           aYScale)};
  }

  mozilla::gfx::IntSize ToNearestPixels(nscoord aAppUnitsPerPixel) const {
    return ScaleToNearestPixels(1.0f, 1.0f, aAppUnitsPerPixel);
  }

  /**
   * Return this size scaled to a different appunits per pixel (APP) ratio.
   * @param aFromAPP the APP to scale from
   * @param aToAPP the APP to scale to
   */

  [[nodiscard]] nsSize ScaleToOtherAppUnits(int32_t aFromAPP,
                                            int32_t aToAPP) const {
    if (aFromAPP != aToAPP) {
      nsSize size;
      size.width = NSToCoordRound(NSCoordScale(width, aFromAPP, aToAPP));
      size.height = NSToCoordRound(NSCoordScale(height, aFromAPP, aToAPP));
      return size;
    }
    return *this;
  }
};

inline nsSize IntSizeToAppUnits(mozilla::gfx::IntSize aSize,
                                nscoord aAppUnitsPerPixel) {
  return nsSize(NSIntPixelsToAppUnits(aSize.width, aAppUnitsPerPixel),
                NSIntPixelsToAppUnits(aSize.height, aAppUnitsPerPixel));
}

#endif /* NSSIZE_H */

Messung V0.5 in Prozent
C=95 H=95 G=94

¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet am  2026-08-26) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002