fluxbox/src/FocusControl.hh

178 lines
7 KiB
C++
Raw Normal View History

// FocusControl.hh
// Copyright (c) 2006 Fluxbox Team (fluxgen at fluxbox dot org)
//
// 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.
#ifndef FOCUSCONTROL_HH
#define FOCUSCONTROL_HH
#include <list>
#include "FbTk/Resource.hh"
#include "FocusableList.hh"
2007-10-13 21:51:37 +00:00
class ClientPattern;
class WinClient;
class FluxboxWindow;
2007-10-13 21:51:37 +00:00
class Focusable;
class BScreen;
/**
* Handles window focus for a specific screen.
* It also holds the static "global" focused window
*/
class FocusControl {
public:
2007-10-13 21:51:37 +00:00
typedef std::list<Focusable *> Focusables;
2007-04-01 11:50:32 +00:00
/// main focus model
enum FocusModel {
2007-04-01 11:50:32 +00:00
MOUSEFOCUS = 0, ///< focus follows mouse
CLICKFOCUS ///< focus on click
};
2007-04-01 11:50:32 +00:00
/// focus model for tabs
enum TabFocusModel {
MOUSETABFOCUS = 0, ///< tab focus follows mouse
CLICKTABFOCUS ///< tab focus on click
};
2007-04-01 11:50:32 +00:00
/// focus direction for windows
enum FocusDir {
2007-04-01 11:50:32 +00:00
FOCUSUP, ///< window is above
FOCUSDOWN, ///< window is down
FOCUSLEFT, ///< window is left
FOCUSRIGHT ///< window is right
};
explicit FocusControl(BScreen &screen);
2007-04-01 11:50:32 +00:00
/// cycle previous focuable
void prevFocus() { cycleFocus(m_focused_list, 0, true); }
2007-04-01 11:50:32 +00:00
/// cycle next focusable
void nextFocus() { cycleFocus(m_focused_list, 0, false); }
2007-04-01 11:50:32 +00:00
/**
* Cycle focus for a set of windows.
* @param winlist the windowlist to cycle through
2007-10-13 21:51:37 +00:00
* @param pat pattern for matching focusables
2007-04-01 11:50:32 +00:00
* @param reverse reverse the cycle order
*/
void cycleFocus(const FocusableList &winlist, const ClientPattern *pat = 0,
2007-10-13 21:51:37 +00:00
bool reverse = false);
void goToWindowNumber(const FocusableList &winlist, int num,
2007-10-13 21:51:37 +00:00
const ClientPattern *pat = 0);
2007-04-01 11:50:32 +00:00
/// sets the focused window on a screen
void setScreenFocusedWindow(WinClient &win_client);
2007-04-01 11:50:32 +00:00
/// sets the main focus model
void setFocusModel(FocusModel model);
2007-04-01 11:50:32 +00:00
/// sets tab focus model
2007-10-13 21:51:37 +00:00
void setTabFocusModel(TabFocusModel model);
2007-04-01 11:50:32 +00:00
/// stop cycling mode
void stopCyclingFocus();
2007-04-01 11:50:32 +00:00
/**
* Do directional focus mode.
* @param win current window
* @param dir direction from current window to focus.
*/
void dirFocus(FluxboxWindow &win, FocusDir dir);
2007-04-01 11:50:32 +00:00
/// @return true if focus mode is mouse focus
bool isMouseFocus() const { return focusModel() == MOUSEFOCUS; }
2007-04-01 11:50:32 +00:00
/// @return true if tab focus mode is mouse tab focus
bool isMouseTabFocus() const { return tabFocusModel() == MOUSETABFOCUS; }
/// Set the "ignore" pointer location to the current pointer location
void ignoreAtPointer();
/// Set the "ignore" pointer location to the given coordinates
void ignoreAt(int x, int y);
/// @return true if events at the given X/Y coordinate should be ignored
/// (ie, they were previously cached via one of the ignoreAt calls)
bool isIgnored(int x, int y);
2007-04-01 11:50:32 +00:00
/// @return true if cycling is in progress
bool isCycling() const { return m_cycling_list != 0; }
2007-10-13 21:51:37 +00:00
/// Appends a client to the front of the focus list
void addFocusBack(WinClient &client);
2007-04-01 11:50:32 +00:00
/// Appends a client to the front of the focus list
void addFocusFront(WinClient &client);
2007-10-13 21:51:37 +00:00
void addFocusWinBack(Focusable &win);
void addFocusWinFront(Focusable &win);
void setFocusBack(FluxboxWindow &fbwin);
2007-04-01 11:50:32 +00:00
/// @return main focus model
FocusModel focusModel() const { return *m_focus_model; }
2007-04-01 11:50:32 +00:00
/// @return tab focus model
TabFocusModel tabFocusModel() const { return *m_tab_focus_model; }
2007-04-01 11:50:32 +00:00
/// @return true if newly created windows are focused
bool focusNew() const { return *m_focus_new; }
2007-10-13 21:51:37 +00:00
2007-04-01 11:50:32 +00:00
/// @return last focused client in a specific workspace, or NULL.
2007-10-13 21:51:37 +00:00
Focusable *lastFocusedWindow(int workspace);
WinClient *lastFocusedWindow(FluxboxWindow &group, WinClient *ignore_client = 0);
2007-04-01 11:50:32 +00:00
/// @return focus list in creation order
const FocusableList &creationOrderList() const { return m_creation_order_list; }
2007-10-13 21:51:37 +00:00
/// @return the focus list in focused order
const FocusableList &focusedOrderList() const { return m_focused_list; }
const FocusableList &creationOrderWinList() const { return m_creation_order_win_list; }
const FocusableList &focusedOrderWinList() const { return m_focused_win_list; }
2007-10-13 21:51:37 +00:00
/// remove client from focus list
void removeClient(WinClient &client);
2007-10-13 21:51:37 +00:00
/// remove window from focus list
void removeWindow(Focusable &win);
2007-04-01 11:50:32 +00:00
/// starts terminating this control
void shutdown();
2007-10-13 21:51:37 +00:00
2007-04-01 11:50:32 +00:00
/// do fallback focus for screen if normal focus control failed.
static void revertFocus(BScreen &screen);
// like revertFocus, but specifically related to this window (transients etc)
static void unfocusWindow(WinClient &client, bool full_revert = true, bool unfocus_frame = false);
static void setFocusedWindow(WinClient *focus_to);
2006-06-29 18:01:33 +00:00
static void setFocusedFbWindow(FluxboxWindow *focus_to) { s_focused_fbwindow = focus_to; }
2008-01-13 00:47:40 +00:00
static void setExpectingFocus(WinClient *client) { s_expecting_focus = client; }
static WinClient *focusedWindow() { return s_focused_window; }
2006-06-29 18:01:33 +00:00
static FluxboxWindow *focusedFbWindow() { return s_focused_fbwindow; }
2008-01-13 00:47:40 +00:00
static WinClient *expectingFocus() { return s_expecting_focus; }
private:
BScreen &m_screen;
FbTk::Resource<FocusModel> m_focus_model;
FbTk::Resource<TabFocusModel> m_tab_focus_model;
2007-01-13 18:59:49 +00:00
FbTk::Resource<bool> m_focus_new;
// This list keeps the order of window focusing for this screen
// Screen global so it works for sticky windows too.
FocusableList m_focused_list;
FocusableList m_creation_order_list;
FocusableList m_focused_win_list;
FocusableList m_creation_order_win_list;
2007-10-13 21:51:37 +00:00
Focusables::const_iterator m_cycling_window;
const FocusableList *m_cycling_list;
2007-10-13 21:51:37 +00:00
Focusable *m_was_iconic;
WinClient *m_cycling_last;
int m_ignore_mouse_x, m_ignore_mouse_y;
static WinClient *s_focused_window;
static FluxboxWindow *s_focused_fbwindow;
2008-01-13 00:47:40 +00:00
static WinClient *s_expecting_focus;
static bool s_reverting;
};
#endif // FOCUSCONTROL_HH