9,509 questions
Advice
0
votes
1
replies
67
views
Is possible a visual retro for linux?
I'm thinking of creating a retro visual effect for Linux. I was considering making it for Python/QML first, but my idea goes beyond just a floating window on a desktop. I think the best way to ...
Score of 2
1 answer
148 views
Assembly x86_64 code in Windows for creating a window has jittering in the oposite edges of the left and top edges when re-scaling
I think this might be a already solved issue previously, but I still don't understand why this is happening and how to fix this in a clean and satisfactory way.
I am writing a simple, basic GUI window ...
Score of 0
0 answers
101 views
Api used by snipping tool when taking screenshot/screenrecording
I am trying to monitor screenshot events on Windows 10/11 by hooking the API used when a screenshot or screen recording is taken via the Snipping Tool (Win + Shift + S).
While investigating, I found ...
Score of 0
0 answers
121 views
how to render only in top of a window
Basically, I wrote this code, which creates a transparent, click-through overlay on top of any game, the same size and in the same location.
If I minimize the game, it stops rendering, which is ...
Score of 0
1 answer
61 views
C# Maui Secondary window/contentpage opens the same size as MainPage
I programmed a secondary window to open when a button is clicked, set a specific size of it in XAML, but when it opens (even when built and run as a final product) the layout of the window is in the ...
Score of 0
3 answers
138 views
Show a modal window without blocking execution of calling code (WPF)
I find myself in a situation where I want to show a progress/loading popup window, which will block all input/interaction with other windows, but which will not block/stop the current method which is ...
Score of 2
0 answers
134 views
Is it possible to create a SDL3 wrap from an existing window without disturb existing behavior?
I'm trying to render audio plugin UI using SDL3. I want to create an SDL3 window, and then make it as a child into an existing window that is provided by host DAW program.
However, if I wrap the ...
Score of 0
1 answer
72 views
Why is this GTK+ C++ program not showing a button with a black rectangular box boundary as expected?
I have the following HDSentinel.cpp program designed to run under the GTK+ library environment. I had a simple Hello.cpp program that I tried to adapt so that the "Hello World" button would ...
Score of -5
1 answer
101 views
C# Detect if mouse is over any window in hierarchy
How can I check if the mouse cursor is over any window in my window hierarchy.
I have this window structure:
Window 1
Window 2 (owned by Window 1)
Window 3 (owned by Window 2)
Window X (owned by .....
Score of 3
1 answer
135 views
How GTK draws widgets on title bar?
In GTK based applications it becomes common to put some custom widgets directly inside a window's title bar. How GTK manages to do that behind the scenes? I'm especially interested in its XWindow/X11 ...
Advice
0
votes
2
replies
140
views
Analysis of a tapering function
On Window function - Wikipedia tapering functions are plotted using two different styles. One shows curve (samples) and the other Fourier transform (bins).
I've prepared two tapering functions based ...
Score of -3
1 answer
433 views
How to move window control buttons (traffic light) in macOS SwiftUI [closed]
How to make it possible to place the buttons slightly below and to the right of a regular window without using (toolbar, navigationSpitView, etc) like in the Chrome or FireFox browsers
the image ...
Advice
0
votes
2
replies
100
views
How do I upgrade the Cygwin package?
Consider:
I have the Cygwin 3.0.0 version and wish to keep all packages under the Cygwin and only upgrade three packages, but I am confused on what to select. I need to upgrade them for a CVE fix (xz ...
Score of 3
0 answers
103 views
window .postMessage is not returning when popup window is closed,
I am opening a window popup for login and once login is completed I am closing the popup window. after closing. I want to know what is the exact method to capture the closing the popup window , (...
Score of 0
1 answer
86 views
In subclassing an edit box using SetWindowLongPtrA() to pass a function address, I get an "incompatable type" error
I'm trying to subclass an edit box in a dialog in VS C++ 2022. I want to intercept any key presses in a particular edit box to do further processing.
Here's my code. The 4th line confuses me because I ...