Hi all,

My System:
Windows 7 and 8
Iup 3.8
C binding
using precompiled libraries from sourceforge.net
static linking

Issue:
I usually place the windows taskbar at the left of the screen and i'm
writing a little app that will show in a corner of it. For that
purpose i'm using function IupShowXY that allows me to place a dialog
wherever i want.
The problem is that in specific corners the dialog is being showed
either partially under the taskbar or is leaving a margin between the
dialog and a border.

Example code (use taskbar at left or top)

int main(int argc, char * argv[]){
    IupOpen(&argc, &argv);
    Ihandle* w = IupDialog(IupLabel("HEY WORLD!"));

    IupShowXY(w, IUP_LEFT, IUP_BOTTOM);

    IupMainLoop();
    IupClose();
    return EXIT_SUCCESS;
}

------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk
_______________________________________________
Iup-users mailing list
Iup-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/iup-users

Reply via email to