diff options
-rw-r--r-- | src/ClientPattern.cc | 1 | ||||
-rw-r--r-- | src/FbTk/XLayer.cc | 13 | ||||
-rw-r--r-- | src/FbTk/XLayer.hh | 9 | ||||
-rw-r--r-- | src/FbTk/XLayerItem.cc | 18 | ||||
-rw-r--r-- | src/FbTk/XLayerItem.hh | 6 | ||||
-rw-r--r-- | src/FocusControl.cc | 1 | ||||
-rw-r--r-- | src/FocusableList.cc | 1 | ||||
-rw-r--r-- | src/MenuCreator.cc | 1 | ||||
-rw-r--r-- | src/Toolbar.cc | 1 |
9 files changed, 30 insertions, 21 deletions
diff --git a/src/ClientPattern.cc b/src/ClientPattern.cc index 3802e59..500574e 100644 --- a/src/ClientPattern.cc +++ b/src/ClientPattern.cc | |||
@@ -42,6 +42,7 @@ | |||
42 | #include <fstream> | 42 | #include <fstream> |
43 | #include <string> | 43 | #include <string> |
44 | #include <memory> | 44 | #include <memory> |
45 | #include <algorithm> | ||
45 | #ifdef HAVE_CSTDIO | 46 | #ifdef HAVE_CSTDIO |
46 | #include <cstdio> | 47 | #include <cstdio> |
47 | #else | 48 | #else |
diff --git a/src/FbTk/XLayer.cc b/src/FbTk/XLayer.cc index 21790cb..f20f8ff 100644 --- a/src/FbTk/XLayer.cc +++ b/src/FbTk/XLayer.cc | |||
@@ -27,9 +27,9 @@ | |||
27 | #include "MultLayers.hh" | 27 | #include "MultLayers.hh" |
28 | 28 | ||
29 | #include <iostream> | 29 | #include <iostream> |
30 | #include <algorithm> | ||
30 | #include <numeric> | 31 | #include <numeric> |
31 | 32 | ||
32 | using std::find; | ||
33 | using namespace FbTk; | 33 | using namespace FbTk; |
34 | 34 | ||
35 | #ifdef DEBUG | 35 | #ifdef DEBUG |
@@ -91,7 +91,7 @@ void XLayer::restack(const std::vector<XLayer*>& layers) { | |||
91 | std::vector<Window> stack; | 91 | std::vector<Window> stack; |
92 | std::vector<XLayer*>::const_iterator l; | 92 | std::vector<XLayer*>::const_iterator l; |
93 | for (l = layers.begin(); l != layers.end(); ++l) { | 93 | for (l = layers.begin(); l != layers.end(); ++l) { |
94 | extract_windows_to_stack((*l)->getItemList(), 0, stack); | 94 | extract_windows_to_stack((*l)->itemList(), 0, stack); |
95 | } | 95 | } |
96 | 96 | ||
97 | if (!stack.empty()) | 97 | if (!stack.empty()) |
@@ -160,7 +160,7 @@ void XLayer::alignItem(XLayerItem &item) { | |||
160 | // Note: some other things effectively assume that the window list is | 160 | // Note: some other things effectively assume that the window list is |
161 | // sorted from highest to lowest | 161 | // sorted from highest to lowest |
162 | // get our item | 162 | // get our item |
163 | iterator myit = find(itemList().begin(), itemList().end(), &item); | 163 | iterator myit = std::find(itemList().begin(), itemList().end(), &item); |
164 | iterator it = myit; | 164 | iterator it = myit; |
165 | 165 | ||
166 | // go to the one above it in our layer (top is front, so we decrement) | 166 | // go to the one above it in our layer (top is front, so we decrement) |
@@ -211,7 +211,8 @@ void XLayer::raise(XLayerItem &item) { | |||
211 | return; // nothing to do | 211 | return; // nothing to do |
212 | } | 212 | } |
213 | 213 | ||
214 | iterator it = find(itemList().begin(), itemList().end(), &item); | 214 | |
215 | iterator it = std::find(itemList().begin(), itemList().end(), &item); | ||
215 | if (it != itemList().end()) | 216 | if (it != itemList().end()) |
216 | itemList().erase(it); | 217 | itemList().erase(it); |
217 | else { | 218 | else { |
@@ -232,7 +233,7 @@ void XLayer::tempRaise(XLayerItem &item) { | |||
232 | if (!m_needs_restack && &item == itemList().front()) | 233 | if (!m_needs_restack && &item == itemList().front()) |
233 | return; // nothing to do | 234 | return; // nothing to do |
234 | 235 | ||
235 | iterator it = find(itemList().begin(), itemList().end(), &item); | 236 | iterator it = std::find(itemList().begin(), itemList().end(), &item); |
236 | if (it == itemList().end()) { | 237 | if (it == itemList().end()) { |
237 | #ifdef DEBUG | 238 | #ifdef DEBUG |
238 | cerr<<__FILE__<<"("<<__LINE__<<"): WARNING: raise on item not in layer["<<m_layernum<<"]"<<endl; | 239 | cerr<<__FILE__<<"("<<__LINE__<<"): WARNING: raise on item not in layer["<<m_layernum<<"]"<<endl; |
@@ -258,7 +259,7 @@ void XLayer::lower(XLayerItem &item) { | |||
258 | return; // nothing to do | 259 | return; // nothing to do |
259 | } | 260 | } |
260 | 261 | ||
261 | iterator it = find(itemList().begin(), itemList().end(), &item); | 262 | iterator it = std::find(itemList().begin(), itemList().end(), &item); |
262 | if (it != itemList().end()) | 263 | if (it != itemList().end()) |
263 | // remove this item | 264 | // remove this item |
264 | itemList().erase(it); | 265 | itemList().erase(it); |
diff --git a/src/FbTk/XLayer.hh b/src/FbTk/XLayer.hh index 3b7e45f..6255950 100644 --- a/src/FbTk/XLayer.hh +++ b/src/FbTk/XLayer.hh | |||
@@ -23,7 +23,7 @@ | |||
23 | #ifndef FBTK_XLAYER_HH | 23 | #ifndef FBTK_XLAYER_HH |
24 | #define FBTK_XLAYER_HH | 24 | #define FBTK_XLAYER_HH |
25 | 25 | ||
26 | #include "Layer.hh" | 26 | #include <vector> |
27 | #include <list> | 27 | #include <list> |
28 | 28 | ||
29 | namespace FbTk { | 29 | namespace FbTk { |
@@ -31,7 +31,7 @@ namespace FbTk { | |||
31 | class MultLayers; | 31 | class MultLayers; |
32 | class XLayerItem; | 32 | class XLayerItem; |
33 | 33 | ||
34 | class XLayer : public FbTk::LayerBase<XLayerItem, std::list<XLayerItem *> > { | 34 | class XLayer { |
35 | public: | 35 | public: |
36 | 36 | ||
37 | XLayer(MultLayers &manager, int layernum); | 37 | XLayer(MultLayers &manager, int layernum); |
@@ -49,8 +49,8 @@ public: | |||
49 | int countWindows(); | 49 | int countWindows(); |
50 | void stackBelowItem(XLayerItem &item, XLayerItem *above); | 50 | void stackBelowItem(XLayerItem &item, XLayerItem *above); |
51 | XLayerItem *getLowestItem(); | 51 | XLayerItem *getLowestItem(); |
52 | const ItemList &getItemList() const { return itemList(); } | 52 | const ItemList &itemList() const { return m_items; } |
53 | ItemList &getItemList() { return itemList(); } | 53 | ItemList &itemList() { return m_items; } |
54 | 54 | ||
55 | // we redefine these as XLayer has special optimisations, and X restacking needs | 55 | // we redefine these as XLayer has special optimisations, and X restacking needs |
56 | iterator insert(XLayerItem &item, unsigned int pos=0); | 56 | iterator insert(XLayerItem &item, unsigned int pos=0); |
@@ -77,6 +77,7 @@ private: | |||
77 | MultLayers &m_manager; | 77 | MultLayers &m_manager; |
78 | int m_layernum; | 78 | int m_layernum; |
79 | bool m_needs_restack; | 79 | bool m_needs_restack; |
80 | ItemList m_items; | ||
80 | }; | 81 | }; |
81 | 82 | ||
82 | } // namespace FbTk | 83 | } // namespace FbTk |
diff --git a/src/FbTk/XLayerItem.cc b/src/FbTk/XLayerItem.cc index d822590..7f6f594 100644 --- a/src/FbTk/XLayerItem.cc +++ b/src/FbTk/XLayerItem.cc | |||
@@ -23,11 +23,13 @@ | |||
23 | #include "XLayerItem.hh" | 23 | #include "XLayerItem.hh" |
24 | #include "XLayer.hh" | 24 | #include "XLayer.hh" |
25 | 25 | ||
26 | #include <algorithm> | ||
27 | |||
26 | using namespace FbTk; | 28 | using namespace FbTk; |
27 | 29 | ||
28 | XLayerItem::XLayerItem(FbWindow &win, XLayer &layer) : | 30 | XLayerItem::XLayerItem(FbWindow &win, XLayer &layer) : |
29 | m_layer(&layer) { | 31 | m_layer(&layer) { |
30 | m_windows.push_front(&win); | 32 | m_windows.push_back(&win); |
31 | m_layer->insert(*this); | 33 | m_layer->insert(*this); |
32 | } | 34 | } |
33 | 35 | ||
@@ -78,15 +80,15 @@ void XLayerItem::addWindow(FbWindow &win) { | |||
78 | } | 80 | } |
79 | 81 | ||
80 | void XLayerItem::removeWindow(FbWindow &win) { | 82 | void XLayerItem::removeWindow(FbWindow &win) { |
81 | // I'd like to think we can trust ourselves that it won't be added twice... | 83 | // I'd like to think we can trust ourselves that it won't be added twice... |
82 | // Otherwise we're always scanning through the list. | 84 | // Otherwise we're always scanning through the list. |
83 | 85 | ||
84 | XLayerItem::Windows::iterator it = std::find(m_windows.begin(), m_windows.end(), &win); | 86 | XLayerItem::Windows::iterator it = std::find(m_windows.begin(), m_windows.end(), &win); |
85 | if (it != m_windows.end()) | 87 | if (it != m_windows.end()) |
86 | m_windows.erase(it); | 88 | m_windows.erase(it); |
87 | } | 89 | } |
88 | 90 | ||
89 | void XLayerItem::bringToTop(FbWindow &win) { | 91 | void XLayerItem::bringToTop(FbWindow &win) { |
90 | removeWindow(win); | 92 | removeWindow(win); |
91 | addWindow(win); | 93 | addWindow(win); |
92 | } | 94 | } |
diff --git a/src/FbTk/XLayerItem.hh b/src/FbTk/XLayerItem.hh index 8f9aebe..67da511 100644 --- a/src/FbTk/XLayerItem.hh +++ b/src/FbTk/XLayerItem.hh | |||
@@ -23,17 +23,17 @@ | |||
23 | #ifndef FBTK_XLAYERITEM_HH | 23 | #ifndef FBTK_XLAYERITEM_HH |
24 | #define FBTK_XLAYERITEM_HH | 24 | #define FBTK_XLAYERITEM_HH |
25 | 25 | ||
26 | #include "LayerItem.hh" | ||
27 | #include "XLayer.hh" | 26 | #include "XLayer.hh" |
28 | #include "NotCopyable.hh" | 27 | #include "NotCopyable.hh" |
28 | #include <vector> | ||
29 | 29 | ||
30 | namespace FbTk { | 30 | namespace FbTk { |
31 | 31 | ||
32 | class FbWindow; | 32 | class FbWindow; |
33 | 33 | ||
34 | class XLayerItem : public LayerItem, private NotCopyable { | 34 | class XLayerItem : private NotCopyable { |
35 | public: | 35 | public: |
36 | typedef std::list<FbWindow *> Windows; | 36 | typedef std::vector<FbWindow *> Windows; |
37 | 37 | ||
38 | XLayerItem(FbWindow &win, XLayer &layer); | 38 | XLayerItem(FbWindow &win, XLayer &layer); |
39 | ~XLayerItem(); | 39 | ~XLayerItem(); |
diff --git a/src/FocusControl.cc b/src/FocusControl.cc index 9afa605..5bf113f 100644 --- a/src/FocusControl.cc +++ b/src/FocusControl.cc | |||
@@ -34,6 +34,7 @@ | |||
34 | 34 | ||
35 | #include <string> | 35 | #include <string> |
36 | #include <iostream> | 36 | #include <iostream> |
37 | #include <algorithm> | ||
37 | #ifdef HAVE_CSTRING | 38 | #ifdef HAVE_CSTRING |
38 | #include <cstring> | 39 | #include <cstring> |
39 | #else | 40 | #else |
diff --git a/src/FocusableList.cc b/src/FocusableList.cc index 77e0a76..748e940 100644 --- a/src/FocusableList.cc +++ b/src/FocusableList.cc | |||
@@ -31,6 +31,7 @@ | |||
31 | #include "FbTk/MemFun.hh" | 31 | #include "FbTk/MemFun.hh" |
32 | 32 | ||
33 | #include <vector> | 33 | #include <vector> |
34 | #include <algorithm> | ||
34 | 35 | ||
35 | #ifdef HAVE_CSTRING | 36 | #ifdef HAVE_CSTRING |
36 | #include <cstring> | 37 | #include <cstring> |
diff --git a/src/MenuCreator.cc b/src/MenuCreator.cc index 63691af..72e55ca 100644 --- a/src/MenuCreator.cc +++ b/src/MenuCreator.cc | |||
@@ -54,6 +54,7 @@ | |||
54 | #include "FbTk/Transparent.hh" | 54 | #include "FbTk/Transparent.hh" |
55 | 55 | ||
56 | #include <iostream> | 56 | #include <iostream> |
57 | #include <algorithm> | ||
57 | 58 | ||
58 | using std::cerr; | 59 | using std::cerr; |
59 | using std::endl; | 60 | using std::endl; |
diff --git a/src/Toolbar.cc b/src/Toolbar.cc index ac53af2..26722f7 100644 --- a/src/Toolbar.cc +++ b/src/Toolbar.cc | |||
@@ -75,6 +75,7 @@ | |||
75 | #include <iterator> | 75 | #include <iterator> |
76 | #include <typeinfo> | 76 | #include <typeinfo> |
77 | #include <functional> | 77 | #include <functional> |
78 | #include <algorithm> | ||
78 | 79 | ||
79 | using std::string; | 80 | using std::string; |
80 | using std::pair; | 81 | using std::pair; |