<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Selecting a Graphics Region in Quickwin in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839804#M57773</link>
    <description>Ignorant as I am but I intend to learn a thing or two from this post regards graphics applications as I am also trying to develop one.&lt;BR /&gt;One thing that I noticed though was&lt;BR /&gt;calls to lineto_W() should have real*8 arguments. So need to use double as in moveto_W.&lt;BR /&gt;&lt;BR /&gt;Also I noticed that when I set my screen to max resolution  (... =-1 etc) and then call SETWINDOW, I have to increase the limit boundaries so that everything fits (scales down) in my child window. Otherwise I need to scroll right and down to see the entire graphics (which is a big pain). It does not automatically scale to the limits of my child window.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
    <pubDate>Tue, 01 Oct 2002 01:13:38 GMT</pubDate>
    <dc:creator>sumitm</dc:creator>
    <dc:date>2002-10-01T01:13:38Z</dc:date>
    <item>
      <title>Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839798#M57767</link>
      <description>I have a Quickwin program in which I want to use the mouse to select a region of a data plot to be expanded in a replot. I can do this using a mouse click-and-drag to get and capture the coordinates of the initial and final corner of the selected region, but I want to be able to draw a rectangular "border" around the selected region that changes as the user moves the mouse. This would look similar to the "Select Graphics" option in the default Quickwin Edit menu, but I don't want to actually copy a region, I just want a rectangle that delineates the region selected by the user from which I can extract the coordinates I need.&lt;BR /&gt;&lt;BR /&gt;I'm completely at a loss as how to get started on this.</description>
      <pubDate>Wed, 25 Sep 2002 23:45:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839798#M57767</guid>
      <dc:creator>jcbreeding</dc:creator>
      <dc:date>2002-09-25T23:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839799#M57768</link>
      <description>You need to react to the appropriate mouse events by drawing a box.  Possibly a good way would be to register callbacks for left button down, left button up and mouse move, then draw a rectangle with the GDI routine DrawFocusRect and erase the previous rectangle as necessary.  Keep a state variable that tells you the selection is in process, and the left mouse button goes up then you have your user selected rectangle.&lt;BR /&gt;&lt;BR /&gt;James</description>
      <pubDate>Thu, 26 Sep 2002 12:59:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839799#M57768</guid>
      <dc:creator>james1</dc:creator>
      <dc:date>2002-09-26T12:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839800#M57769</link>
      <description>To expand on that: although in general it's not recommended to draw onto QuickWin windows with GDI, you'll be fine as long as you don't mess with WM_PAINT. Here's a fragment from a (Win32) application which does just that; it is located in callback for mouse events. It uses &lt;A href="http://www.geocities.com/jdujic/fortran/xft/xfthome.htm"&gt;XFTGDI&lt;/A&gt; module, which you might find a bit more convenient than pure APIs. Additionally, you'll need GetDC and ReleaseDC to get the handle of the QW's DC. The sample draws the "rubber rectangle" which always keeps aspect ratio (i.e. proportional to main window dimensions). Note use of SetROP2 (equivalent XFT routine is XSetROPMode). Global logical SELECTING is set when selecting is in progress:&lt;BR /&gt;&lt;BR /&gt;&lt;PRE&gt;
INTEGER,SAVE::          iOrigMouseX,iOrigMouseY, &amp;amp;
                        iPrevXSize,iPrevYSize
TYPE(X_DC)::            xMemDC
...
IF (MEvent.EQ.WM_LBUTTONDOWN) THEN
...
      &lt;I&gt;!The drawing begins&lt;/I&gt;
      ELSE IF (SELECTING) THEN
            iOrigMouseX=MouseX
            iOrigMouseY=MouseY
            iPrevXSize=0
            iPrevYSize=0
...
ELSE IF (MEVENT.EQ.WM_LBUTTONUP) THEN
...
      ELSE IF (SELECTING) THEN
            SELECTING=.FALSE.
            &lt;I&gt;Do post-processing here&lt;/I&gt;
