Skip to content

Commit 073c7ff

Browse files
committed
fileheader
1 parent c10d05b commit 073c7ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+370
-3
lines changed

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ fabric.properties
190190

191191
!.idea/codeStyles
192192
!.idea/runConfigurations
193+
!.idea/copyright
193194

194195
### Intellij+iml ###
195196
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
@@ -401,6 +402,4 @@ gradle-app.setting
401402
.idea/aws.xml
402403
.idea/uiDesigner.xml
403404

404-
# End of https://www.toptal.com/developers/gitignore/api/forgegradle,gradle,intellij,intellij+all,intellij+iml,visualstudiocode,java,kotlin,maven,macos,linux,git
405-
406-
.idea
405+
# End of https://www.toptal.com/developers/gitignore/api/forgegradle,gradle,intellij,intellij+all,intellij+iml,visualstudiocode,java,kotlin,maven,macos,linux,git

.idea/copyright/polyui_copyright.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FILEHEADER

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Copyright (C) 2022-2023 Polyfrost and its contributors. All rights reserved.
2+
PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
3+
4+
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.

src/main/kotlin/cc/polyfrost/polyui/PolyUI.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui
211

312
import cc.polyfrost.polyui.component.Drawable

src/main/kotlin/cc/polyfrost/polyui/animate/Animation.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.animate
211

312
import cc.polyfrost.polyui.animate.animations.*

src/main/kotlin/cc/polyfrost/polyui/animate/animations/Animations.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.animate.animations
211

312
import cc.polyfrost.polyui.animate.Animation

src/main/kotlin/cc/polyfrost/polyui/color/Color.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.color
211

312
import cc.polyfrost.polyui.animate.Animation

src/main/kotlin/cc/polyfrost/polyui/component/Component.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.component
211

312
import cc.polyfrost.polyui.animate.Animation

src/main/kotlin/cc/polyfrost/polyui/component/Drawable.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.component
211

312
import cc.polyfrost.polyui.PolyUI

src/main/kotlin/cc/polyfrost/polyui/component/DrawableOp.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.component
211

312
import cc.polyfrost.polyui.animate.Animation

src/main/kotlin/cc/polyfrost/polyui/component/Focusable.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.component
211

312
import cc.polyfrost.polyui.event.FocusedEvent

src/main/kotlin/cc/polyfrost/polyui/component/impl/Block.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.component.impl
211

312
import cc.polyfrost.polyui.component.Component

src/main/kotlin/cc/polyfrost/polyui/component/impl/ImageBlock.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.component.impl
211

312
import cc.polyfrost.polyui.component.Component

src/main/kotlin/cc/polyfrost/polyui/component/impl/Text.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.component.impl
211

312
import cc.polyfrost.polyui.component.Component

src/main/kotlin/cc/polyfrost/polyui/event/ComponentEvent.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.event
211

312
import cc.polyfrost.polyui.component.Component

src/main/kotlin/cc/polyfrost/polyui/event/Event.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.event
211

312
// wow, much empty

src/main/kotlin/cc/polyfrost/polyui/event/EventManager.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.event
211

312
import cc.polyfrost.polyui.PolyUI

src/main/kotlin/cc/polyfrost/polyui/event/FocusedEvent.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.event
211

312
open class FocusedEvent : Event {

src/main/kotlin/cc/polyfrost/polyui/layout/Layout.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.layout
211

312
import cc.polyfrost.polyui.PolyUI

src/main/kotlin/cc/polyfrost/polyui/layout/impl/FlexLayout.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.layout.impl
211

312
import cc.polyfrost.polyui.PolyUI

src/main/kotlin/cc/polyfrost/polyui/layout/impl/PixelLayout.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.layout.impl
211

312
import cc.polyfrost.polyui.component.Drawable

src/main/kotlin/cc/polyfrost/polyui/layout/impl/SwitchingLayout.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.layout.impl
211

312
import cc.polyfrost.polyui.PolyUI

src/main/kotlin/cc/polyfrost/polyui/property/Properties.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.property
211

312
import cc.polyfrost.polyui.color.Color

src/main/kotlin/cc/polyfrost/polyui/property/Settings.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.property
211

312
import cc.polyfrost.polyui.PolyUI

src/main/kotlin/cc/polyfrost/polyui/property/impl/BlockProperties.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.property.impl
211

312
import cc.polyfrost.polyui.animate.Animations

src/main/kotlin/cc/polyfrost/polyui/property/impl/ImageBlockProperties.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.property.impl
211

312
import cc.polyfrost.polyui.color.Color

src/main/kotlin/cc/polyfrost/polyui/property/impl/TextProperties.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.property.impl
211

312
import cc.polyfrost.polyui.color.Color

src/main/kotlin/cc/polyfrost/polyui/renderer/Renderer.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.renderer
211

312
import cc.polyfrost.polyui.color.Color

src/main/kotlin/cc/polyfrost/polyui/renderer/Window.kt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
/*
2+
* This file is part of PolyUI.
3+
* Copyright (C) 2022-2023 Polyfrost and its contributors.
4+
* All rights reserved.
5+
* PolyUI - simple, easy to use and lightweight UI framework https://polyfrost.cc https://github.com/Polyfrost/polui-jvm
6+
*
7+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8+
*/
9+
110
package cc.polyfrost.polyui.renderer
211

312
import cc.polyfrost.polyui.PolyUI

0 commit comments

Comments
 (0)