File tree Expand file tree Collapse file tree
Keyboards/LanguageKeyboards/Danish Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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( ) { }
You can’t perform that action at this time.
0 commit comments