ExtraKey: rename package name

This commit is contained in:
zt515 2017-12-13 23:39:40 +08:00
parent aae248250b
commit 07d1d44c11
28 changed files with 48 additions and 49 deletions

View File

@ -5,7 +5,7 @@ import io.neoterm.component.codegen.CodeGenComponent
import io.neoterm.component.color.ColorSchemeComponent
import io.neoterm.component.completion.CompletionComponent
import io.neoterm.component.config.ConfigureComponent
import io.neoterm.component.eks.ExtraKeysComponent
import io.neoterm.component.extrakey.ExtraKeysComponent
import io.neoterm.component.font.FontComponent
import io.neoterm.component.pm.PackageComponent
import io.neoterm.component.profile.ProfileComponent

View File

@ -11,7 +11,7 @@ import io.neoterm.frontend.component.NeoComponent
import io.neoterm.frontend.logging.NLog
import io.neoterm.utils.AssetsUtils
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
import io.neoterm.utils.FileUtils
import java.io.File

View File

@ -12,7 +12,7 @@ import io.neoterm.frontend.component.ComponentManager
import io.neoterm.frontend.config.NeoConfigureFile
import io.neoterm.frontend.logging.NLog
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
import java.io.File
/**

View File

@ -2,10 +2,10 @@ package io.neoterm.component.config.loaders
import io.neolang.runtime.type.NeoLangValue
import io.neolang.visitor.ConfigVisitor
import io.neoterm.component.eks.NeoExtraKey
import io.neoterm.component.extrakey.NeoExtraKey
import io.neoterm.frontend.config.NeoConfigureFile
import io.neoterm.frontend.logging.NLog
import io.neoterm.frontend.terminal.eks.button.TextButton
import io.neoterm.frontend.terminal.extrakey.button.TextButton
import java.io.BufferedReader
import java.io.File
import java.io.FileReader

View File

@ -1,4 +1,4 @@
package io.neoterm.component.eks
package io.neoterm.component.extrakey
import android.content.Context
import io.neoterm.App
@ -6,7 +6,7 @@ import io.neoterm.frontend.logging.NLog
import io.neoterm.frontend.config.NeoTermPath
import io.neoterm.frontend.component.NeoComponent
import io.neoterm.utils.AssetsUtils
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
import java.io.File
import java.io.FileFilter

View File

@ -1,13 +1,13 @@
package io.neoterm.component.eks
package io.neoterm.component.extrakey
import io.neolang.visitor.ConfigVisitor
import io.neoterm.component.config.ConfigureComponent
import io.neoterm.frontend.config.NeoConfigureFile
import io.neoterm.frontend.logging.NLog
import io.neoterm.frontend.component.ComponentManager
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.eks.button.IExtraButton
import io.neoterm.frontend.terminal.eks.button.TextButton
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.button.IExtraButton
import io.neoterm.frontend.terminal.extrakey.button.TextButton
import java.io.File
/**

View File

@ -9,7 +9,7 @@ import io.neoterm.frontend.config.NeoTermPath
import io.neoterm.frontend.component.NeoComponent
import io.neoterm.frontend.config.DefaultValues
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
import io.neoterm.utils.AssetsUtils
import java.io.File

View File

@ -2,7 +2,7 @@ package io.neoterm.component.font
import android.graphics.Typeface
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
import java.io.File
/**

View File

@ -3,7 +3,7 @@ package io.neoterm.frontend.session.shell.client
import io.neoterm.backend.TerminalSession
import io.neoterm.frontend.completion.listener.OnAutoCompleteListener
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
/**
* @author kiva

View File

@ -9,7 +9,7 @@ import android.view.View
import android.view.inputmethod.InputMethodManager
import io.neoterm.backend.KeyHandler
import io.neoterm.backend.TerminalSession
import io.neoterm.component.eks.ExtraKeysComponent
import io.neoterm.component.extrakey.ExtraKeysComponent
import io.neoterm.frontend.component.ComponentManager
import io.neoterm.frontend.config.NeoPreference
import io.neoterm.frontend.session.shell.ShellTermSession

View File

@ -1,8 +0,0 @@
package io.neoterm.frontend.terminal.eks.impl
import io.neoterm.frontend.terminal.eks.button.RepeatableButton
/**
* @author kiva
*/
class ArrowButton(arrowText: String) : RepeatableButton(arrowText)

View File

@ -1,4 +1,4 @@
package io.neoterm.frontend.terminal.eks
package io.neoterm.frontend.terminal.extrakey
import android.content.Context
import android.graphics.Typeface
@ -7,15 +7,15 @@ import android.view.*
import android.widget.GridLayout
import android.widget.LinearLayout
import io.neoterm.R
import io.neoterm.component.eks.NeoExtraKey
import io.neoterm.component.extrakey.NeoExtraKey
import io.neoterm.frontend.config.NeoPreference
import io.neoterm.frontend.config.NeoTermPath
import io.neoterm.frontend.session.shell.client.event.ToggleImeEvent
import io.neoterm.frontend.terminal.eks.button.ControlButton
import io.neoterm.frontend.terminal.eks.button.IExtraButton
import io.neoterm.frontend.terminal.eks.button.RepeatableButton
import io.neoterm.frontend.terminal.eks.button.StatedControlButton
import io.neoterm.frontend.terminal.eks.impl.ArrowButton
import io.neoterm.frontend.terminal.extrakey.button.ControlButton
import io.neoterm.frontend.terminal.extrakey.button.IExtraButton
import io.neoterm.frontend.terminal.extrakey.button.RepeatableButton
import io.neoterm.frontend.terminal.extrakey.button.StatedControlButton
import io.neoterm.frontend.terminal.extrakey.impl.ArrowButton
import org.greenrobot.eventbus.EventBus
import java.io.File

