~ubuntu-branches/ubuntu/precise/xfwm4/precise-updates

« back to all changes in this revision

Viewing changes to src/workspaces.h

  • Committer: Bazaar Package Importer
  • Author(s): Jérôme Guelfucci, Jérôme Guelfucci, Lionel Le Folgoc
  • Date: 2009-01-30 18:28:59 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20090130182859-1tci3n1f1hhppvc2
Tags: 4.5.99.1-0ubuntu1
[ Jérôme Guelfucci ]
* Merge with Debian Xfce UNRELEASED, remaining Ubuntu changes:
  - debian/xfwm4.1: update bug reporting address (LP instead of Debian BTS).

[ Lionel Le Folgoc ]
* debian/control: use our Vcs-* fields.
* Bugs fixed by this new release:
  - "User interface of focused application is covered by another application's
    new window in Xfce" (LP: #250101)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*      $Id: workspaces.h 28362 2008-10-22 19:58:39Z olivier $
 
1
/*      $Id$
2
2
 
3
3
        This program is free software; you can redistribute it and/or modify
4
4
        it under the terms of the GNU General Public License as published by
12
12
 
13
13
        You should have received a copy of the GNU General Public License
14
14
        along with this program; if not, write to the Free Software
15
 
        Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
15
        Foundation, Inc., Inc., 51 Franklin Street, Fifth Floor, Boston,
 
16
        MA 02110-1301, USA.
 
17
 
16
18
 
17
19
        oroborus - (c) 2001 Ken Lynch
18
 
        xfwm4    - (c) 2002-2006 Olivier Fourdan
 
20
        xfwm4    - (c) 2002-2009 Olivier Fourdan
19
21
 
20
22
 */
21
23
 
23
25
#define INC_WORKSPACES_H
24
26
 
25
27
#ifdef HAVE_CONFIG_H
26
 
#  include "config.h"
 
28
#include "config.h"
27
29
#endif
28
30
 
29
31
#include <X11/X.h>
35
37
#include "screen.h"
36
38
#include "client.h"
37
39
 
38
 
gboolean                workspaceMove                           (ScreenInfo *, 
39
 
                                                                 int, 
40
 
                                                                 int, 
 
40
gboolean                workspaceMove                           (ScreenInfo *,
 
41
                                                                 int,
 
42
                                                                 int,
41
43
                                                                 Client *,
42
44
                                                                 guint32);
43
 
void                    workspaceSwitch                         (ScreenInfo *, 
44
 
                                                                 int, 
45
 
                                                                 Client *, 
 
45
void                    workspaceSwitch                         (ScreenInfo *,
 
46
                                                                 int,
 
47
                                                                 Client *,
46
48
                                                                 gboolean,
47
49
                                                                 guint32);
48
 
void                    workspaceSetNames                       (ScreenInfo *, 
49
 
                                                                 gchar **, 
 
50
void                    workspaceSetNames                       (ScreenInfo *,
 
51
                                                                 gchar **,
50
52
                                                                 int);
51
 
void                    workspaceSetCount                       (ScreenInfo *, 
 
53
void                    workspaceSetCount                       (ScreenInfo *,
52
54
                                                                 int);
53
55
void                    workspaceUpdateArea                     (ScreenInfo *);
54
56
 
 
57
void                    workspaceInsert                         (ScreenInfo *,
 
58
                                                                 int);
 
59
 
 
60
void                    workspaceDelete                         (ScreenInfo *,
 
61
                                                                 int);
 
62
 
55
63
#endif /* INC_WORKSPACES_H */