-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
README.references.txt
219 lines (94 loc) · 4.17 KB
/
README.references.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#<script>
Translations
============
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Internationalization
Notifier
https://stackoverflow.com/questions/52935526/kstatusnotifieritem-instantiation-crashes-qt
kstatusnotifieritem.h => knotifications-devel
Installers
Bash:
https://www.matteomattei.com/create-self-contained-installer-in-bash-that-extracts-archives-and-perform-actitions/
Windows:
The good old Nullsoft:
https://sourceforge.net/projects/nsis/
Assets uploader:
https://github.com/tcnksm/ghr
Windows
=========================================
c# remove 3rd party application from taskbar
(first answer)
https://stackoverflow.com/questions/10514882/c-sharp-remove-3rd-party-application-from-taskbar
Close window
https://docs.microsoft.com/en-us/windows/win32/learnwin32/closing-the-window
Block close button
https://devblogs.microsoft.com/oldnewthing/20100604-00/?p=13803
Get processes
(EnumProcesses function)
https://www.qtcentre.org/threads/46145-Get-All-Running-Process-Win32
Get (Pid) and PPid
https://stackoverflow.com/questions/185254/how-can-a-win32-process-get-the-pid-of-its-parent
https://stackoverflow.com/questions/18401572/c-how-to-fetch-parent-process-id
https://www.codeproject.com/Articles/9893/Get-Parent-Process-PID
X11
==========================================
Get window ID from pid
https://unix.stackexchange.com/questions/321079/how-to-get-window-id-from-process-id
xdotool search --pid [pid]
https://stackoverflow.com/questions/20580897/get-x-window-id-from-process-in-bash
wmctrl -lp
xprop
https://askubuntu.com/questions/646346/xfce-hiding-an-application-from-the-taskbar
wmctrl -i -r xxxx -b add,skip_taskbar
wmctrl -i -r xxxx -b remove,skip_taskbar
xprop -id xxxxx | grep "CLASS"
wmctrl -x -r name.name -b add,skip_taskbar
wmctrl -x -r name.name -b remove,skip_taskbar
Get processes (parent pid, pid and arguments)
ps -eo ppid,pid,args
qint64 QCoreApplication::applicationPid() to get systrayx pid -> parent pid -> tb window.
ps -p [PID] -o ppid
Bash
xwininfo -tree -root
How to get the list of open windows from xserver
https://stackoverflow.com/questions/252906/how-to-get-the-list-of-open-windows-from-xserver
-> XQueryTree Xlib
https://tronche.com/gui/x/xlib/window-information/XQueryTree.html
https://stackoverflow.com/questions/11594184/getting-a-list-of-window-wids-in-qt
How to detect window state in linux?
https://stackoverflow.com/questions/37003959/how-to-detect-window-state-in-linux
Taskbar hide
https://stackoverflow.com/questions/41622735/hide-window-from-linux-taskbar
minimize fullscreen Xlib OpenGL Window
https://stackoverflow.com/questions/6381098/minimize-fullscreen-xlib-opengl-window
Close windows
https://stackoverflow.com/questions/41202622/xlib-soft-closing-a-window
Intercept close event X11
https://stackoverflow.com/questions/1157364/intercept-wm-delete-window-on-x11
Allowed actions
https://stackoverflow.com/questions/28495586/x11-how-to-set-net-wm-allowed-actions
Qt X11
https://doc.qt.io/qt-5/qx11info.html
Obesolete X11 container qt4
https://stackoverflow.com/questions/39515384/qx11embedcontainer-alternative-in-qt5
Example container
https://stackoverflow.com/questions/1102658/qx11embedwidget-and-qx11embedcontainer
==========================================
Arguments for <script>
https://stackoverflow.com/questions/5292372/how-to-pass-parameters-to-a-script-tag
Loading css using <script>
https://stackoverflow.com/questions/574944/how-to-load-up-css-files-using-javascript
Input <input>
https://www.w3schools.com/tags/tag_input.asp
Input types
https://www.w3schools.com/tags/att_input_type.asp
Tree view
https://www.w3schools.com/howto/howto_js_treeview.asp
Nested table
https://codepen.io/st-iv/pen/xxbRxEj
Tree table
https://stackoverflow.com/questions/5636375/how-to-create-a-collapsing-tree-table-in-html-css-js
http://maxdesign.com.au/articles/tree-table/
Image to Base64 conversion
https://stackoverflow.com/questions/6150289/how-to-convert-image-into-base64-string-using-javascript
Generate tree list from array
https://stackoverflow.com/questions/57344694/create-a-tree-from-a-list-of-strings-containing-paths-of-files-javascript