aboutsummaryrefslogtreecommitdiff
path: root/src/Container.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-04-07 17:39:27 (GMT)
committermarkt <markt>2007-04-07 17:39:27 (GMT)
commit12a8b3c038c9ccb577c699d41a1d19602132a7a8 (patch)
tree2a23392db366c10c8b6f7ee444ee8ac578010b5c /src/Container.hh
parent416578138e899f817b875ad55a5252a19aa6cb07 (diff)
downloadfluxbox-12a8b3c038c9ccb577c699d41a1d19602132a7a8.zip
fluxbox-12a8b3c038c9ccb577c699d41a1d19602132a7a8.tar.bz2
more of the same
Diffstat (limited to 'src/Container.hh')
-rw-r--r--src/Container.hh4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/Container.hh b/src/Container.hh
index cfaf1ea..69da43d 100644
--- a/src/Container.hh
+++ b/src/Container.hh
@@ -65,7 +65,6 @@ public:
65 void moveItem(Item item, int movement); // wraps around 65 void moveItem(Item item, int movement); // wraps around
66 bool moveItemTo(Item item, int x, int y); 66 bool moveItemTo(Item item, int x, int y);
67 int find(ConstItem item); 67 int find(ConstItem item);
68 void setSelected(int index);
69 void setMaxSizePerClient(unsigned int size); 68 void setMaxSizePerClient(unsigned int size);
70 void setMaxTotalSize(unsigned int size); 69 void setMaxTotalSize(unsigned int size);
71 void setAlignment(Alignment a); 70 void setAlignment(Alignment a);
@@ -93,8 +92,6 @@ public:
93 inline FbTk::Orientation orientation() const { return m_orientation; } 92 inline FbTk::Orientation orientation() const { return m_orientation; }
94 inline int size() const { return m_item_list.size(); } 93 inline int size() const { return m_item_list.size(); }
95 inline bool empty() const { return m_item_list.empty(); } 94 inline bool empty() const { return m_item_list.empty(); }
96 inline const Item& selected() const { return m_selected; }
97 inline Item selected() { return m_selected; }
98 unsigned int maxWidthPerClient() const; 95 unsigned int maxWidthPerClient() const;
99 inline bool updateLock() const { return m_update_lock; } 96 inline bool updateLock() const { return m_update_lock; }
100 97
@@ -115,7 +112,6 @@ private:
115 unsigned int m_max_size_per_client; 112 unsigned int m_max_size_per_client;
116 unsigned int m_max_total_size; 113 unsigned int m_max_total_size;
117 ItemList m_item_list; 114 ItemList m_item_list;
118 Item m_selected;
119 bool m_update_lock; 115 bool m_update_lock;
120}; 116};
121 117