View File

@ -1,4 +1,4 @@
package io.neoterm.frontend.terminal.eks.button
package io.neoterm.frontend.terminal.extrakey.button
/**
* @author kiva

View File

@ -1,4 +1,4 @@
package io.neoterm.frontend.terminal.eks.button
package io.neoterm.frontend.terminal.extrakey.button
import android.content.Context
import android.util.AttributeSet
@ -7,7 +7,7 @@ import android.view.View
import android.widget.Button
import io.neoterm.R
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.combine.CombinedSequence
import io.neoterm.frontend.terminal.extrakey.combine.CombinedSequence
/**
* @author kiva

View File

@ -1,4 +1,4 @@
package io.neoterm.frontend.terminal.eks.button
package io.neoterm.frontend.terminal.extrakey.button
import android.content.Context
import android.os.Handler

View File

@ -1,4 +1,4 @@
package io.neoterm.frontend.terminal.eks.button
package io.neoterm.frontend.terminal.extrakey.button
import android.content.Context
import android.util.AttributeSet

View File

@ -1,10 +1,10 @@
package io.neoterm.frontend.terminal.eks.button
package io.neoterm.frontend.terminal.extrakey.button
import android.content.Context
import android.util.AttributeSet
import android.view.View
import android.widget.Button
import io.neoterm.frontend.terminal.eks.combine.CombinedSequence
import io.neoterm.frontend.terminal.extrakey.combine.CombinedSequence
/**
* @author kiva

View File

@ -1,4 +1,4 @@
package io.neoterm.frontend.terminal.eks.combine
package io.neoterm.frontend.terminal.extrakey.combine
/**
* <Ctrl> <Alt> <Delete>

View File

@ -0,0 +1,8 @@
package io.neoterm.frontend.terminal.extrakey.impl
import io.neoterm.frontend.terminal.extrakey.button.RepeatableButton
/**
* @author kiva
*/
class ArrowButton(arrowText: String) : RepeatableButton(arrowText)

View File

@ -12,7 +12,7 @@ import io.neoterm.frontend.session.shell.client.BasicSessionCallback
import io.neoterm.frontend.session.shell.client.BasicViewClient
import io.neoterm.utils.TerminalUtils
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
/**
* @author kiva

View File

@ -16,9 +16,8 @@ import io.neoterm.NeoGLView
import io.neoterm.R
import io.neoterm.component.color.ColorSchemeComponent
import io.neoterm.frontend.component.ComponentManager
import io.neoterm.frontend.logging.NLog
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
import io.neoterm.ui.term.NeoTermActivity
import io.neoterm.utils.TerminalUtils

View File

@ -12,7 +12,7 @@ import io.neoterm.frontend.session.xorg.XParameter
import io.neoterm.frontend.session.xorg.XSession
import io.neoterm.frontend.terminal.TerminalView
import io.neoterm.frontend.terminal.TerminalViewClient
import io.neoterm.frontend.terminal.eks.ExtraKeysView
import io.neoterm.frontend.terminal.extrakey.ExtraKeysView
/**
* @author kiva

View File

@ -27,7 +27,7 @@
android:layout_weight="1.0"
android:background="@color/terminal_background">
<io.neoterm.frontend.terminal.eks.ExtraKeysView
<io.neoterm.frontend.terminal.extrakey.ExtraKeysView
android:id="@+id/custom_extra_keys"
style="?android:buttonBarStyle"
android:layout_width="match_parent"

View File

@ -97,7 +97,7 @@
android:layout_below="@id/custom_toolbar"
android:layout_margin="@dimen/preview_layout_margin">
<io.neoterm.frontend.terminal.eks.ExtraKeysView
<io.neoterm.frontend.terminal.extrakey.ExtraKeysView
android:id="@+id/custom_extra_keys"
style="?android:buttonBarStyle"
android:layout_width="match_parent"

View File

@ -3,7 +3,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<io.neoterm.frontend.terminal.eks.ExtraKeysView
<io.neoterm.frontend.terminal.extrakey.ExtraKeysView
android:id="@+id/extra_keys"
style="?android:buttonBarStyle"
android:layout_width="match_parent"

View File

@ -1,7 +1,7 @@
package io.neoterm
import io.neoterm.frontend.terminal.eks.button.IExtraButton
import io.neoterm.frontend.terminal.eks.combine.CombinedSequence
import io.neoterm.frontend.terminal.extrakey.button.IExtraButton
import io.neoterm.frontend.terminal.extrakey.combine.CombinedSequence
import org.junit.Test
/**

View File

@ -1,7 +1,7 @@
package io.neoterm
import io.neoterm.component.color.NeoColorScheme
import io.neoterm.component.eks.NeoExtraKey
import io.neoterm.component.extrakey.NeoExtraKey
import org.junit.Test
import java.io.File

View File

@ -4,7 +4,7 @@ import io.neoterm.component.codegen.CodeGenComponent
import io.neoterm.component.color.ColorSchemeComponent
import io.neoterm.component.completion.CompletionComponent
import io.neoterm.component.config.ConfigureComponent
import io.neoterm.component.eks.ExtraKeysComponent
import io.neoterm.component.extrakey.ExtraKeysComponent
import io.neoterm.component.font.FontComponent
import io.neoterm.component.pm.PackageComponent
import io.neoterm.component.script.UserScriptComponent