~ubuntu-branches/ubuntu/precise/kdocker/precise

« back to all changes in this revision

Viewing changes to src/util.h

  • Committer: Bazaar Package Importer
  • Author(s): Lorenzo Villani
  • Date: 2006-07-24 16:58:25 UTC
  • Revision ID: james.westby@ubuntu.com-20060724165825-tcir4glqacf9eno0
Tags: upstream-1.3
ImportĀ upstreamĀ versionĀ 1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 *  Copyright (C) 2004 Girish Ramakrishnan All Rights Reserved.
 
3
 *      
 
4
 * This is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 * 
 
9
 * This software is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 * 
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this software; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
 
17
 * USA.
 
18
 */
 
19
 
 
20
// $Id: util.h,v 1.3 2004/11/19 15:44:51 cs19713 Exp $
 
21
 
 
22
#ifndef _UTIL_H
 
23
#define _UTIL_H
 
24
 
 
25
#include <qstring.h>
 
26
#include <X11/Xlib.h>
 
27
#include <sys/types.h>
 
28
 
 
29
extern bool isNormalWindow(Display *display, Window w);
 
30
extern bool isValidWindowId(Display *display, Window w);
 
31
extern pid_t pid(Display *display, Window w);
 
32
extern void sendMessage(Display *display, Window to, Window w, char *type, 
 
33
                       int format, long mask, void *data, int size);
 
34
extern bool analyzeWindow(Display *display, Window w, pid_t epid, 
 
35
                          const QString &ename);
 
36
extern Window activeWindow(Display *display);
 
37
extern Window selectWindow(Display *display, const char **err = 0);
 
38
extern void subscribe(Display *display, Window w, long mask, bool set);
 
39
extern bool getCardinalProperty(Display *display, Window w, Atom prop, 
 
40
                                long *data);
 
41
 
 
42
typedef enum { SysTrayAbsent, SysTrayHidden, SysTrayPresent } SysTrayState;
 
43
 
 
44
extern SysTrayState sysTrayStatus(Display *display, Window *tray = 0);
 
45
 
 
46
#endif
 
47