2007-10-13 21:51:37 +00:00
|
|
|
// ClientMenu.hh
|
2008-09-21 18:45:01 +00:00
|
|
|
// Copyright (c) 2007-2008 Fluxbox Team (fluxgen at fluxbox dot org)
|
2001-12-11 20:47:02 +00:00
|
|
|
//
|
|
|
|
// 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,
|
2003-12-19 00:48:16 +00:00
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
2001-12-11 20:47:02 +00:00
|
|
|
// 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.
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
#ifndef CLIENTMENU_HH
|
|
|
|
#define CLIENTMENU_HH
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
#include "FbMenu.hh"
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2008-09-21 18:45:01 +00:00
|
|
|
#include "FbTk/Signal.hh"
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
class BScreen;
|
|
|
|
class FluxboxWindow;
|
2010-03-26 17:15:45 +00:00
|
|
|
class Focusable;
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
/**
|
|
|
|
* A menu holding a set of client menus.
|
|
|
|
* @see WorkspaceMenu
|
|
|
|
*/
|
2011-05-03 21:48:24 +00:00
|
|
|
class ClientMenu: public FbMenu {
|
2007-10-13 21:51:37 +00:00
|
|
|
public:
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
typedef std::list<FluxboxWindow *> Focusables;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
/**
|
|
|
|
* @param screen the screen to show this menu on
|
|
|
|
* @param client a list of clients to show in this menu
|
2008-09-21 18:45:01 +00:00
|
|
|
* @param listen_for_iconlist_changes Listen for list changes from the \c screen.
|
2007-10-13 21:51:37 +00:00
|
|
|
*/
|
|
|
|
ClientMenu(BScreen &screen,
|
2008-09-21 18:45:01 +00:00
|
|
|
Focusables &clients, bool listen_for_iconlist_changes);
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
/// refresh the entire menu
|
|
|
|
void refreshMenu();
|
2010-03-26 17:15:45 +00:00
|
|
|
|
|
|
|
/// Called when window title changed.
|
|
|
|
void titleChanged(Focusable& win);
|
|
|
|
|
2011-05-03 21:48:24 +00:00
|
|
|
/// Called when a client dies. Removes the corresponding menu item
|
|
|
|
void clientDied(Focusable& win);
|
|
|
|
|
2008-09-21 18:45:01 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
void updateClientList(BScreen& screen) {
|
|
|
|
refreshMenu();
|
|
|
|
}
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
Focusables &m_list; ///< clients in the menu
|
2008-09-21 18:45:01 +00:00
|
|
|
FbTk::SignalTracker m_slots; ///< track all the slots
|
2001-12-11 20:47:02 +00:00
|
|
|
};
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
#endif // CLIENTMENU_HH
|