libui: Add copyright/author text

This commit is contained in:
apio 2023-08-14 12:34:27 +02:00
parent 561d737f6c
commit b614fa04de
Signed by: apio
GPG Key ID: B8A7D06E42258954
10 changed files with 90 additions and 0 deletions

View File

@ -1,3 +1,12 @@
/**
* @file Canvas.h
* @author apio (cloudapio.eu)
* @brief Drawable surfaces.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
#include <luna/Result.h> #include <luna/Result.h>
#include <luna/Types.h> #include <luna/Types.h>

View File

@ -1,3 +1,12 @@
/**
* @file Color.h
* @author apio (cloudapio.eu)
* @brief RGBA colors.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
#include <luna/Types.h> #include <luna/Types.h>

View File

@ -1,3 +1,12 @@
/**
* @file Font.h
* @author apio (cloudapio.eu)
* @brief PSF font loading and rendering.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
#include <luna/Buffer.h> #include <luna/Buffer.h>
#include <luna/SharedPtr.h> #include <luna/SharedPtr.h>

View File

@ -1,3 +1,12 @@
/**
* @file Image.h
* @author apio (cloudapio.eu)
* @brief TGA image loading and rendering.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
#include <luna/Buffer.h> #include <luna/Buffer.h>
#include <luna/SharedPtr.h> #include <luna/SharedPtr.h>

View File

@ -1,3 +1,12 @@
/**
* @file Point.h
* @author apio (cloudapio.eu)
* @brief 2D space points.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
namespace ui namespace ui

View File

@ -1,3 +1,12 @@
/**
* @file Rect.h
* @author apio (cloudapio.eu)
* @brief A simple 2D rectangle representation.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#pragma once #pragma once
#include <ui/Point.h> #include <ui/Point.h>

View File

@ -1,3 +1,12 @@
/**
* @file Canvas.cpp
* @author apio (cloudapio.eu)
* @brief Drawable surfaces.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#include <ui/Canvas.h> #include <ui/Canvas.h>
namespace ui namespace ui

View File

@ -1,3 +1,12 @@
/**
* @file Font.cpp
* @author apio (cloudapio.eu)
* @brief PSF font loading and rendering.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#include <luna/String.h> #include <luna/String.h>
#include <os/File.h> #include <os/File.h>
#include <ui/Font.h> #include <ui/Font.h>

View File

@ -1,3 +1,12 @@
/**
* @file Image.cpp
* @author apio (cloudapio.eu)
* @brief TGA image loading and rendering.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#include <os/File.h> #include <os/File.h>
#include <ui/Image.h> #include <ui/Image.h>

View File

@ -1,3 +1,12 @@
/**
* @file Rect.cpp
* @author apio (cloudapio.eu)
* @brief A simple 2D rectangle representation.
*
* @copyright Copyright (c) 2023, the Luna authors.
*
*/
#include <ui/Rect.h> #include <ui/Rect.h>
namespace ui namespace ui