12345678910111213141516171819202122 |
- //
- // KMBOTAOutlineItem.swift
- // PDF Reader Pro
- //
- // Created by lizhe on 2023/4/2.
- //
- import Cocoa
- class KMBOTAOutlineItem: NSObject {
- var toIndex: Int = -1
- var outline: CPDFOutline = CPDFOutline()
- var label: String = ""
- var destination: CPDFDestination?
- var parent: KMBOTAOutlineItem?
- var children: [KMBOTAOutlineItem] = []
- var select: Bool = false
- var hover: Bool = false
- var isItemExpanded: Bool = false
-
- var searchChildren: [KMBOTAOutlineItem] = []
- }
|