fluxbox/src/SendToMenu.cc

106 lines
3.5 KiB
C++
Raw Normal View History

2003-11-27 21:57:17 +00:00
// SendToMenu.cc for Fluxbox
2006-02-16 06:53:05 +00:00
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
2003-11-27 21:57:17 +00:00
// and Simon Bowden (rathnor at users.sourceforge.net)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
2004-11-19 11:37:27 +00:00
// $Id$
2003-11-27 21:57:17 +00:00
#include "SendToMenu.hh"
#include "Window.hh"
#include "Screen.hh"
#include "Workspace.hh"
#include "WindowCmd.hh"
#include "fluxbox.hh"
#include "Layer.hh"
2003-11-27 21:57:17 +00:00
2005-04-23 10:03:06 +00:00
#include "FbTk/MultiButtonMenuItem.hh"
2003-11-27 21:57:17 +00:00
#include "FbTk/Command.hh"
class SendToCmd: public FbTk::Command {
public:
SendToCmd(int workspace, bool follow):
2005-04-23 10:03:06 +00:00
m_workspace(workspace),
m_follow(follow) { }
2003-11-27 21:57:17 +00:00
void execute() {
if (WindowCmd<void>::window() != 0)
WindowCmd<void>::window()->screen().sendToWorkspace(m_workspace, WindowCmd<void>::window(), m_follow);
2003-11-27 21:57:17 +00:00
}
private:
const int m_workspace;
2005-04-23 10:03:06 +00:00
const bool m_follow;
2003-11-27 21:57:17 +00:00
};
SendToMenu::SendToMenu(BScreen &screen):
FbMenu(screen.menuTheme(),
screen.imageControl(),
*screen.layerManager().getLayer(Layer::MENU)) {
2003-11-28 13:39:41 +00:00
// listen to:
// workspace count signal
// workspace names signal
// current workspace signal
screen.workspaceCountSig().attach(this);
screen.workspaceNamesSig().attach(this);
screen.currentWorkspaceSig().attach(this);
2003-11-27 21:57:17 +00:00
disableTitle();
2003-11-28 13:39:41 +00:00
// build menu
update(0);
2003-11-27 21:57:17 +00:00
}
void SendToMenu::update(FbTk::Subject *subj) {
2003-12-17 00:45:30 +00:00
if (subj != 0) {
if (subj == &(theme().reconfigSig())) {
2003-12-17 00:45:30 +00:00
// we got reconfig Theme signal, let base menu handle it
FbTk::Menu::update(subj);
return;
}
2003-11-28 13:39:41 +00:00
}
2003-11-27 21:57:17 +00:00
// rebuild menu
removeAll();
BScreen *screen = Fluxbox::instance()->findScreen(screenNumber());
const BScreen::Workspaces &wlist = screen->getWorkspacesList();
2003-11-27 21:57:17 +00:00
for (size_t i = 0; i < wlist.size(); ++i) {
FbTk::RefCount<FbTk::Command> sendto_cmd(new SendToCmd(i, false));
FbTk::RefCount<FbTk::Command> sendto_follow_cmd(new SendToCmd(i, true));
2005-04-23 10:03:06 +00:00
FbTk::MultiButtonMenuItem* item = new FbTk::MultiButtonMenuItem(3, wlist[i]->name());
2005-04-23 10:03:06 +00:00
item->setCommand(1, sendto_cmd);
item->setCommand(2, sendto_follow_cmd);
item->setCommand(3, sendto_cmd);
insert(item);
2003-11-27 21:57:17 +00:00
}
updateMenu();
2003-11-27 21:57:17 +00:00
}
void SendToMenu::show() {
if (WindowCmd<void>::window() != 0) {
for (unsigned int i=0; i < numberOfItems(); ++i)
setItemEnabled(i, true);
setItemEnabled(WindowCmd<void>::window()->workspaceNumber(), false);
updateMenu();
}
FbTk::Menu::show();
}