@@ -8,6 +8,8 @@ import android.view.View
8
8
import android.view.View.OnClickListener
9
9
import android.view.ViewGroup
10
10
import android.widget.ImageView
11
+ import android.widget.PopupWindow
12
+ import android.widget.TextView
11
13
import de.robv.android.xposed.XC_MethodHook.Unhook
12
14
import java.lang.Class
13
15
import org.matrix.chromext.Chrome
@@ -20,6 +22,7 @@ import org.matrix.chromext.utils.*
20
22
object ContextMenuHook : BaseHook() {
21
23
22
24
val erudaMenuId = 31415926
25
+ private var textView: TextView ? = null
23
26
24
27
private fun openEruda (url : String ) {
25
28
if (WebViewHook .isInit) {
@@ -50,6 +53,7 @@ object ContextMenuHook : BaseHook() {
50
53
}
51
54
52
55
private var actionModeFinder: Unhook ? = null
56
+ private var popupWindowFinder: Unhook ? = null
53
57
54
58
private fun hookActionMode (cls : Class <* >) {
55
59
actionModeFinder?.unhook()
@@ -73,9 +77,62 @@ object ContextMenuHook : BaseHook() {
73
77
}
74
78
}
75
79
80
+ private fun hookPopupWindow (cls : Class <* >) {
81
+ popupWindowFinder?.unhook()
82
+ cls.declaredConstructors.first().hookAfter {
83
+ val ctx = it.args[0 ] as Context
84
+ Resource .enrich(ctx)
85
+ val popupWindow = it.thisObject as PopupWindow
86
+ val view = popupWindow.contentView
87
+ if (! (view is ViewGroup && view.getChildAt(0 ) is TextView )) return @hookAfter
88
+ val sampleView = view.getChildAt(0 ) as TextView
89
+ textView = TextView (ctx)
90
+ textView!! .setHorizontallyScrolling(true )
91
+ textView!! .setSingleLine(true )
92
+ textView!! .ellipsize = sampleView.ellipsize
93
+ textView!! .gravity = sampleView.gravity
94
+ textView!! .transformationMethod = sampleView.transformationMethod
95
+ textView!! .layoutParams = sampleView.layoutParams
96
+ textView!! .typeface = sampleView.typeface
97
+ textView!! .setOnClickListener {
98
+ openEruda(Chrome .getUrl()!! )
99
+ popupWindow.dismiss()
100
+ }
101
+ view.addView(textView!! , view.childCount)
102
+ }
103
+ }
104
+
76
105
override fun init () {
77
106
if (Chrome .isSamsung) {
78
107
hookActionMode(Chrome .load(" com.sec.terrace.content.browser.TinActionModeCallback" ))
108
+ } else if (Chrome .isQihoo) {
109
+ val WebViewExtensionClient = Chrome .load(" com.qihoo.webkit.extension.WebViewExtensionClient" )
110
+ popupWindowFinder =
111
+ WebViewExtensionClient .declaredConstructors.first().hookAfter {
112
+ val selectionMenuWrapper = it.thisObject
113
+ val showSelectionMenu =
114
+ findMethodOrNull(selectionMenuWrapper::class .java) { name == " showSelectionMenu" }
115
+ if (showSelectionMenu == null ) return @hookAfter
116
+ val selectionMenu =
117
+ selectionMenuWrapper::class .java.declaredFields.first().get(selectionMenuWrapper)
118
+ val horizontalCustomPopupDialog =
119
+ selectionMenu::class
120
+ .java
121
+ .declaredFields
122
+ .find { it.type.superclass == PopupWindow ::class .java }!!
123
+ .type
124
+ hookPopupWindow(horizontalCustomPopupDialog)
125
+ showSelectionMenu.hookAfter {
126
+ val view = it.args[0 ]
127
+ if (WebViewHook .WebView !! .isAssignableFrom(view::class .java)) Chrome .updateTab(view)
128
+ val url = Chrome .getUrl()!!
129
+ val titleId =
130
+ if (isChromeXtFrontEnd(url)) R .string.main_menu_developer_tools
131
+ else if (isUserScript(url)) R .string.main_menu_install_script
132
+ else R .string.main_menu_eruda_console
133
+ textView?.setText(titleId)
134
+ }
135
+ }
79
136
} else if (Chrome .isMi) {
80
137
val miuiFloatingSelectPopupWindow =
81
138
Chrome .load(" com.miui.org.chromium.content.browser.miui.MiuiFloatingSelectPopupWindow" )
0 commit comments