~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to Xw/RootIcon.h

  • Committer: Bazaar Package Importer
  • Author(s): Christian Marillat
  • Date: 2004-08-29 10:53:42 UTC
  • Revision ID: james.westby@ubuntu.com-20040829105342-qgmnry37eadfkoxx
Tags: upstream-1.1.3
ImportĀ upstreamĀ versionĀ 1.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * RootIcon.h
 
3
 *
 
4
 * Copyright (C) 1998 Rasca Gmelch, Berlin
 
5
 * EMail: thron@gmx.de
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the Free Software
 
19
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
 */
 
21
 
 
22
#ifndef __RootIcon_h__
 
23
#define __RootIcon_h__
 
24
 
 
25
/****************************************************************
 
26
 *
 
27
 * Root widget
 
28
 *
 
29
 ****************************************************************/
 
30
 
 
31
/* Resources:
 
32
 
 
33
 Name                Class              RepType         Default Value
 
34
 ----                -----              -------         -------------
 
35
 background          Background         Pixel           XtDefaultBackground
 
36
 border              BorderColor        Pixel           XtDefaultForeground
 
37
 borderWidth         BorderWidth        Dimension       1
 
38
 destroyCallback     Callback           Pointer         NULL
 
39
 height              Height             Dimension       0
 
40
 mappedWhenManaged   MappedWhenManaged  Boolean         True
 
41
 sensitive           Sensitive          Boolean         True
 
42
 width               Width              Dimension       0
 
43
 x                   Position           Position        0
 
44
 y                   Position           Position        0
 
45
 
 
46
*/
 
47
 
 
48
 
 
49
/* declare specific RootWindowWidget class and instance datatypes */
 
50
 
 
51
typedef struct _XwRootClassRec* XwRootWidgetClass;
 
52
typedef struct _XwRootRec*      XwRootWidget;
 
53
 
 
54
/* declare the class constant */
 
55
 
 
56
extern WidgetClass xwRootWidgetClass;
 
57
 
 
58
#endif /* __RootIcon_h__ */
 
59