Skip to content

Commit

Permalink
Removed unnecessary empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
texus committed Jun 16, 2024
1 parent 4a5583a commit d44bb52
Show file tree
Hide file tree
Showing 303 changed files with 0 additions and 3,394 deletions.
11 changes: 0 additions & 11 deletions include/TGUI/AbsoluteOrRelativeValue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


#ifndef TGUI_ABSOLUTE_OR_RELATIVE_VALUE_HPP
#define TGUI_ABSOLUTE_OR_RELATIVE_VALUE_HPP

Expand Down Expand Up @@ -51,7 +50,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
constexpr AbsoluteOrRelativeValue() = default;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Constructor to set constant
///
Expand All @@ -64,7 +62,6 @@ TGUI_MODULE_EXPORT namespace tgui
{
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Construct the value from a string that either contains a value or a percentage
///
Expand All @@ -75,7 +72,6 @@ TGUI_MODULE_EXPORT namespace tgui
{
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Construct the value from a string that either contains a value or a percentage
///
Expand All @@ -95,7 +91,6 @@ TGUI_MODULE_EXPORT namespace tgui
}
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the value
///
Expand All @@ -106,7 +101,6 @@ TGUI_MODULE_EXPORT namespace tgui
return m_value;
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the stored ratio
///
Expand All @@ -117,7 +111,6 @@ TGUI_MODULE_EXPORT namespace tgui
return m_ratio;
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns whether the value is constant or a ratio
///
Expand All @@ -128,7 +121,6 @@ TGUI_MODULE_EXPORT namespace tgui
return m_constant;
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @internal
/// @brief Update the size to which the value depends on if the value is relative
Expand All @@ -144,7 +136,6 @@ TGUI_MODULE_EXPORT namespace tgui
}
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @internal
/// @brief Converts the value to a string
Expand All @@ -159,7 +150,6 @@ TGUI_MODULE_EXPORT namespace tgui
return String::fromNumber(m_ratio * 100) + '%';
}


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
protected:

Expand All @@ -169,7 +159,6 @@ TGUI_MODULE_EXPORT namespace tgui
float m_parentValue = 0;
};


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Helper class to create an AbsoluteOrRelativeValue object containing a relative value without using a string
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
3 changes: 0 additions & 3 deletions include/TGUI/Animation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


#ifndef TGUI_ANIMATION_HPP
#define TGUI_ANIMATION_HPP

Expand Down Expand Up @@ -58,7 +57,6 @@ TGUI_MODULE_EXPORT namespace tgui
SlideFromBottom = SlideToTop //!< Slide from bottom to show or to the top to hide
};


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Type of animation
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand All @@ -69,7 +67,6 @@ TGUI_MODULE_EXPORT namespace tgui
Opacity, //!< Opacity is being changed
};


namespace priv
{
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
25 changes: 0 additions & 25 deletions include/TGUI/Backend/Font/BackendFont.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


#ifndef TGUI_BACKEND_FONT_HPP
#define TGUI_BACKEND_FONT_HPP

Expand Down Expand Up @@ -51,37 +50,31 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
BackendFont();


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Copy constructor
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
BackendFont(const BackendFont&);


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Move constructor
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
BackendFont(BackendFont&& other) noexcept;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Virtual destructor
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
virtual ~BackendFont();


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Copy assignment operator
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
BackendFont& operator=(const BackendFont& other);


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Move assignment operator
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
BackendFont& operator=(BackendFont&& other) noexcept;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Loads a font from a file
///
Expand All @@ -91,7 +84,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
virtual bool loadFromFile(const String& filename);


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Loads a font from memory
///
Expand All @@ -102,7 +94,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
virtual bool loadFromMemory(std::unique_ptr<std::uint8_t[]> data, std::size_t sizeInBytes) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Loads a font from memory
///
Expand All @@ -115,7 +106,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool loadFromMemory(const void* data, std::size_t sizeInBytes);


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns whether a font contains a certain glyph
///
Expand All @@ -125,7 +115,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual bool hasGlyph(char32_t codePoint) const = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Retrieve a glyph of the font
///
Expand All @@ -141,7 +130,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual FontGlyph getGlyph(char32_t codePoint, unsigned int characterSize, bool bold, float outlineThickness = 0) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the kerning offset of two glyphs
///
Expand All @@ -158,7 +146,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual float getKerning(char32_t first, char32_t second, unsigned int characterSize, bool bold) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the line spacing
///
Expand All @@ -170,7 +157,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual float getLineSpacing(unsigned int characterSize) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the height required to render a line of text
///
Expand All @@ -180,7 +166,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual float getFontHeight(unsigned int characterSize) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the maximum height of a glyph above the baseline
///
Expand All @@ -190,7 +175,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual float getAscent(unsigned int characterSize) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the maximum height of a glyph below the baseline
///
Expand All @@ -200,7 +184,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual float getDescent(unsigned int characterSize) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Get the position of the underline
///
Expand All @@ -212,7 +195,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual float getUnderlinePosition(unsigned int characterSize) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Get the thickness of the underline
///
Expand All @@ -224,7 +206,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual float getUnderlineThickness(unsigned int characterSize) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the texture that is used to store glyphs of the given character size
///
Expand All @@ -235,7 +216,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual std::shared_ptr<BackendTexture> getTexture(unsigned int characterSize, unsigned int& textureVersion) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the size of the texture that is used to store glyphs of the given character size
///
Expand All @@ -245,7 +225,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual Vector2u getTextureSize(unsigned int characterSize) = 0;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Enable or disable the smooth filter
///
Expand All @@ -257,7 +236,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
virtual void setSmooth(bool smooth);


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Tell whether the smooth filter is enabled or not
///
Expand All @@ -267,7 +245,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD bool isSmooth() const;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @internal
/// @brief Sets the scale at which to render each glyph, to allow rendering text at a higher resolution
Expand All @@ -277,7 +254,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
virtual void setFontScale(float scale);


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Returns the scale at which glyphs are rendered
///
Expand All @@ -286,7 +262,6 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD float getFontScale() const;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
protected:

Expand Down
3 changes: 0 additions & 3 deletions include/TGUI/Backend/Font/BackendFontFactory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
//
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////


#ifndef TGUI_FONT_FACTORY_HPP
#define TGUI_FONT_FACTORY_HPP

Expand All @@ -48,15 +47,13 @@ TGUI_MODULE_EXPORT namespace tgui
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
virtual ~BackendFontFactory() = default;


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Creates a new empty font object
/// @return Shared pointer to a new font object
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
TGUI_NODISCARD virtual std::shared_ptr<BackendFont> createFont() = 0;
};


/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// @brief Class that creates font objects of a given type
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Expand Down
Loading

0 comments on commit d44bb52

Please sign in to comment.