diff options
author | markt <markt> | 2007-10-13 21:51:37 (GMT) |
---|---|---|
committer | markt <markt> | 2007-10-13 21:51:37 (GMT) |
commit | a59428d67a95a9df16554962f0a6257d6378328a (patch) | |
tree | f856ed9300c34f7a17d499f22d895610cfbc08e5 /src/ScreenPlacement.hh | |
parent | 41b5c6dadb1f474675660cef18b812d4c2338ed2 (diff) | |
download | fluxbox_pavel-a59428d67a95a9df16554962f0a6257d6378328a.zip fluxbox_pavel-a59428d67a95a9df16554962f0a6257d6378328a.tar.bz2 |
merged changes from pre-devel
Diffstat (limited to 'src/ScreenPlacement.hh')
-rw-r--r-- | src/ScreenPlacement.hh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ScreenPlacement.hh b/src/ScreenPlacement.hh index be007eb..79d6c21 100644 --- a/src/ScreenPlacement.hh +++ b/src/ScreenPlacement.hh | |||
@@ -43,8 +43,10 @@ class ScreenPlacement: public PlacementStrategy { | |||
43 | public: | 43 | public: |
44 | enum PlacementPolicy { | 44 | enum PlacementPolicy { |
45 | ROWSMARTPLACEMENT, | 45 | ROWSMARTPLACEMENT, |
46 | COLSMARTPLACEMENT, | 46 | COLSMARTPLACEMENT, |
47 | CASCADEPLACEMENT, | 47 | COLMINOVERLAPPLACEMENT, |
48 | ROWMINOVERLAPPLACEMENT, | ||
49 | CASCADEPLACEMENT, | ||
48 | UNDERMOUSEPLACEMENT | 50 | UNDERMOUSEPLACEMENT |
49 | }; | 51 | }; |
50 | 52 | ||
@@ -62,7 +64,7 @@ public: | |||
62 | virtual ~ScreenPlacement() {} | 64 | virtual ~ScreenPlacement() {} |
63 | /// placeWindow is guaranteed to succeed, ignore return value | 65 | /// placeWindow is guaranteed to succeed, ignore return value |
64 | /// @return true | 66 | /// @return true |
65 | bool placeWindow(const std::vector<FluxboxWindow *> &windowlist, | 67 | bool placeWindow(const std::list<FluxboxWindow *> &windowlist, |
66 | const FluxboxWindow &window, | 68 | const FluxboxWindow &window, |
67 | int &place_x, int &place_y); | 69 | int &place_x, int &place_y); |
68 | 70 | ||