logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

FBB::Xpointer - Sets the location of the X-windows pointer

Author

       Frank B. Brokken (f.b.brokken@rug.nl).

libbobcat-dev_6.07.01                               2005-2025                             FBB::Xpointer(3bobcat)

Bobcat

       Bobcat is an acronym of `Brokken’s Own Base Classes And Templates’.

Bobcat Project Files

       o      https://fbb-git.gitlab.io/bobcat/: gitlab project page;

       Debian Bobcat project files:

       o      libbobcat6: debian package containing the shared library, changelog and copyright note;

       o      libbobcat-dev:  debian package containing the static library, headers, manual pages, and developer
              info;

Bugs

       Note that -lX11 must be specified as well.

Constructors

       o      Xpointer():
              The  default  constructor.  Connects  to the Display. throws an Exception exception if the display
              cannot be opened. With multiple Xpointer objects, the connection to the  display  is  opened  only
              once.

              This constructor throws an Exception exception if it could not connect to the Display.

       Copy and move constructors (and assignment operators) are available.

Description

       This  class  allows programs running within the X-graphical environment to set and retrieve the X-windows
       pointer location.

Example

       #include <iostream>
       #include <string>

       #include <bobcat/xpointer>

       using namespace FBB;

       int main()
       try
       {
           Xpointer xpointer;
           xpointer.verify();

           if (!xpointer.set(100, 200))
               throw string("Set pointer failed");

           int x;
           int y;

           if (!xpointer.get(&x, &y))
               throw string("Get pointer failed");

           cout << "Pointer now at " << x << ", " << y << ’\n’;
       }
       catch (string msg)
       {
           cout << msg << ’\n’;
           return 1;
       }

Files

bobcat/xpointer - defines the class interface

Inherits From

       -

Member Functions

       o      boolget(int*x,int*y)const:
              Returns  in  its arguments the currnet pointer coordinates relative to the root-window. On success
              true is returned; false is returned if the pointer could not be moved.

       o      boolset(intx,inty)const:
              Sets the pointer to a location whose pixel coordinates are given with respect to the  root-window.
              A  negative x-coordinate is measured from the right screen-margin of the root window (going left),
              a negative y-coordinate is measured from the bottom screen-margin of the root window  (going  up).
              On success true is returned; false is returned if the pointer could not be moved.

Name

       FBB::Xpointer - Sets the location of the X-windows pointer

Namespace

FBB
       All constructors, members, operators and manipulators, mentioned in this man-page,  are  defined  in  the
       namespace FBB.

See Also

bobcat(7)

Synopsis

#include<bobcat/xpointer>

       Linking option: -lbobcat-lX11

See Also