aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-07-04 01:03:41 (GMT)
committerrathnor <rathnor>2003-07-04 01:03:41 (GMT)
commit3144086eef171f6c402182f23bfc80a101e71fa2 (patch)
tree0df61dbcb4a7ce44fd90369b031e5a39037807c0 /src/fluxbox.cc
parent672ac023526d61af2e102a3a27b67eeedb2c4f10 (diff)
downloadfluxbox-3144086eef171f6c402182f23bfc80a101e71fa2.zip
fluxbox-3144086eef171f6c402182f23bfc80a101e71fa2.tar.bz2
support in remember for specifying groups.
Also split atomhandler::setupWindow
Diffstat (limited to 'src/fluxbox.cc')
-rw-r--r--src/fluxbox.cc13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 7f76e46..cb5cb68 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: fluxbox.cc,v 1.167 2003/07/01 20:29:44 fluxgen Exp $ 25// $Id: fluxbox.cc,v 1.168 2003/07/04 01:03:41 rathnor Exp $
26 26
27#include "fluxbox.hh" 27#include "fluxbox.hh"
28 28
@@ -1326,10 +1326,17 @@ void Fluxbox::attachSignals(FluxboxWindow &win) {
1326 win.stateSig().attach(this); 1326 win.stateSig().attach(this);
1327 win.workspaceSig().attach(this); 1327 win.workspaceSig().attach(this);
1328 win.layerSig().attach(this); 1328 win.layerSig().attach(this);
1329 win.winClient().dieSig().attach(this);
1330 win.dieSig().attach(this); 1329 win.dieSig().attach(this);
1331 for (size_t i=0; i<m_atomhandler.size(); ++i) { 1330 for (size_t i=0; i<m_atomhandler.size(); ++i) {
1332 m_atomhandler[i]->setupWindow(win); 1331 m_atomhandler[i]->setupFrame(win);
1332 }
1333}
1334
1335void Fluxbox::attachSignals(WinClient &winclient) {
1336 winclient.dieSig().attach(this);
1337
1338 for (size_t i=0; i<m_atomhandler.size(); ++i) {
1339 m_atomhandler[i]->setupClient(winclient);
1333 } 1340 }
1334} 1341}
1335 1342