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

« back to all changes in this revision

Viewing changes to Xw/RootIconP.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * RootIconP.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 __RootIconP_h__
23
 
#define __RootIconP_h__
24
 
 
25
 
/* include superclass private header file */
26
 
#include <X11/CoreP.h>
27
 
#include <X11/ShellP.h>
28
 
#include <Xw/RootIcon.h>
29
 
 
30
 
typedef struct {
31
 
    int empty;
32
 
} XwRootClassPart;
33
 
 
34
 
typedef struct _XwRootClassRec {
35
 
    CoreClassPart                       core_class;
36
 
        CompositeClassPart              composite_class;
37
 
        ShellClassPart                  shell_class;
38
 
        OverrideShellClassPart  override_shell_class;
39
 
    XwRootClassPart                     root_class;
40
 
} XwRootClassRec;
41
 
 
42
 
typedef struct {
43
 
    /* resources */
44
 
    char* resource;
45
 
    /* private state */
46
 
} XwRootPart;
47
 
 
48
 
typedef struct _RootWindowRec {
49
 
    CorePart            core;
50
 
        CompositePart   composite;
51
 
    XwRootPart          root;
52
 
} XwRootRec;
53
 
 
54
 
extern XwRootClassRec xwRootClassRec;
55
 
 
56
 
#endif /* __RootIconP_h__ */
57