-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
692 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
/out/ | ||
|
||
# Plugin Development | ||
idear.zip | ||
idiolect.zip | ||
|
||
### Gradle template | ||
.gradle | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
rootProject.name = "idear" | ||
rootProject.name = "idiolect" | ||
|
||
includeBuild("jAdapterForNativeTTS") |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...ear/actions/ExecuteActionByCommandText.kt → ...ect/actions/ExecuteActionByCommandText.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
...ctions/ExecuteActionFromPredefinedText.kt → ...ctions/ExecuteActionFromPredefinedText.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...dear/actions/ExecuteVoiceCommandAction.kt → ...lect/actions/ExecuteVoiceCommandAction.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package org.openasr.idiolect.actions | ||
|
||
import com.intellij.openapi.actionSystem.AnAction | ||
import org.openasr.idiolect.ide.IdeService.invokeAction | ||
|
||
abstract class IdiolectAction : AnAction() { | ||
operator fun invoke() = invokeAction(this) | ||
} |
16 changes: 8 additions & 8 deletions
16
.../org/openasr/idear/actions/SpeechEvent.kt → ...g/openasr/idiolect/actions/SpeechEvent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package org.openasr.idear.actions | ||
|
||
import org.openasr.idear.nlp.NlpRequest | ||
import java.awt.Component | ||
import java.awt.event.KeyEvent | ||
|
||
class SpeechEvent(source: Component, id: Int, time: Long, val nlpRequest: NlpRequest) | ||
: KeyEvent(source, id, time, 0, 0, 's', 0) | ||
package org.openasr.idiolect.actions | ||
|
||
import org.openasr.idiolect.nlp.NlpRequest | ||
import java.awt.Component | ||
import java.awt.event.KeyEvent | ||
|
||
class SpeechEvent(source: Component, id: Int, time: Long, val nlpRequest: NlpRequest) | ||
: KeyEvent(source, id, time, 0, 0, 's', 0) |
10 changes: 5 additions & 5 deletions
10
...g/openasr/idear/actions/WhereAmIAction.kt → ...penasr/idiolect/actions/WhereAmIAction.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ear/actions/recognition/ActionCallInfo.kt → ...ect/actions/recognition/ActionCallInfo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...r/actions/recognition/ActionRecognizer.kt → ...t/actions/recognition/ActionRecognizer.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.