~ubuntu-branches/ubuntu/trusty/libcdk5/trusty

« back to all changes in this revision

Viewing changes to include/cdkscreen.h

  • Committer: Bazaar Package Importer
  • Author(s): John Goerzen
  • Date: 2007-06-06 03:54:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070606035431-ba4gdvw0h6ybffsu
Tags: 5.0.20060507-1
* New upstream release.
* Fixed header patching.  Patch from Robert Schiele.
  Closes: #402978, #416336.
* Update widget count in description.  Closes: #294709.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: cdkscreen.h,v 1.14 2004/08/20 22:16:54 tom Exp $
 
2
 * $Id: cdkscreen.h,v 1.16 2005/12/30 01:53:30 tom Exp $
3
3
 */
4
4
 
5
5
#ifndef CDKINCLUDES
17
17
#endif
18
18
 
19
19
/*
20
 
 * Changes 1999-2003,2004 copyright Thomas E. Dickey
 
20
 * Changes 1999-2004,2005 copyright Thomas E. Dickey
21
21
 *
22
22
 * Copyright 1999, Mike Glover
23
23
 * All rights reserved.
84
84
                WINDOW *        /* window */);
85
85
 
86
86
/*
87
 
 * This registers a CDKSCREEN. You would do this if you had more
88
 
 * than one screen created and you wanted them managed.
89
 
 */
90
 
int registerCDKScreen (
91
 
                CDKSCREEN **    /* screens */);
92
 
 
93
 
/*
94
 
 * This removes the given CDKSCREEN pointer from the array
95
 
 * of managed screens.
96
 
 */
97
 
int unregisterCDKScreen (
98
 
                CDKSCREEN **    /* screens */);
99
 
 
100
 
/*
101
 
 * This raises a screen in a list of managed screens.
102
 
 */
103
 
void raiseCDKScreen (
104
 
                CDKSCREEN **    /* screens */);
105
 
 
106
 
/*
107
 
 * This lowers a screen in a list of managed screens.
108
 
 */
109
 
void lowerCDKScreen (
110
 
                CDKSCREEN **    /* screens */);
111
 
 
112
 
/*
113
87
 * This sets which CDKSCREEN pointer will be the default screen
114
88
 * in the list of managed screen.
115
89
 */