stayontop

Creating a transparent overlay with qt

穿精又带淫゛_ 提交于 2020-02-12 16:44:39
问题 I've been learning python recently and now I wanted to (try to) create my first real application, a subtitle player for Linux. So far I've been using the Greenfish subtitle player, which is aimed at Windows users and not properly working in Linux. I wanted to create the application in qt, since I discovered that transparent windows are not possible in tkinter, but if anybody knows a better framework please suggest! Now before starting I've been researching the web for several hours to

How Can I Keep the FindDialog from Staying on Top (Delphi)?

一笑奈何 提交于 2020-01-12 20:54:33
问题 In Delphi 2009, I do a simple: FindDialog.Execute; The FindDialog window stays on top of my program's main window as it should. However, if I open another window from some other program over my own program's window, the FindDialog window remains on top of the other window. If I try this with a FindDialog from another program (e.g. Notepad), this does not happen. Opening another program's window over Notepad and its FindDialog will cover both the Notepad and FindDialog windows. This seems to

Modal forms hidden by fsStayOnTop forms

六眼飞鱼酱① 提交于 2019-12-12 18:16:09
问题 I have a form (TBigForm in the example below) which allows to manipulate some complex data and needs additional information to be shown. I put this info in a fsStayOnTop form (OnTopForm in the example) to ensure it's always visible but can be moved out of the way if necessary. Now when some user action in TBigForm shows a modal form this often gets hidden behind OnTopForm which makes the app look frozen. How can I avoid this? (Searching yields many, many hits but I wasn't able to distill a

Delphi TColorDialog Opens behind a stayOnTop form

倾然丶 夕夏残阳落幕 提交于 2019-12-11 06:04:09
问题 I have a main form (form1) that calls form2 which is a stayontop form. form2 calls a modal form (form3) which is also a stayontop form. when form3 modal form calls the colordialog, the color dialog opens behind form3. What to set to open color dialog in front of form3? I'm using D2009 thanks 回答1: Delphi (around D2007) introduced an overloaded Execute methods for all of the standard dialogs that accept a parent window handle as a parameter. Change your call to display the dialog: if

Controls on top, like TPanel can do?

纵饮孤独 提交于 2019-12-08 10:17:50
问题 My program is doing a time consuming task, and I would like to display a TImage in the middle of the application window, but it will not stay on top - my VST is always on top. However, when I use a TPanel, it stays on top? How can I make my TImage do that? In fact, a solution that applies to all controls would be splendid :) Thanks! 回答1: You need a windowed control (that is, a control with a window handle, or a "proper" control) to display your message, because a non-windowed control cannot

PyQt4 : How can i toggle the “Stay On Top” behavior?

戏子无情 提交于 2019-12-05 01:40:35
问题 I want to create an app, where the user will decide it the main window will stay always on top of the other apps. In PyQt4 it is easy to create a window that will stay always on top. This is covered here : PyQt: Always on top What I want to have a widget (menu item, checkbox etc) that will toggle this behavior on or off. So far i haven't found a way to reset the original behavior. thank you UPDATE After the suggestion of İsmail 'cartman' Dönmez, I searched a bit more and I found an

How Can I Keep the FindDialog from Staying on Top (Delphi)?

一个人想着一个人 提交于 2019-12-04 07:36:09
In Delphi 2009, I do a simple: FindDialog.Execute; The FindDialog window stays on top of my program's main window as it should. However, if I open another window from some other program over my own program's window, the FindDialog window remains on top of the other window. If I try this with a FindDialog from another program (e.g. Notepad), this does not happen. Opening another program's window over Notepad and its FindDialog will cover both the Notepad and FindDialog windows. This seems to be the correct and expected behavior. Is this something I'm doing wrong or is this a problem with the

PyQt4 : How can i toggle the “Stay On Top” behavior?

空扰寡人 提交于 2019-12-03 20:07:31
I want to create an app, where the user will decide it the main window will stay always on top of the other apps. In PyQt4 it is easy to create a window that will stay always on top. This is covered here : PyQt: Always on top What I want to have a widget (menu item, checkbox etc) that will toggle this behavior on or off. So far i haven't found a way to reset the original behavior. thank you UPDATE After the suggestion of İsmail 'cartman' Dönmez, I searched a bit more and I found an implementation of the WindowFlags example in PyQt4. It can be found here This should disable it: window

Bring VB.Net window on top of all windows

淺唱寂寞╮ 提交于 2019-11-28 01:39:21
I have a window which should stay on top of Power point slide shows. So it should be on top of all the windows. I did this easily using VB 6 using Lib "user32", but it seems to be difficut with VB.net. Me.TopMost = True This does not seem to work as it works only within the program. Private Declare Function BringWindowToTop Lib "user32" Alias "BringWindowToTop" (ByVal hwnd As Long) As Long Private Sub frmTmr_Activated(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Activated BringWindowToTop(Me.Handle) End Sub This also gives a error! Any help is greatly appreciated! Thanks in

Bring VB.Net window on top of all windows

こ雲淡風輕ζ 提交于 2019-11-27 04:48:57
问题 I have a window which should stay on top of Power point slide shows. So it should be on top of all the windows. I did this easily using VB 6 using Lib "user32", but it seems to be difficut with VB.net. Me.TopMost = True This does not seem to work as it works only within the program. Private Declare Function BringWindowToTop Lib "user32" Alias "BringWindowToTop" (ByVal hwnd As Long) As Long Private Sub frmTmr_Activated(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Activated