~ubuntu-branches/ubuntu/quantal/openmotif/quantal

« back to all changes in this revision

Viewing changes to clients/mwm/WmXSMP.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Bauer
  • Date: 2010-06-23 12:12:31 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100623121231-u89gxdp51sg9wjj2
Tags: 2.3.0-1
* New Maintainer (Closes: #379258) 
* Acknowledge NMU changes
* New upstream release (Closes: #494375)
* Get rid of security patches as they are already part of new upstream
  release (00-xpmvuln.openmotif.patch, 342092-CVE-2005-3964.patch)
* Bump Standards to 3.8.4
* Added {misc:Depends} to make the package lintian cleaner
* Fix weak-library-dev-dependency by adding ${binary:Version}) for the
  -dev Package of openmotif
* Let package depend on autotools-dev to use newer autotools-helper-files
* Work around an autoconf-bug (Gentoo-Bug #1475)
* Added Client-side anti-aliased fonts support via XFT
* Added UTF-8 and UTF8_STRING atom support
* Ability to show text and pixmaps in Label, LabelGadget and all
  derived widgets
* Support of PNG/JPEG image formats in the same way as XPM is supported
* Increase FILE_OFFSET_BITS to 64 to show files >2GB in file-selector
  Idea taken from Magne Oestlyngen (Closes: #288537)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _WmXSMP_h
 
2
#define _WmXSMP_h
 
3
 
 
4
/* $XConsortium: WmXSMP.h /main/4 1996/04/19 11:22:40 rswiston $ */
 
5
/*
 
6
 * (c) Copyright 1996 Digital Equipment Corporation.
 
7
 * (c) Copyright 1996 Hewlett-Packard Company.
 
8
 * (c) Copyright 1996 International Business Machines Corp.
 
9
 * (c) Copyright 1996 Sun Microsystems, Inc.
 
10
 * (c) Copyright 1996 Novell, Inc. 
 
11
 * (c) Copyright 1996 FUJITSU LIMITED.
 
12
 * (c) Copyright 1996 Hitachi.
 
13
 */
 
14
 
 
15
#include <X11/Intrinsic.h>
 
16
#include "WmGlobal.h"
 
17
 
 
18
/* Atoms used for session management capabilities. */
 
19
#define _XA_DT_SM_CLIENT_ID             "SM_CLIENT_ID"
 
20
#define _XA_DT_WMSAVE_HINT              "_DT_WMSAVE_HINT"
 
21
 
 
22
/* _DT_WMSAVE_HINT flag definitions */
 
23
#define WMSAVE_X                (1L << 0)
 
24
#define WMSAVE_Y                (1L << 1)
 
25
#define WMSAVE_WIDTH            (1L << 2)
 
26
#define WMSAVE_HEIGHT           (1L << 3)
 
27
#define WMSAVE_STATE            (1L << 4)
 
28
#ifdef WSM
 
29
# define WMSAVE_WORKSPACES      (1L << 5)
 
30
#endif
 
31
#define WMSAVE_ICON_X           (1L << 6)
 
32
#define WMSAVE_ICON_Y           (1L << 7)
 
33
 
 
34
extern void AddSMCallbacks(void);
 
35
extern void ResignFromSM(void);
 
36
extern void ExitWM(int exitCode);
 
37
extern XrmDatabase LoadClientResourceDB(void);
 
38
extern XrmDatabase SaveClientResourceDB(void);
 
39
extern Boolean FindClientDBMatch(ClientData *, char **);
 
40
extern Boolean GetSmClientIdClientList(ClientData ***, int *);
 
41
extern void SortClientListByWorkspace(ClientData **, int);
 
42
#ifdef WSM
 
43
extern void LoadClientIconPositions(ClientData *);
 
44
#endif
 
45
 
 
46
#endif /* _WmXSMP_h */