~jamespharaoh/ubuntu/oneiric/unity/fix-for-880672

« back to all changes in this revision

Viewing changes to plugins/unityshell/src/minimizedwindowhandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-08-25 15:40:18 UTC
  • mfrom: (1.1.52 upstream)
  • Revision ID: james.westby@ubuntu.com-20110825154018-enhrknkztdco821i
Tags: 4.10.0-0ubuntu1
* New upstream release:
  - unity task switcher (alt-tab, alt-down) shows empty spaces for iconified 
    windows in window detail mode (lp: #828348)
  - compiz crashed with SIGSEGV in 
    unity::DeviceLauncherIcon::OnStopDriveReady() (lp: #824093)
  - Dash performance issues with 'Active Blur' enabled (lp: #824890)
  - compiz crashed with SIGABRT in raise() when setting background 
    to full color (lp: #829049)
  - Dragging from dash to launcher still doesn't work (lp: #824833)
  - .desktops dragged on to unity launcher will not be added to 
     com.canonical.Unity.Launcher favorites unless moved in the launcher
     (lp: #830536)
  - application's menu shown when the cursor is a little left 
    to window controls (lp: #820293)
  - Ubuntu Start launcher item should always start the dash with 
    the Home screen (lp: #825034)
  - search spinner does not stop hence nothing can be launched with 
    the Return key (lp: #824836)
* debian/control: updated nux requirement
* debian/rules: updated shlibs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2011 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 *
 
18
 * Authored By:
 
19
 * Sam Spilsbury <sam.spilsbury@canonical.com>
 
20
 */
 
21
 
 
22
#ifndef _COMPIZ_MINIMIZEDWINDOWHANDLER_H
 
23
#define _COMPIZ_MINIMIZEDWINDOWHANDLER_H
 
24
 
 
25
#include <X11/Xlib.h>
 
26
#include <X11/Xatom.h>
 
27
#include "transientfor.h"
 
28
#include "inputremover.h"
 
29
#include <boost/shared_ptr.hpp>
 
30
#include <boost/bind.hpp>
 
31
 
 
32
// Will be merged back into compiz
 
33
namespace compiz
 
34
{
 
35
class PrivateMinimizedWindowHandler;
 
36
 
 
37
class MinimizedWindowHandler
 
38
{
 
39
public:
 
40
 
 
41
  MinimizedWindowHandler (Display *dpy, unsigned int xid);
 
42
  ~MinimizedWindowHandler ();
 
43
 
 
44
  virtual void minimize   ();
 
45
  virtual void unminimize ();
 
46
 
 
47
  void setVisibility (bool visible, Window shapeWin);
 
48
 
 
49
  typedef boost::shared_ptr<MinimizedWindowHandler> Ptr;
 
50
 
 
51
  bool contains (boost::shared_ptr <MinimizedWindowHandler> mw);
 
52
 
 
53
protected:
 
54
  virtual std::vector<unsigned int> getTransients ();
 
55
 
 
56
private:
 
57
 
 
58
  PrivateMinimizedWindowHandler *priv;
 
59
};
 
60
}
 
61
 
 
62
#endif