From fa3bba6792cdef4a11554d9538aa39e7fdb9b04c Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 9 Aug 2024 14:51:52 -0600 Subject: ignore combined swift file --- .gitignore | 9 +++++++++ Sources/SwiftLVGL/Core/LVGLObject.swift | 8 ++++++++ Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift | 8 ++++++++ Sources/SwiftLVGL/Enums/Color.swift | 8 ++++++++ Sources/SwiftLVGL/Enums/LVAlignment.swift | 8 ++++++++ Sources/SwiftLVGL/Enums/LVEventCode.swift | 8 ++++++++ Sources/SwiftLVGL/Enums/LVGLDimension.swift | 8 ++++++++ Sources/SwiftLVGL/Utilities/CallbackStore.swift | 8 ++++++++ Sources/SwiftLVGL/Widgets/LVGLButton.swift | 8 ++++++++ Sources/SwiftLVGL/Widgets/LVGLLabel.swift | 8 ++++++++ Sources/SwiftLVGL/Widgets/LVGLSlider.swift | 8 ++++++++ Sources/SwiftLVGL/Widgets/LVGLSpinner.swift | 8 ++++++++ Sources/SwiftLVGL/Widgets/LVGLSwitch.swift | 8 ++++++++ 13 files changed, 105 insertions(+) create mode 100644 .gitignore create mode 100644 Sources/SwiftLVGL/Core/LVGLObject.swift create mode 100644 Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift create mode 100644 Sources/SwiftLVGL/Enums/Color.swift create mode 100644 Sources/SwiftLVGL/Enums/LVAlignment.swift create mode 100644 Sources/SwiftLVGL/Enums/LVEventCode.swift create mode 100644 Sources/SwiftLVGL/Enums/LVGLDimension.swift create mode 100644 Sources/SwiftLVGL/Utilities/CallbackStore.swift create mode 100644 Sources/SwiftLVGL/Widgets/LVGLButton.swift create mode 100644 Sources/SwiftLVGL/Widgets/LVGLLabel.swift create mode 100644 Sources/SwiftLVGL/Widgets/LVGLSlider.swift create mode 100644 Sources/SwiftLVGL/Widgets/LVGLSpinner.swift create mode 100644 Sources/SwiftLVGL/Widgets/LVGLSwitch.swift diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b27cd5d --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +.DS_Store +/.build +/Packages +xcuserdata/ +DerivedData/ +.swiftpm/configuration/registries.json +.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +.netrc +SwiftyLVGL.swift diff --git a/Sources/SwiftLVGL/Core/LVGLObject.swift b/Sources/SwiftLVGL/Core/LVGLObject.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Core/LVGLObject.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift b/Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Core/LVGLObjectProtocol.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Enums/Color.swift b/Sources/SwiftLVGL/Enums/Color.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Enums/Color.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Enums/LVAlignment.swift b/Sources/SwiftLVGL/Enums/LVAlignment.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Enums/LVAlignment.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Enums/LVEventCode.swift b/Sources/SwiftLVGL/Enums/LVEventCode.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Enums/LVEventCode.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Enums/LVGLDimension.swift b/Sources/SwiftLVGL/Enums/LVGLDimension.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Enums/LVGLDimension.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Utilities/CallbackStore.swift b/Sources/SwiftLVGL/Utilities/CallbackStore.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Utilities/CallbackStore.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Widgets/LVGLButton.swift b/Sources/SwiftLVGL/Widgets/LVGLButton.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Widgets/LVGLButton.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Widgets/LVGLLabel.swift b/Sources/SwiftLVGL/Widgets/LVGLLabel.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Widgets/LVGLLabel.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Widgets/LVGLSlider.swift b/Sources/SwiftLVGL/Widgets/LVGLSlider.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Widgets/LVGLSlider.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Widgets/LVGLSpinner.swift b/Sources/SwiftLVGL/Widgets/LVGLSpinner.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Widgets/LVGLSpinner.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation diff --git a/Sources/SwiftLVGL/Widgets/LVGLSwitch.swift b/Sources/SwiftLVGL/Widgets/LVGLSwitch.swift new file mode 100644 index 0000000..a806437 --- /dev/null +++ b/Sources/SwiftLVGL/Widgets/LVGLSwitch.swift @@ -0,0 +1,8 @@ +// +// File.swift +// +// +// Created by Navan Chauhan on 8/9/24. +// + +import Foundation -- cgit v1.2.3