Skip to content

Commit 4c7eb1c

Browse files
committed
Restore DACommandVariables.swift
1 parent e7ae502 commit 4c7eb1c

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// SPDX-License-Identifier: GPL-3.0-or-later
2+
3+
/**
4+
* Variables associated with commands for the Danish Scribe keyboard.
5+
*/
6+
7+
func daSetConjugationLabels() {
8+
// Reset all form labels prior to assignment.
9+
for k in formLabelsDict.keys {
10+
formLabelsDict[k] = ""
11+
}
12+
}
13+
14+
/// What the conjugation state is for the conjugate feature.
15+
enum DAConjugationState {
16+
case present
17+
}
18+
19+
var daConjugationState: DAConjugationState = .present
20+
21+
/// Sets the title of the command bar when the keyboard is in conjugate mode.
22+
func daGetConjugationTitle() {}
23+
24+
/// Returns the appropriate key in the verbs dictionary to access conjugations.
25+
func daGetConjugationState() {}
26+
27+
/// Action associated with the left view switch button of the conjugation state.
28+
func daConjugationStateLeft() {}
29+
30+
/// Action associated with the right view switch button of the conjugation state.
31+
func daConjugationStateRight() {}

0 commit comments

Comments
 (0)