/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_TOOLS_FRACT_HXX #define INCLUDED_TOOLS_FRACT_HXX #include #include #include #include #include class SvStream; class SAL_WARN_UNUSED TOOLS_DLLPUBLIC Fraction final { /// these two fields form a boost::rational, but I didn't want to put more boost headers into the global space sal_Int32 mnNumerator = 0; sal_Int32 mnDenominator = 1; bool mbValid = true; public: Fraction() = default; Fraction( const Fraction & rFrac ) = default; Fraction( Fraction && rFrac ) = default; explicit Fraction( double dVal ); Fraction( double nNum, double nDen ); Fraction( sal_Int64 nNum, sal_Int64 nDen ); // just to prevent ambiguity between the sal_Int64 and double constructors template Fraction( T1 nNum, T2 nDen, typename std::enable_if::value && std::is_integral::value, int>::type = 0) : Fraction( sal_Int64(nNum), sal_Int64(nDen) ) {} bool IsValid() const { return mbValid; } sal_Int32 GetNumerator() const; sal_Int32 GetDenominator() const; explicit operator sal_Int32() const; #if SAL_TYPES_SIZEOFPOINTER == 8 explicit operator ::tools::Long() const { return operator sal_Int32(); } #endif explicit operator double() const; Fraction& operator=( const Fraction& rfrFrac ) = default; Fraction& operator=( Fraction&& rfrFrac ) = default; Fraction& operator=( double v ) { return operator=(Fraction(v)); } Fraction& operator+=( const Fraction& rfrFrac ); Fraction& operator-=( const Fraction& rfrFrac ); Fraction& operator*=( const Fraction& rfrFrac ); Fraction& operator/=( const Fraction& rfrFrac ); Fraction& operator+=( double v ) { return operator+=(Fraction(v)); } Fraction& operator-=( double v ) { return operator-=(Fraction(v)); } Fraction& operator*=( double v ) { return operator*=(Fraction(v)); } Fraction& operator/=( double v ) { return operator/=(Fraction(v)); } void ReduceInaccurate( unsigned nSignificantBits ); // Compute value usable as hash. size_t GetHashValue() const; TOOLS_DLLPUBLIC friend Fraction operator+( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend Fraction operator-( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend Fraction operator*( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend Fraction operator/( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend bool operator==( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend bool operator!=( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend bool operator< ( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend bool operator> ( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend bool operator<=( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC friend bool operator>=( const Fraction& rVal1, const Fraction& rVal2 ); }; TOOLS_DLLPUBLIC Fraction operator+( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC Fraction operator-( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC Fraction operator*( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC Fraction operator/( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC bool operator !=( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC bool operator <=( const Fraction& rVal1, const Fraction& rVal2 ); TOOLS_DLLPUBLIC bool operator >=( const Fraction& rVal1, const Fraction& rVal2 ); inline Fraction operator+( double v1, const Fraction& rVal2 ) { return Fraction(v1) + rVal2; } inline Fraction operator-( double v1, const Fraction& rVal2 ) { return Fraction(v1) - rVal2; } inline Fraction operator*( double v1, const Fraction& rVal2 ) { return Fraction(v1) * rVal2; } inline Fraction operator/( double v1, const Fraction& rVal2 ) { return Fraction(v1) / rVal2; } inline Fraction operator+( const Fraction& rVal1, double v2 ) { return rVal1 + Fraction(v2); } inline Fraction operator-( const Fraction& rVal1, double v2 ) { return rVal1 - Fraction(v2); } inline Fraction operator*( const Fraction& rVal1, double v2 ) { return rVal1 * Fraction(v2); } inline Fraction operator/( const Fraction& rVal1, double v2 ) { return rVal1 / Fraction(v2); } template inline std::basic_ostream & operator <<( std::basic_ostream & rStream, const Fraction& rFraction) { rStream << "(" << rFraction.GetNumerator() << "/" << rFraction.GetDenominator() << ")"; return rStream; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ alue='distro/lhm/libreoffice-4-1-6+backports'>distro/lhm/libreoffice-4-1-6+backports LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-03-31Use javax.xml.transform instead of reflection to write a DocumentStephan Bergmann
2020-08-31Fix typos in codeAndrea Gelmini
2020-08-19Fix typosAndrea Gelmini
2019-11-08Respect DisableMacrosExecution option in javascript editorSamuel Mehrbrodt
2019-11-08Respect DisableMacrosExecution option in beanshell editorSamuel Mehrbrodt
2019-09-29Fix typosAndrea Gelmini
2019-09-06Fixing "...."Andrea Gelmini
2019-08-31Fix typosAndrea Gelmini
2019-08-12Fix typosAndrea Gelmini
2019-08-08Related tdf#116767: Call URLClassLoader.closeStephan Bergmann
2019-08-08Remove unused NoSuitableClassLoaderExceptionStephan Bergmann
2019-08-08Remove odd catch of ArrayStoreExceptionStephan Bergmann
2019-07-23cid#1448376 SIC: Inner class could be made staticCaolán McNamara
2019-07-20cid#1448526 RANGE: Range checksCaolán McNamara
2019-07-19tdf#123587 Beanshell editor: Show current file name as window titleAndreas Heinisch
2019-07-09tdf#125355 Beanshell Editor: Corrected indentation when Enter is pressedAndreas Heinisch
2019-07-03cid#1448470: perf inefficient map iteratorJulien Nabet
2019-05-21tdf#97635 Added unindentation using shift-tab (mimicked eclipse behavior)Andreas Heinisch
2019-05-20tdf#97635 Added unindentation using shift-tab (mimicked eclipse's behavior)Andreas Heinisch
2019-05-16tdf#97635 Added unindentation using shift-tab (mimicked eclipse behavior)Andreas Heinisch
2019-05-10an uno -> a unoCaolán McNamara
2019-03-27Beanshell: Display full exception messageSamuel Mehrbrodt
2019-03-27Beanshell: Wrap long error messagesSamuel Mehrbrodt
2019-03-27tdf#123586 Set minimum size for beanshell editorkushagrakasliwal1
2019-03-13tdf#123588 Beanshell editor to indicate whether script is savedSainal Shah
2019-02-24tdf#123589 Removing close button from toolbar in Beanshell editorEL-SHREIF
2019-02-18Fix product nameSamuel Mehrbrodt
2018-11-29Rename Mac OS X to official name macOS in comments and documentationBartosz Kosiorek
2018-07-05cid#1437407: create class loader in doPrivilegedStephan Bergmann
2018-06-15Restore binary compatibility for ClassLoaderFactoryStephan Bergmann
2018-04-02use https links for api.libreoffice.org and opengrokdennisroczek
2018-01-27Fix typosAndrea Gelmini
2017-02-23In Java, css.uno.RuntimeException doesn't derive from css.uno.ExceptionStephan Bergmann
2016-10-16tdf#98004 - Enhansment on Editor(Beanshell)nadith
2016-10-03ClassLoader->URLClassLoaderCaolán McNamara
2016-10-01Fix typosAndrea Gelmini
2016-08-19Revert "coverity#1371372 Resource leak on an exceptional path"Caolán McNamara
2016-08-19coverity#1371372 Resource leak on an exceptional pathCaolán McNamara
2016-08-19coverity#1371367 Resource leak on an exceptional pathCaolán McNamara