diff options
Diffstat (limited to 'src/FbTk/Container.hh')
-rw-r--r-- | src/FbTk/Container.hh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/FbTk/Container.hh b/src/FbTk/Container.hh index 7fb1e32..5fa13f3 100644 --- a/src/FbTk/Container.hh +++ b/src/FbTk/Container.hh | |||
@@ -71,9 +71,9 @@ public: | |||
71 | Item back() { return m_item_list.back(); } | 71 | Item back() { return m_item_list.back(); } |
72 | 72 | ||
73 | /// force update | 73 | /// force update |
74 | inline void update() { repositionItems(); } | 74 | void update() { repositionItems(); } |
75 | /// so we can add items without having an graphic update for each item | 75 | /// so we can add items without having an graphic update for each item |
76 | inline void setUpdateLock(bool value) { m_update_lock = value; } | 76 | void setUpdateLock(bool value) { m_update_lock = value; } |
77 | 77 | ||
78 | /// event handler | 78 | /// event handler |
79 | void exposeEvent(XExposeEvent &event); | 79 | void exposeEvent(XExposeEvent &event); |
@@ -86,12 +86,12 @@ public: | |||
86 | void invalidateBackground(); | 86 | void invalidateBackground(); |
87 | 87 | ||
88 | /// accessors | 88 | /// accessors |
89 | inline Alignment alignment() const { return m_align; } | 89 | Alignment alignment() const { return m_align; } |
90 | inline Orientation orientation() const { return m_orientation; } | 90 | Orientation orientation() const { return m_orientation; } |
91 | inline int size() const { return m_item_list.size(); } | 91 | int size() const { return m_item_list.size(); } |
92 | inline bool empty() const { return m_item_list.empty(); } | 92 | bool empty() const { return m_item_list.empty(); } |
93 | unsigned int maxWidthPerClient() const; | 93 | unsigned int maxWidthPerClient() const; |
94 | inline bool updateLock() const { return m_update_lock; } | 94 | bool updateLock() const { return m_update_lock; } |
95 | 95 | ||
96 | void for_each(std::mem_fun_t<void, FbWindow> function); | 96 | void for_each(std::mem_fun_t<void, FbWindow> function); |
97 | void setAlpha(unsigned char alpha); // set alpha on all windows | 97 | void setAlpha(unsigned char alpha); // set alpha on all windows |