Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / ptc / src / x11 / x11windowdisplayd.inc
Size: Mime:
{
    This file is part of the PTCPas framebuffer library
    Copyright (C) 2001-2013, 2016 Nikolay Nikolov (nickysn@users.sourceforge.net)
    Original C++ version by Christian Nentwich (c.nentwich@cs.ucl.ac.uk)

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version
    with the following modification:

    As a special exception, the copyright holders of this library give you
    permission to link this library with independent modules to produce an
    executable, regardless of the license terms of these independent modules,and
    to copy and distribute the resulting executable under terms of your choice,
    provided that you also meet, for each linked independent module, the terms
    and conditions of the license of that module. An independent module is a
    module which is not derived from or based on this library. If you modify
    this library, you may extend this exception to your version of the library,
    but you are not obligated to do so. If you do not wish to do so, delete this
    exception statement from your version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
}

type
  TX11WindowDisplay = class(TX11Display)
  private
    {eventHandler}
    FOpen: Boolean;
    FWindow: TWindow;
    FVisual: PVisual;
    FPrimary: TX11Image;
    FDestX, FDestY: Integer;
    FGC: TGC;
    FAtomClose: TAtom; { X Atom for close window button }
    FCursorVisible: Boolean;
    FGrabMouse: Boolean;
    FMouseGrabbed: Boolean;
    FRelativeMouseMode: Boolean;
    FX11InvisibleCursor: TCursor; { Blank cursor }
    FFullScreen: Boolean; { Keeps a snapshot of the PTC_X11_FULLSCREEN option
                             taken at the time 'open' was called }
    FResizable: Boolean;
    FFocus: Boolean;
    FModeSwitcher: TX11Modes;

    FPreviousMouseButtonState: TPTCMouseButtonState;
    FPreviousMouseX, FPreviousMouseY: Integer; { for calculating the deltas }
    FPreviousMousePositionSaved: Boolean; { true, if FPreviousMouseX,
           FPreviousMouseY and FPreviousMouseButtonState contain valid values }

    FPreviousWidth, FPreviousHeight: Integer;

{$IFDEF ENABLE_X11_EXTENSION_GLX}
    FGLXFBConfig: TX11GLXFBConfig;
{$ENDIF ENABLE_X11_EXTENSION_GLX}

{$IFDEF ENABLE_X11_EXTENSION_XINPUT2}
    FXInput2Enabled: Boolean;
    FXInput2MajorOpCode: cint;
    FXInput2FirstEvent: cint;
    FXInput2FirstError: cint;
{$ENDIF ENABLE_X11_EXTENSION_XINPUT2}

    procedure EnterFullScreen;
    procedure LeaveFullScreen;
    procedure internal_ShowCursor(AVisible: Boolean);
    procedure internal_GrabMouse(AGrabMouse: Boolean);
    procedure HandleChangeFocus(ANewFocus: Boolean);
    procedure HandleEvents;
    procedure Draw;
    function CreateImage(ADisplay: PDisplay; AScreen, AWidth, AHeight: Integer;
                         AFormat: IPTCFormat): TX11Image; { Factory method }
    function CreateModeSwitcher: TX11Modes; { Factory method }
    procedure CreateColormap; { Register colour maps }

  protected
    function NextEvent(out AEvent: IPTCEvent; AWait: Boolean; const AEventMask: TPTCEventMask): Boolean; override;
    function PeekEvent(AWait: Boolean; const AEventMask: TPTCEventMask): IPTCEvent; override;
  public
    constructor Create(ADisplay: PDisplay; AScreen: Integer; const AFlags: TX11Flags); override;
    destructor Destroy; override;

    procedure Open(ATitle: string; AWidth, AHeight: Integer; AFormat: IPTCFormat; const AOpenGLAttributes: IPTCOpenGLAttributes); override;
    procedure Open(AWindow: TWindow; AFormat: IPTCFormat); override;
    procedure Open(AWindow: TWindow; AFormat: IPTCFormat; AX, AY, AWidth, AHeight: Integer); override;
    procedure Close; override;
    procedure InternalResize(AWidth, AHeight: Integer); override;
    procedure Update; override;
    procedure Update(AArea: IPTCArea); override;
    function Lock: Pointer; override;
    procedure Unlock; override;
    procedure GetModes(var AModes: TPTCModeList); override;
    procedure Palette(APalette: IPTCPalette); override;
    function GetPitch: Integer; override;
    function GetX11Window: TWindow; override;
    function GetX11GC: TGC; virtual;
    function IsFullScreen: Boolean; override;
    function IsOpen: Boolean; override;
    procedure SetCursor(AVisible: Boolean); override;
    procedure SetMouseGrab(AGrabMouse: Boolean); override;
    function SetRelativeMouseMode(ARelativeMouseMode: Boolean): Boolean; override;
    function MoveMouseTo(X, Y: Integer): Boolean; override;
{$IFDEF ENABLE_X11_EXTENSION_GLX}
    procedure OpenGL_SwapBuffers; override;
    procedure OpenGL_SetSwapInterval(AInterval: Integer); override;
    function OpenGL_GetSwapInterval: Integer; override;
{$ENDIF ENABLE_X11_EXTENSION_GLX}
  end;