The windowing tag has no wiki summary.
5
votes
1answer
166 views
Delphi - overriding hide behaviour of TForm.showModal
I am currently writing a windowing system for an existing Delphi application.
Currently, the program consists of a number of full-sized forms which are shown modally in the order they are required ...
5
votes
4answers
296 views
how to close a window from a different process
I have a c# application which I want to instruct to shutdown nicely, from a different process.
I also want to be able to ask it to open its main window.
I have a reference to its main window handle.
...
2
votes
2answers
154 views
FFT - When to window?
I've seen the various FFT questions on here but I'm confused on part of the implementation. Instead of performing the FFT in real time, I want to do it offline. Lets say I have the raw data in float[] ...
1
vote
1answer
84 views
Is there any difference with the X11 atoms XA_WM_NAME and “_NET_WM_NAME”?
Is there any difference with the atom defined in XA_WM_NAME defined in Xatom.h and the one got using XInternAtom(display, "_NET_WM_NAME", False)?
Edit: I made a little program which prints the ...
1
vote
1answer
250 views
Oracle SQL: sum( case when then quantity else 0 END) OVER (partition by…) = can't get right GROUP BY statement
I'm trying to select several different sums, one of them being OVER (Partition by column_also_in_select_plan).
However I cannot seem to ever be able to get the GROUP BY statement right.
Example:
...
1
vote
2answers
186 views
How can I make a window like the Mac OS X dock's stack?
I'm looking to create a window object that looks just like the Dock's Stack. (The grey square one, not the leaning list of pisa). Complete with title, transparency, navigation buttons, large icons ...
1
vote
1answer
131 views
Is a control tree cached after the first call to FindWindowEx/EnumChildWindows?
I noticed that if you call FindWindowEx or EnumChildWindows against a hWnd that belongs to a window that's not in the foreground, i.e. minimized, then they don't report any children. On the other hand ...
1
vote
1answer
598 views
List / Detail Different Windows can they be synchronized and databound to the same collection?
I have a listbox that is bound to a List<T> -- this is working great.
I'd like to let my users double click a listbox item and open a new window that will display the "detail" view for that ...
0
votes
0answers
9 views
How do very small demos do their windowing?
Looking through the (handful) for 32 to 256 byte demos I'm wondering how they do their windowing.
I don't think they make any Windows API calls but I'm not sure, so how does it work?
0
votes
1answer
192 views
Matlab: Barcode scanner
I'm trying to make a barcode scanner in matlab. In a barcode every white bar is 1 and every black bar is 0. i'm trying to get these bars . But this is the problem:
as you can see the bars are not ...
0
votes
1answer
136 views
Xlib: How to check if a window is minimized or not?
How can I check if a window is minimized or not using the C interface of xlib?
Edit: Should this code work?
int window_is_minimized(Display *display, Window window) {
Atom actual_type;
int ...
0
votes
1answer
49 views
question about esp Register usage in ATL Windowing Thunking
It's well know that ATL hooks a window to it's wndproc by thunking, which actually replace hwnd with this pointer in place and and jumps to the wndproc so that a call to wndproc(hwnd, ...) is actually ...
0
votes
3answers
551 views
vDSP: Do the FFT functions include windowing?
I am working on implementing an algorithm using vDSP.
1) take FFT
2) take log of square of absolute value (can be done with lookup table)
3) take another FFT
4) take absolute value
I'm not sure ...
0
votes
1answer
218 views
multiple count(substring) with windowing psql 8.4.4
I am trying to create the following view, and I get the error below:
I am able to do 1 count statement (if I remove the AS "Mod0") Is it possible to count multiple substrings, with the output count to ...
0
votes
1answer
284 views
NSOpenGLView drawRect does not get called
I am currently trying to create a simple cocoa NSWindow programmatically instead of using Interface builder (I have got my reasons to do so). this is a quick test:
int main(int argc, char** argv){ ...
0
votes
1answer
241 views
iPad “draggable window”
When you load a view on the iPad it tends to fill the whole screen.
Is there a way to create a "draggable windowed view" on the iPad?
-1
votes
0answers
10 views
Designing a curve/windowing function
I need a curve function that meets the following parameters:
Takes a starting value (e.g. 2.1 or 0.4)
Averages to 1
Finishes on 1
All values are > 0
I tried using a quadratic bezier curve and ...