Query: xpointer
OS: debian
Section: 3bobcat
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FBB::Xpointer(3bobcat) Sets the X-pointer FBB::Xpointer(3bobcat)NAMEFBB::Xpointer - Sets the location of the X-windows pointerSYNOPSIS#include <bobcat/xpointer> Linking option: -lX11 -lbobcatDESCRIPTIONThis class allows programs running within the X-graphical environment to set and retrieve the X-windows pointer location.NAMESPACEFBB All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB.INHERITS FROM-CONSTRUCTORSo Xpointer(): The default constructor. Connects to the Display. throws an Errno exception if the display cannot be opened. With multiple Xpointer objects, the connection to the display is opened only once. This constructor throws an Errno exception if it could not connect to the Display. The copy constructor is available.MEMBER FUNCTIONSo bool get(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 bool set(int x, int y) const: Sets the pointer to a location whose pixel coordinates are given with respect to the root-window. A negative x-coordinate is mea- sured from the right screen-margin of the root window (going left), a negative y-coordinate is measured from the bottom screen-mar- gin of the root window (going up). On success true is returned; false is returned if the pointer could not be moved. o void verify() const: Obsoleted, will be removed in a future Bobcat release.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 << endl; return 0; } catch (string msg) { cout << msg << endl; return 1; }FILESbobcat/xpointer - defines the class interfaceSEE ALSObobcat(7)BUGSNote that -lX11 must be specified before -lbobcat.DISTRIBUTION FILESo bobcat_3.01.00-x.dsc: detached signature; o bobcat_3.01.00-x.tar.gz: source archive; o bobcat_3.01.00-x_i386.changes: change log; o libbobcat1_3.01.00-x_*.deb: debian package holding the libraries; o libbobcat1-dev_3.01.00-x_*.deb: debian package holding the libraries, headers and manual pages; o http://sourceforge.net/projects/bobcat: public archive location;BOBCATBobcat is an acronym of `Brokken's Own Base Classes And Templates'.COPYRIGHTThis is free software, distributed under the terms of the GNU General Public License (GPL).AUTHORFrank B. Brokken (f.b.brokken@rug.nl). libbobcat1-dev_3.01.00-x.tar.gz 2005-2012 FBB::Xpointer(3bobcat)
Related Man Pages |
---|
level(3bobcat) - debian |
lm(3bobcat) - debian |
level(3bobcat) - hpux |
level(3bobcat) - linux |
localsocketbase(3bobcat) - minix |
Similar Topics in the Unix Linux Community |
---|
pointer |