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

« back to all changes in this revision

Viewing changes to lib/Xm/CommandP.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
/* 
 
2
 *  @OPENGROUP_COPYRIGHT@
 
3
 *  COPYRIGHT NOTICE
 
4
 *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
 
5
 *  Copyright (c) 1996, 1997, 1998, 1999, 2000 The Open Group
 
6
 *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
 
7
 *  the full copyright text.
 
8
 *  
 
9
 *  This software is subject to an open license. It may only be
 
10
 *  used on, with or for operating systems which are themselves open
 
11
 *  source systems. You must contact The Open Group for a license
 
12
 *  allowing distribution and sublicensing of this software on, with,
 
13
 *  or for operating systems which are not Open Source programs.
 
14
 *  
 
15
 *  See http://www.opengroup.org/openmotif/license for full
 
16
 *  details of the license agreement. Any use, reproduction, or
 
17
 *  distribution of the program constitutes recipient's acceptance of
 
18
 *  this agreement.
 
19
 *  
 
20
 *  EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
 
21
 *  PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
22
 *  KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
 
23
 *  WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
 
24
 *  OR FITNESS FOR A PARTICULAR PURPOSE
 
25
 *  
 
26
 *  EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
 
27
 *  NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT,
 
28
 *  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
29
 *  DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED
 
30
 *  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
31
 *  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 
32
 *  ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
 
33
 *  EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE
 
34
 *  POSSIBILITY OF SUCH DAMAGES.
 
35
*/ 
 
36
/* 
 
37
 * HISTORY
 
38
*/ 
 
39
/*   $XConsortium: CommandP.h /main/11 1995/07/14 10:16:43 drk $ */
 
40
/*
 
41
*  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
 
42
/*
 
43
*  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
 
44
#ifndef _XmCommandP_h
 
45
#define _XmCommandP_h
 
46
 
 
47
#include <Xm/SelectioBP.h>
 
48
#include <Xm/Command.h>
 
49
 
 
50
#ifdef __cplusplus
 
51
extern "C" {
 
52
#endif
 
53
 
 
54
/* Constraint part record for Command widget */
 
55
 
 
56
typedef struct _XmCommandConstraintPart
 
57
{
 
58
  char unused;
 
59
} XmCommandConstraintPart, * XmCommandConstraint;
 
60
 
 
61
/*  New fields for the Command widget class record  */
 
62
 
 
63
typedef struct
 
64
{
 
65
  XtPointer           extension;      /* Pointer to extension record */
 
66
} XmCommandClassPart;
 
67
 
 
68
 
 
69
/* Full class record declaration */
 
70
 
 
71
typedef struct _XmCommandClassRec
 
72
{
 
73
  CoreClassPart            core_class;
 
74
  CompositeClassPart       composite_class;
 
75
  ConstraintClassPart      constraint_class;
 
76
  XmManagerClassPart       manager_class;
 
77
  XmBulletinBoardClassPart bulletin_board_class;
 
78
  XmSelectionBoxClassPart  selection_box_class;
 
79
  XmCommandClassPart       command_class;
 
80
} XmCommandClassRec;
 
81
 
 
82
externalref XmCommandClassRec xmCommandClassRec;
 
83
 
 
84
/* New fields for the Command widget record */
 
85
 
 
86
typedef struct
 
87
{
 
88
  XtCallbackList   callback;
 
89
  XtCallbackList   value_changed_callback;
 
90
  int              history_max_items;
 
91
  Boolean          error;        /* error has been made visible in list */
 
92
} XmCommandPart;
 
93
 
 
94
 
 
95
/****************************************************************
 
96
 *
 
97
 * Full instance record declaration
 
98
 *
 
99
 ****************************************************************/
 
100
 
 
101
typedef struct _XmCommandRec
 
102
{
 
103
    CorePart            core;
 
104
    CompositePart       composite;
 
105
    ConstraintPart      constraint;
 
106
    XmManagerPart       manager;
 
107
    XmBulletinBoardPart bulletin_board;
 
108
    XmSelectionBoxPart  selection_box;
 
109
    XmCommandPart       command;
 
110
} XmCommandRec;
 
111
 
 
112
 
 
113
#ifdef __cplusplus
 
114
}  /* Close scope of 'extern "C"' declaration which encloses file. */
 
115
#endif
 
116
 
 
117
#endif /* _XmCommandP_h */
 
118
/* DON'T ADD ANYTHING AFTER THIS #endif */