...
&lt;I&gt;!Drawing goes here (on mouse move)&lt;/I&gt;
ELSE IF (SELECTING .AND. IAND(Keystate,MK_LBUTTON).NE.0) THEN
      &lt;I&gt;!Insert GetDC here
      xMemDC%hDC = GetDC(GETHWNDQQ(whatever))&lt;/I&gt;
      iMode=SetROP2(xMemDC%hDC,R2_XORPEN)
      &lt;I&gt;Dotted pen; #3F3F3F is a "magic" color :-)&lt;/I&gt;
      CALL XSetPen(xMemDC,#3F3F3F,PS_DOT,1)
      CALL XSetBrush(xMemDC,0,BS_NULL)
      fAspectRatio=REAL(jWidth)/REAL(jHeight)

      iXSize=IABS(iOrigMouseX-MouseX)
      iYSize=IABS(iOrigMouseY-MouseY)
      iXDir=ISIGN(1,MouseX-iOrigMouseX)
      iYDir=ISIGN(1,MouseY-iOrigMouseY)

      IF (iXSize.LT.iYSize*fAspectRatio) THEN
            iXSize=iYSize*fAspectRatio*iXDir
            iYSize=iYSize*iYDir
      ELSE
            iYSize=iXSize/fAspectRatio*iYDir
            iXSize=iXSize*iXDir
      END IF
      &lt;I&gt;!Since we're in XOR ROP mode, the next call will
      !erase the previously drawn rectangle&lt;/I&gt;
      iSt=XRectangle(xMemDC,iOrigMouseX,iOrigMouseY,     &amp;amp;
                     iOrigMouseX+iPrevXSize,iOrigMouseY+iPrevYSize)
      &lt;I&gt;!Draw the new rectangle on new position&lt;/I&gt;
      iSt=XRectangle(xMemDC,iOrigMouseX,iOrigMouseY,     &amp;amp;
                     iOrigMouseX+iXSize,iOrigMouseY+iYSize)
      iSt=SetROP2(xMemDC%hDC,iMode)

      iX1=MIN(iOrigMouseX,iOrigMouseX+iPrevXSize,iOrigMouseX+iXSize)-2
      iY1=MIN(iOrigMouseY,iOrigMouseY+iPrevYSize,iOrigMouseY+iYSize)-2
      iX2=MAX(iOrigMouseX,iOrigMouseX+iPrevXSize,iOrigMouseX+iXSize)+2
      iY2=MAX(iOrigMouseY,iOrigMouseY+iPrevYSize,iOrigMouseY+iYSize)+2
      iPrevXSize=iXSize
      iPrevYSize=iYSize
      !&lt;I&gt;Have to ReleaseDC
      iSt = ReleaseDC(GETHWNDQQ(whatever), xMemDC%hDC)&lt;/I&gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;Of course, you'll have to adapt it to your needs but I hope it would help.&lt;BR /&gt;&lt;BR /&gt;Jugoslav&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Sep 2002 16:14:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839800#M57769</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2002-09-26T16:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839801#M57770</link>
      <description>THanks, Jugoslav. I modified the text you sent me and downloaded your XFT routines. I am having problems. I am trying to select a region in a child window. I just to need to get the window coordinates of the initial and final points. I call registermouseevents with my callback routine (see below) based on your suggestion. The routine draws a rectangle, but not where I am am moving the mouse. The rectangle is lower and to the right of where the mouse cursor is. I can't find a description of what the coordinates returned by the callback routine are relative: the screen or the active window. Can you see where I went wrong? &lt;BR /&gt;&lt;BR /&gt;Jim&lt;BR /&gt;&lt;BR /&gt;my routine code is as follows:&lt;BR /&gt;subroutine selectrect(unit,MEvent,keystate,MouseX,MouseY)&lt;BR /&gt;use dflib&lt;BR /&gt;use dfwin&lt;BR /&gt;use XFTGDI&lt;BR /&gt;integer:: unit,MEvent,keystate,MouseX,MouseY,i4,I1,I2,I3&lt;BR /&gt;INTEGER,SAVE:: iPrevXSize,iPrevYSize,OldX,OldY&lt;BR /&gt;LOGICAL:: SELECTING&lt;BR /&gt;TYPE(X_DC):: xMemDC&lt;BR /&gt;&lt;BR /&gt;common/Meventstuff/iOrigMouseX,iOrigMouseY,LastMouseX, &amp;amp;&lt;BR /&gt;                   LastMouseY,icase,SELECTING&lt;BR /&gt;&lt;BR /&gt;IF (MEvent.EQ.1 .AND. SELECTING.EQ. .FALSE.) THEN&lt;BR /&gt;!The drawing begins&lt;BR /&gt;   iOrigMouseX=MouseX&lt;BR /&gt;   iOrigMouseY=MouseY&lt;BR /&gt;   OldX = MouseX&lt;BR /&gt;   OldY = MouseY&lt;BR /&gt;   SELECTING = .TRUE.&lt;BR /&gt;   icase = 0&lt;BR /&gt;ELSE IF (MEVENT.EQ.2 .and. SELECTING.EQ. .TRUE.) THEN&lt;BR /&gt;   icase = 1&lt;BR /&gt;   LastMouseX = MouseX&lt;BR /&gt;   LastMouseY = MouseY&lt;BR /&gt;   Selecting = .FALSE.&lt;BR /&gt;   icase = 1&lt;BR /&gt;ELSE IF (SELECTING .AND. mevent.eq.64) THEN   &lt;BR /&gt;!Insert GetDC here&lt;BR /&gt;   xMemDC%hDC = GetDC(GETHWNDQQ(61))&lt;BR /&gt;   iMode=SetROP2(xMemDC%hDC,R2_XORPEN)&lt;BR /&gt;!Dotted pen; #3F3F3F is a "magic" color :-)&lt;BR /&gt;   CALL XSetPen(xMemDC,#3F3F3F,PS_DOT,1)&lt;BR /&gt;   CALL XSetBrush(xMemDC,0,BS_NULL)&lt;BR /&gt;&lt;BR /&gt;!Since we're in XOR ROP mode, the next call will&lt;BR /&gt;!erase the previously drawn rectangle&lt;BR /&gt;   iSt=XRectangle(xMemDC,iOrigMouseX,iOrigMouseY,OldX,OldY)&lt;BR /&gt;!Draw the new rectangle on new position&lt;BR /&gt;   iSt=XRectangle(xMemDC,iOrigMouseX,iOrigMouseY,MouseX,MouseY)&lt;BR /&gt;   iSt=SetROP2(xMemDC%hDC,iMode)&lt;BR /&gt;   OldX=MouseX&lt;BR /&gt;   OldY=MouseY&lt;BR /&gt;!Have to ReleaseDC&lt;BR /&gt;iSt = ReleaseDC(GETHWNDQQ(61), xMemDC%hDC)&lt;BR /&gt;&lt;BR /&gt;ENDIF&lt;BR /&gt;&lt;BR /&gt;END SUBROUTINE  selectrect</description>
      <pubDate>Sat, 28 Sep 2002 05:57:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839801#M57770</guid>
      <dc:creator>jcbreeding</dc:creator>
      <dc:date>2002-09-28T05:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839802#M57771</link>
      <description>Hmmm, I think it should work. What you describe indeed looks like coordinate system offset, but as far as I know the mouse callback receives QW physical coordinates (origin in upper left client area corner) while XRectangle operates on XFT viewport coordinates (whose default origins are in the same upper left area corner).&lt;BR /&gt;GetDC is supposed to return DC whose origin is also at that point. I ommitted the call to XSetViewport from my post (call XSetViewport(xMemDC,0,0,1000,1000)) but that's probably not a problem since it is supposed to be zero-initialized anyway. &lt;BR /&gt;&lt;BR /&gt;As a test 1, add a call to ordinary RECTANGLE() -- it is supposed to give the same result as XRectangle (except that it's gonna leave garbage on the screen). Does it produce the same results as XRectangle?&lt;BR /&gt;&lt;BR /&gt;As a test 2, draw a fixed XRectangle at (0,0,anything,anything) -- where is the upper left corner?&lt;BR /&gt;&lt;BR /&gt;BTW, you should really use .EQV. operator when comparing logicals, not .EQ. &lt;BR /&gt;&lt;BR /&gt;Jugoslav</description>
      <pubDate>Mon, 30 Sep 2002 14:38:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839802#M57771</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2002-09-30T14:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839803#M57772</link>
      <description>Jugoslav&lt;BR /&gt;I've narrowed down the circumstances in which the rectangle drawing fails. My graphics window is larger than the screen. If I don't scroll the window, the rectangle is drawn where it's supposed to be. If I scroll to the bottom left, the rectangle is offset by about the amount I scrolled in the x and y directions. If I only scroll down in the y direction, but not in x the rectangle is drawn offset only in the y direction.&lt;BR /&gt;&lt;BR /&gt;I tried your first suggested test, adding RECTANGLE to my&lt;BR /&gt;selectrect routine. When I scrolled the graphics window, the normal RECTANGLE drew rectangles in the correct location, but XRECTANGLE was still offset. I didn't try your second test.&lt;BR /&gt;&lt;BR /&gt;Here is a simple driver program that I used to test selectrect. It simulates the way I call the graphics window in my main application.&lt;BR /&gt;&lt;BR /&gt;      PROGRAM DRIVER&lt;BR /&gt;	USE DFLIB&lt;BR /&gt;	&lt;BR /&gt;	type (qwinfo) winfo&lt;BR /&gt;	type (wxycoord) xy&lt;BR /&gt;	type (windowconfig) wg&lt;BR /&gt;	TYPE (qwinfo) qwg&lt;BR /&gt;&lt;BR /&gt;	EXTERNAL selectrect&lt;BR /&gt;&lt;BR /&gt;	INTEGER I1,I2,Ievnt(5),event&lt;BR /&gt;	integer*4 xmax, ymax&lt;BR /&gt;&lt;BR /&gt;	integer*2 status,x,y,res&lt;BR /&gt;	integer result,ierr,x2,y2,i4,i3,iGU&lt;BR /&gt;      integer icase,iOrigMouseX,iOrigMouseY,LastMouseX,LastMouseY&lt;BR /&gt;&lt;BR /&gt;      LOGICAL SELECTING&lt;BR /&gt;&lt;BR /&gt;	common /reslt/i1,i2&lt;BR /&gt;	common/Meventstuff/iOrigMouseX,iOrigMouseY,LastMouseX,&lt;BR /&gt;     +             LastMouseY,icase,SELECTING&lt;BR /&gt;&lt;BR /&gt;      SELECTING = .FALSE.&lt;BR /&gt;&lt;BR /&gt;      event = MOUSE$LBUTTONDOWN&lt;BR /&gt;      event = IOR (event, MOUSE$LBUTTONUP)&lt;BR /&gt;      event = IOR (event, MOUSE$MOVE)&lt;BR /&gt;&lt;BR /&gt;	xmax = 750&lt;BR /&gt;	ymax = 500&lt;BR /&gt;&lt;BR /&gt;	winfo%type = QWIN$MAX&lt;BR /&gt;      winfo%x = 100&lt;BR /&gt;      winfo%y = 100&lt;BR /&gt;      winfo%h = 60&lt;BR /&gt;      winfo%w = 115&lt;BR /&gt;      retval = SETWSIZEQQ(81,winfo)&lt;BR /&gt;&lt;BR /&gt;	ICASE = 0&lt;BR /&gt;&lt;BR /&gt;	iGU = 61&lt;BR /&gt;&lt;BR /&gt;	IEVNT(1) = MOUSE$LBUTTONDOWN&lt;BR /&gt;	IEVNT(2) = MOUSE$LBUTTONUP&lt;BR /&gt;	IEVNT(3) = MOUSE$MOVE&lt;BR /&gt;	IEVNT(4) = MOUSE$BADUNIT&lt;BR /&gt;	IEVNT(5) = MOUSE$BADEVENT&lt;BR /&gt;&lt;BR /&gt;	OPEN(UNIT=61,FILE='USER',TITLE='GRAPH')&lt;BR /&gt;      wg.numxpixels= xmax&lt;BR /&gt;	wg.numypixels= ymax&lt;BR /&gt;	wg.numtextcols=-1&lt;BR /&gt;	wg.numtextrows=-1&lt;BR /&gt;	wg.mode = QWIN$SCROLLDOWN&lt;BR /&gt;	wg.title='Case Graphics'C&lt;BR /&gt;	lstatus=setwindowconfig(wg)&lt;BR /&gt;	lstatus=setwindowconfig(wg)&lt;BR /&gt;      lstatus=getwindowconfig(wg)&lt;BR /&gt;	qwg.type=QWIN$SET&lt;BR /&gt;	qwg.x=0&lt;BR /&gt;	qwg.y=0&lt;BR /&gt;	qwg.w= -1&lt;BR /&gt;	qwg.h=-1&lt;BR /&gt;	ires=setwsizeqq(iGU,qwg)&lt;BR /&gt;	xcms = xmax * 1.15&lt;BR /&gt;	ycms = ymax * 1.15&lt;BR /&gt;c	xcms = xmax&lt;BR /&gt;c	ycms = ymax&lt;BR /&gt;	ires=setwindow(.true.,0.,0.,xcms,ycms)&lt;BR /&gt;&lt;BR /&gt;      retval = setactiveqq(61)&lt;BR /&gt;&lt;BR /&gt;	I1 = FOCUSQQ(61)&lt;BR /&gt;&lt;BR /&gt;	CALL CLEARSCREEN($GCLEARSCREEN)&lt;BR /&gt;c      call setviewport(0,ymax+50,xmax+50,0)&lt;BR /&gt;      style = #FFFF&lt;BR /&gt;      CALL SETLINESTYLE(style)&lt;BR /&gt;&lt;BR /&gt;c      retVal=SETWINDOW(.true.,0,ymax,xmax,0)&lt;BR /&gt;      i2 = SETCOLOR(0)&lt;BR /&gt;      i2 = SETTEXTCOLOR(0)&lt;BR /&gt;      retval = setfont("t'Arial'h14pe")&lt;BR /&gt;&lt;BR /&gt;	i2 = setcolor(2)&lt;BR /&gt;&lt;BR /&gt;      call moveto_w(dble(45),dble(50),xy)&lt;BR /&gt;	status = lineto_w(55,50)&lt;BR /&gt;	call moveto_w(dble(50),dble(45),xy)&lt;BR /&gt;	status = lineto_w(50,55)&lt;BR /&gt;&lt;BR /&gt;	call moveto_w(dble(145),dble(150),xy)&lt;BR /&gt;	status = lineto_w(155,150)&lt;BR /&gt;	call moveto_w(dble(150),dble(145),xy)&lt;BR /&gt;	status = lineto_w(150,155)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;	I2 = 0&lt;BR /&gt;	I = 0&lt;BR /&gt;&lt;BR /&gt;      do while (icase .eq. 0)&lt;BR /&gt;	  i4 = registermouseevent(iGU,event,selectrect)&lt;BR /&gt;      enddo&lt;BR /&gt;&lt;BR /&gt;	END</description>
      <pubDate>Tue, 01 Oct 2002 00:09:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839803#M57772</guid>
      <dc:creator>jcbreeding</dc:creator>
      <dc:date>2002-10-01T00:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839804#M57773</link>
      <description>Ignorant as I am but I intend to learn a thing or two from this post regards graphics applications as I am also trying to develop one.&lt;BR /&gt;One thing that I noticed though was&lt;BR /&gt;calls to lineto_W() should have real*8 arguments. So need to use double as in moveto_W.&lt;BR /&gt;&lt;BR /&gt;Also I noticed that when I set my screen to max resolution  (... =-1 etc) and then call SETWINDOW, I have to increase the limit boundaries so that everything fits (scales down) in my child window. Otherwise I need to scroll right and down to see the entire graphics (which is a big pain). It does not automatically scale to the limits of my child window.&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 01 Oct 2002 01:13:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839804#M57773</guid>
      <dc:creator>sumitm</dc:creator>
      <dc:date>2002-10-01T01:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting a Graphics Region in Quickwin</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839805#M57774</link>
      <description>Ah, yes, scrolling, I forgot about that. When the scrollbar is present, you get mouse coordinates with offset to location of client area's upper left corner, while GetDC always returns the canvas which becomes there. &lt;BR /&gt;&lt;BR /&gt;You should subtract offsets received from GetScrollPos(GETHWNDQQ(61), SB_HORZ) [and SB_VERT] in the call to XRectangle. Then everything should be OK. Alternatively, you could move the XFT viewport:&lt;BR /&gt;&lt;PRE&gt;
USE DFWIN
  ...
  xDC%hDC = GetDC(...
  iXOffset = GetScrollPos(GETHWNDQQ(61), SB_HORZ)
  iYOffset = GetScrollPos(GETHWNDQQ(61), SB_VERT)
  CALL XSetViewport(xDC, -iXOffset, -iYOffset, 1000, 1000)
  ...
&lt;/PRE&gt;&lt;BR /&gt;In this way, XFT and QuickWin coordinate systems will be identical.&lt;BR /&gt;&lt;BR /&gt;Jugoslav</description>
      <pubDate>Tue, 01 Oct 2002 14:28:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Selecting-a-Graphics-Region-in-Quickwin/m-p/839805#M57774</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2002-10-01T14:28:07Z</dc:date>
    </item>
  </channel>
</rss>

