97 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* BEGIN_COMMON_COPYRIGHT_HEADER
 | |
|  * (c)LGPL2+
 | |
|  *
 | |
|  * LXQt - a lightweight, Qt based, desktop toolset
 | |
|  * http://razor-qt.org
 | |
|  *
 | |
|  * Copyright: 2010-2011 Razor team
 | |
|  * Authors:
 | |
|  *   Christopher "VdoP" Regali
 | |
|  *   Alexander Sokoloff <sokoloff.a@gmail.com>
 | |
|  *
 | |
|  * This program or 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.
 | |
|  *
 | |
|  * 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
 | |
|  *
 | |
|  * END_COMMON_COPYRIGHT_HEADER */
 | |
| 
 | |
| #ifndef LXQTXFITMAN_H
 | |
| #define LXQTXFITMAN_H
 | |
| 
 | |
| #include <X11/Xlib.h>
 | |
| 
 | |
| /**
 | |
|  * @file xfitman.h
 | |
|  * @author Christopher "VdoP" Regali
 | |
|  * @brief handles all of our xlib-calls.
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * @brief manages the Xlib apicalls
 | |
|  */
 | |
| class XfitMan
 | |
| {
 | |
| public:
 | |
|     XfitMan();
 | |
|     ~XfitMan();
 | |
| 
 | |
|     static Atom atom(const char* atomName);
 | |
| 
 | |
|     void moveWindow(Window _win, int _x, int _y) const;
 | |
|     void raiseWindow(Window _wid) const;
 | |
|     void resizeWindow(Window _wid, int _width, int _height) const;
 | |
|     void closeWindow(Window _wid) const;
 | |
| 
 | |
|     bool getClientIcon(Window _wid, QPixmap& _pixreturn) const;
 | |
|     bool getClientIcon(Window _wid, QIcon *icon) const;
 | |
|     void setIconGeometry(Window _wid, QRect* rect = 0) const;
 | |
| 
 | |
|     QString getWindowTitle(Window _wid) const;
 | |
|     QString getApplicationName(Window _wid) const;
 | |
| 
 | |
|     int clientMessage(Window _wid, Atom _msg,
 | |
|                       long unsigned int data0,
 | |
|                       long unsigned int data1 = 0,
 | |
|                       long unsigned int data2 = 0,
 | |
|                       long unsigned int data3 = 0,
 | |
|                       long unsigned int data4 = 0) const;
 | |
| 
 | |
| private:
 | |
| 
 | |
|     /** \warning Do not forget to XFree(result) after data are processed!
 | |
|     */
 | |
|     bool getWindowProperty(Window window,
 | |
|                            Atom atom,               // property
 | |
|                            Atom reqType,            // req_type
 | |
|                            unsigned long* resultLen,// nitems_return
 | |
|                            unsigned char** result   // prop_return
 | |
|                           ) const;
 | |
| 
 | |
|     /** \warning Do not forget to XFree(result) after data are processed!
 | |
|     */
 | |
|     bool getRootWindowProperty(Atom atom,               // property
 | |
|                                Atom reqType,            // req_type
 | |
|                                unsigned long* resultLen,// nitems_return
 | |
|                                unsigned char** result   // prop_return
 | |
|                               ) const;
 | |
| 
 | |
| 
 | |
|     Window  root; //the actual root window on the used screen
 | |
| };
 | |
| 
 | |
| 
 | |
| const XfitMan& xfitMan();
 | |
| 
 | |
| #endif // LXQTXFITMAN_H
 |