2002-01-09 14:11:20 +00:00
|
|
|
// Screen.cc for Fluxbox Window Manager
|
2006-02-16 06:53:05 +00:00
|
|
|
// Copyright (c) 2001 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
|
2002-01-09 14:11:20 +00:00
|
|
|
//
|
2001-12-11 20:47:02 +00:00
|
|
|
// Screen.cc for Blackbox - an X11 Window manager
|
2002-12-13 20:19:05 +00:00
|
|
|
// Copyright (c) 1997 - 2000 Brad Hughes (bhughes at tcac.net)
|
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,
|
2002-05-08 10:14:51 +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.
|
|
|
|
|
2002-10-25 20:58:14 +00:00
|
|
|
#include "Screen.hh"
|
|
|
|
|
|
|
|
#include "fluxbox.hh"
|
2007-03-04 17:47:37 +00:00
|
|
|
#include "Keys.hh"
|
2002-10-25 20:58:14 +00:00
|
|
|
#include "Window.hh"
|
2007-10-15 18:05:28 +00:00
|
|
|
#include "WindowCmd.hh"
|
2002-10-25 20:58:14 +00:00
|
|
|
#include "Workspace.hh"
|
2004-05-02 21:12:22 +00:00
|
|
|
|
2006-03-16 18:25:33 +00:00
|
|
|
#include "Layer.hh"
|
2006-02-18 11:39:38 +00:00
|
|
|
#include "FocusControl.hh"
|
2006-02-19 11:11:22 +00:00
|
|
|
#include "ScreenPlacement.hh"
|
2006-02-18 11:39:38 +00:00
|
|
|
|
2004-05-02 21:12:22 +00:00
|
|
|
// menu items
|
2007-12-27 21:55:24 +00:00
|
|
|
#include "FbTk/BoolMenuItem.hh"
|
|
|
|
#include "FbTk/IntMenuItem.hh"
|
2008-09-01 15:00:04 +00:00
|
|
|
#include "FbTk/MenuSeparator.hh"
|
2004-05-02 21:12:22 +00:00
|
|
|
#include "FocusModelMenuItem.hh"
|
2009-05-25 04:47:15 +00:00
|
|
|
#include "FbTk/RadioMenuItem.hh"
|
2004-05-02 21:12:22 +00:00
|
|
|
|
|
|
|
// menus
|
2003-02-18 15:11:12 +00:00
|
|
|
#include "FbMenu.hh"
|
|
|
|
#include "LayerMenu.hh"
|
2004-05-02 21:12:22 +00:00
|
|
|
|
|
|
|
#include "MenuCreator.hh"
|
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
#include "WinClient.hh"
|
2003-05-15 11:17:29 +00:00
|
|
|
#include "FbWinFrame.hh"
|
2003-06-18 13:42:21 +00:00
|
|
|
#include "Strut.hh"
|
2008-01-11 07:41:22 +00:00
|
|
|
#include "FbTk/CommandParser.hh"
|
2004-04-19 22:44:42 +00:00
|
|
|
#include "AtomHandler.hh"
|
2004-09-11 13:33:07 +00:00
|
|
|
#include "HeadArea.hh"
|
2011-03-19 14:00:34 +00:00
|
|
|
#include "RectangleUtil.hh"
|
2007-01-20 18:26:55 +00:00
|
|
|
#include "FbCommands.hh"
|
2010-08-23 17:49:47 +00:00
|
|
|
#include "SystemTray.hh"
|
2010-03-17 15:35:07 +00:00
|
|
|
#include "Debug.hh"
|
2004-05-02 21:12:22 +00:00
|
|
|
|
2004-06-07 11:46:05 +00:00
|
|
|
#include "FbTk/I18n.hh"
|
2004-05-02 21:12:22 +00:00
|
|
|
#include "FbTk/FbWindow.hh"
|
2003-12-19 00:34:23 +00:00
|
|
|
#include "FbTk/SimpleCommand.hh"
|
|
|
|
#include "FbTk/MultLayers.hh"
|
2011-02-23 21:49:27 +00:00
|
|
|
#include "FbTk/LayerItem.hh"
|
2003-12-19 00:34:23 +00:00
|
|
|
#include "FbTk/MacroCommand.hh"
|
|
|
|
#include "FbTk/StringUtil.hh"
|
|
|
|
#include "FbTk/ImageControl.hh"
|
2004-04-19 22:44:42 +00:00
|
|
|
#include "FbTk/EventManager.hh"
|
2004-09-12 14:56:20 +00:00
|
|
|
#include "FbTk/Transparent.hh"
|
2005-05-02 12:10:01 +00:00
|
|
|
#include "FbTk/Select2nd.hh"
|
|
|
|
#include "FbTk/Compose.hh"
|
2006-05-07 10:08:25 +00:00
|
|
|
#include "FbTk/FbString.hh"
|
2007-12-28 06:22:38 +00:00
|
|
|
#include "FbTk/STLUtil.hh"
|
2008-01-02 08:31:18 +00:00
|
|
|
#include "FbTk/KeyUtil.hh"
|
2010-09-09 13:31:54 +00:00
|
|
|
#include "FbTk/Util.hh"
|
2003-12-19 00:34:23 +00:00
|
|
|
|
2002-03-18 20:20:09 +00:00
|
|
|
//use GNU extensions
|
2007-12-30 15:32:53 +00:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
#define _GNU_SOURCE
|
2001-12-11 20:47:02 +00:00
|
|
|
#endif // _GNU_SOURCE
|
|
|
|
|
2002-10-13 22:30:18 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
2001-12-11 20:47:02 +00:00
|
|
|
#endif // HAVE_CONFIG_H
|
|
|
|
|
2002-10-13 22:30:18 +00:00
|
|
|
#ifdef SLIT
|
2001-12-11 20:47:02 +00:00
|
|
|
#include "Slit.hh"
|
2004-04-19 22:44:42 +00:00
|
|
|
#include "SlitClient.hh"
|
2003-10-28 17:39:59 +00:00
|
|
|
#else
|
|
|
|
// fill it in
|
|
|
|
class Slit {};
|
2001-12-11 20:47:02 +00:00
|
|
|
#endif // SLIT
|
|
|
|
|
2008-01-12 06:36:38 +00:00
|
|
|
#ifdef USE_TOOLBAR
|
|
|
|
#include "Toolbar.hh"
|
|
|
|
#else
|
|
|
|
class Toolbar {};
|
|
|
|
#endif // USE_TOOLBAR
|
|
|
|
|
2002-02-04 07:01:06 +00:00
|
|
|
#ifdef STDC_HEADERS
|
2002-10-25 20:58:14 +00:00
|
|
|
#include <sys/types.h>
|
2001-12-11 20:47:02 +00:00
|
|
|
#endif // STDC_HEADERS
|
|
|
|
|
2002-02-04 07:01:06 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2002-10-25 20:58:14 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
2001-12-11 20:47:02 +00:00
|
|
|
#endif // HAVE_UNISTD_H
|
|
|
|
|
2002-02-04 07:01:06 +00:00
|
|
|
#ifdef HAVE_STDARG_H
|
2002-10-25 20:58:14 +00:00
|
|
|
#include <stdarg.h>
|
2001-12-11 20:47:02 +00:00
|
|
|
#endif // HAVE_STDARG_H
|
|
|
|
|
2002-11-27 21:55:36 +00:00
|
|
|
#ifdef TIME_WITH_SYS_TIME
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
#else // !TIME_WITH_SYS_TIME
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#else // !HAVE_SYS_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif // HAVE_SYS_TIME_H
|
|
|
|
#endif // TIME_WITH_SYS_TIME
|
|
|
|
|
2002-01-27 12:45:32 +00:00
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/keysym.h>
|
2003-06-12 15:24:37 +00:00
|
|
|
#include <X11/cursorfont.h>
|
2002-01-27 12:45:32 +00:00
|
|
|
|
2003-05-19 14:26:30 +00:00
|
|
|
#ifdef XINERAMA
|
|
|
|
extern "C" {
|
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
}
|
|
|
|
#endif // XINERAMA
|
|
|
|
|
2008-01-12 06:36:38 +00:00
|
|
|
#ifdef HAVE_RANDR
|
|
|
|
#include <X11/extensions/Xrandr.h>
|
|
|
|
#endif // HAVE_RANDR
|
|
|
|
|
2001-12-11 20:47:02 +00:00
|
|
|
#include <iostream>
|
2002-02-08 13:35:20 +00:00
|
|
|
#include <algorithm>
|
2003-04-14 15:01:55 +00:00
|
|
|
#include <functional>
|
2004-05-02 21:12:22 +00:00
|
|
|
#include <stack>
|
2007-06-29 17:25:24 +00:00
|
|
|
#ifdef HAVE_CSTRING
|
|
|
|
#include <cstring>
|
|
|
|
#else
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2002-01-20 02:17:23 +00:00
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
using std::cerr;
|
|
|
|
using std::endl;
|
|
|
|
using std::string;
|
|
|
|
using std::make_pair;
|
|
|
|
using std::pair;
|
|
|
|
using std::list;
|
|
|
|
using std::vector;
|
|
|
|
using std::mem_fun;
|
|
|
|
using std::bind2nd;
|
|
|
|
using std::equal_to;
|
|
|
|
|
|
|
|
using std::hex;
|
|
|
|
using std::dec;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-04-04 14:28:54 +00:00
|
|
|
static bool running = true;
|
2002-10-25 20:58:14 +00:00
|
|
|
namespace {
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-10-25 20:58:14 +00:00
|
|
|
int anotherWMRunning(Display *display, XErrorEvent *) {
|
2004-06-07 11:46:05 +00:00
|
|
|
_FB_USES_NLS;
|
2006-10-27 06:57:43 +00:00
|
|
|
cerr<<_FB_CONSOLETEXT(Screen, AnotherWMRunning,
|
2004-06-07 11:46:05 +00:00
|
|
|
"BScreen::BScreen: an error occured while querying the X server.\n"
|
|
|
|
" another window manager already running on display ",
|
|
|
|
"Message when another WM is found already active on all screens")
|
|
|
|
<<DisplayString(display)<<endl;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
running = false;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2003-05-17 11:05:33 +00:00
|
|
|
return -1;
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2003-02-16 16:45:23 +00:00
|
|
|
|
2010-05-01 12:27:45 +00:00
|
|
|
int calcSquareDistance(int x1, int y1, int x2, int y2) {
|
|
|
|
return (x2-x1)*(x2-x1) + (y2-y1)*(y2-y1);
|
|
|
|
}
|
|
|
|
|
2008-08-04 04:59:14 +00:00
|
|
|
class TabPlacementMenuItem: public FbTk::RadioMenuItem {
|
2006-03-22 12:23:17 +00:00
|
|
|
public:
|
2010-09-18 07:26:05 +00:00
|
|
|
TabPlacementMenuItem(const FbTk::FbString & label, BScreen &screen,
|
2006-10-27 06:57:43 +00:00
|
|
|
FbWinFrame::TabPlacement place,
|
2008-01-11 07:41:22 +00:00
|
|
|
FbTk::RefCount<FbTk::Command<void> > &cmd):
|
2008-08-04 04:59:14 +00:00
|
|
|
FbTk::RadioMenuItem(label, cmd),
|
2006-03-22 12:23:17 +00:00
|
|
|
m_screen(screen),
|
2007-12-18 05:44:17 +00:00
|
|
|
m_place(place) {
|
|
|
|
setCloseOnClick(false);
|
|
|
|
}
|
2006-03-22 12:23:17 +00:00
|
|
|
|
2008-08-04 04:59:14 +00:00
|
|
|
bool isSelected() const { return m_screen.getTabPlacement() == m_place; }
|
2007-12-18 05:44:17 +00:00
|
|
|
void click(int button, int time, unsigned int mods) {
|
2006-03-22 12:23:17 +00:00
|
|
|
m_screen.saveTabPlacement(m_place);
|
2008-08-04 04:59:14 +00:00
|
|
|
FbTk::RadioMenuItem::click(button, time, mods);
|
2006-03-22 12:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
BScreen &m_screen;
|
|
|
|
FbWinFrame::TabPlacement m_place;
|
|
|
|
};
|
2003-01-09 17:41:02 +00:00
|
|
|
|
2010-09-09 13:31:54 +00:00
|
|
|
void clampMenuDelay(int& delay) {
|
|
|
|
delay = FbTk::Util::clamp(delay, 0, 5000);
|
|
|
|
}
|
|
|
|
|
2010-09-18 07:26:05 +00:00
|
|
|
|
|
|
|
struct TabPlacementString {
|
|
|
|
FbWinFrame::TabPlacement placement;
|
|
|
|
const char* str;
|
|
|
|
};
|
|
|
|
|
|
|
|
const TabPlacementString placement_strings[] = {
|
|
|
|
{ FbWinFrame::TOPLEFT, "TopLeft" },
|
|
|
|
{ FbWinFrame::TOP, "Top" },
|
|
|
|
{ FbWinFrame::TOPRIGHT, "TopRight" },
|
|
|
|
{ FbWinFrame::BOTTOMLEFT, "BottomLeft" },
|
|
|
|
{ FbWinFrame::BOTTOM, "Bottom" },
|
|
|
|
{ FbWinFrame::BOTTOMRIGHT, "BottomRight" },
|
|
|
|
{ FbWinFrame::LEFTBOTTOM, "LeftBottom" },
|
|
|
|
{ FbWinFrame::LEFT, "Left" },
|
|
|
|
{ FbWinFrame::LEFTTOP, "LeftTop" },
|
|
|
|
{ FbWinFrame::RIGHTBOTTOM, "RightBottom" },
|
|
|
|
{ FbWinFrame::RIGHT, "Right" },
|
|
|
|
{ FbWinFrame::RIGHTTOP, "RightTop" }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-05-02 21:12:22 +00:00
|
|
|
} // end anonymous namespace
|
2002-01-20 02:17:23 +00:00
|
|
|
|
2006-03-22 12:23:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace FbTk {
|
|
|
|
|
|
|
|
template<>
|
|
|
|
string FbTk::Resource<FbWinFrame::TabPlacement>::
|
|
|
|
getString() const {
|
2010-09-18 07:26:05 +00:00
|
|
|
|
|
|
|
size_t i = (m_value == FbTk::Util::clamp(m_value, FbWinFrame::TOPLEFT, FbWinFrame::RIGHTTOP)
|
|
|
|
? m_value
|
|
|
|
: FbWinFrame::DEFAULT) - 1;
|
|
|
|
return placement_strings[i].str;
|
2006-03-22 12:23:17 +00:00
|
|
|
}
|
2010-05-23 10:25:47 +00:00
|
|
|
|
|
|
|
template<>
|
|
|
|
void FbTk::Resource<FbWinFrame::TabPlacement>::
|
|
|
|
setFromString(const char *strval) {
|
2010-09-18 07:26:05 +00:00
|
|
|
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < sizeof(placement_strings)/sizeof(TabPlacementString); ++i) {
|
|
|
|
if (strcasecmp(strval, placement_strings[i].str) == 0) {
|
|
|
|
m_value = placement_strings[i].placement;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setDefaultValue();
|
2010-05-23 10:25:47 +00:00
|
|
|
}
|
|
|
|
|
2006-03-22 12:23:17 +00:00
|
|
|
} // end namespace FbTk
|
|
|
|
|
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm,
|
|
|
|
const string &scrname,
|
|
|
|
const string &altscrname):
|
2008-09-04 18:27:21 +00:00
|
|
|
opaque_move(rm, true, scrname + ".opaqueMove", altscrname+".OpaqueMove"),
|
2007-02-05 19:10:10 +00:00
|
|
|
full_max(rm, false, scrname+".fullMaximization", altscrname+".FullMaximization"),
|
2007-10-13 21:51:37 +00:00
|
|
|
max_ignore_inc(rm, true, scrname+".maxIgnoreIncrement", altscrname+".MaxIgnoreIncrement"),
|
|
|
|
max_disable_move(rm, false, scrname+".maxDisableMove", altscrname+".MaxDisableMove"),
|
|
|
|
max_disable_resize(rm, false, scrname+".maxDisableResize", altscrname+".MaxDisableResize"),
|
2002-12-01 13:42:15 +00:00
|
|
|
workspace_warping(rm, true, scrname+".workspacewarping", altscrname+".WorkspaceWarping"),
|
2008-09-27 20:37:04 +00:00
|
|
|
show_window_pos(rm, false, scrname+".showwindowposition", altscrname+".ShowWindowPosition"),
|
2007-02-05 19:10:10 +00:00
|
|
|
auto_raise(rm, true, scrname+".autoRaise", altscrname+".AutoRaise"),
|
2003-04-16 00:38:06 +00:00
|
|
|
click_raises(rm, true, scrname+".clickRaises", altscrname+".ClickRaises"),
|
2007-03-06 17:20:13 +00:00
|
|
|
default_deco(rm, "NORMAL", scrname+".defaultDeco", altscrname+".DefaultDeco"),
|
2006-03-22 12:23:17 +00:00
|
|
|
tab_placement(rm, FbWinFrame::TOPLEFT, scrname+".tab.placement", altscrname+".Tab.Placement"),
|
2008-06-20 03:48:26 +00:00
|
|
|
windowmenufile(rm, Fluxbox::instance()->getDefaultDataFilename("windowmenu"), scrname+".windowMenu", altscrname+".WindowMenu"),
|
2007-10-13 21:51:37 +00:00
|
|
|
typing_delay(rm, 0, scrname+".noFocusWhileTypingDelay", altscrname+".NoFocusWhileTypingDelay"),
|
2008-09-11 22:48:46 +00:00
|
|
|
workspaces(rm, 4, scrname+".workspaces", altscrname+".Workspaces"),
|
2008-05-13 08:43:51 +00:00
|
|
|
edge_snap_threshold(rm, 10, scrname+".edgeSnapThreshold", altscrname+".EdgeSnapThreshold"),
|
2004-09-12 14:56:20 +00:00
|
|
|
focused_alpha(rm, 255, scrname+".window.focus.alpha", altscrname+".Window.Focus.Alpha"),
|
|
|
|
unfocused_alpha(rm, 255, scrname+".window.unfocus.alpha", altscrname+".Window.Unfocus.Alpha"),
|
|
|
|
menu_alpha(rm, 255, scrname+".menu.alpha", altscrname+".Menu.Alpha"),
|
2008-05-05 13:12:59 +00:00
|
|
|
menu_delay(rm, 200, scrname + ".menuDelay", altscrname+".MenuDelay"),
|
2006-03-22 13:06:00 +00:00
|
|
|
tab_width(rm, 64, scrname + ".tab.width", altscrname+".Tab.Width"),
|
2008-05-05 12:05:52 +00:00
|
|
|
tooltip_delay(rm, 500, scrname + ".tooltipDelay", altscrname+".TooltipDelay"),
|
2007-07-03 22:56:46 +00:00
|
|
|
allow_remote_actions(rm, false, scrname+".allowRemoteActions", altscrname+".AllowRemoteActions"),
|
2007-10-13 21:51:37 +00:00
|
|
|
clientmenu_use_pixmap(rm, true, scrname+".clientMenu.usePixmap", altscrname+".ClientMenu.UsePixmap"),
|
|
|
|
tabs_use_pixmap(rm, true, scrname+".tabs.usePixmap", altscrname+".Tabs.UsePixmap"),
|
2006-07-26 01:22:42 +00:00
|
|
|
max_over_tabs(rm, false, scrname+".tabs.maxOver", altscrname+".Tabs.MaxOver"),
|
2007-06-30 21:57:03 +00:00
|
|
|
default_internal_tabs(rm, true /* TODO: autoconf option? */ , scrname+".tabs.intitlebar", altscrname+".Tabs.InTitlebar") {
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2002-01-20 02:17:23 +00:00
|
|
|
|
2003-12-19 00:34:23 +00:00
|
|
|
}
|
2002-01-20 02:17:23 +00:00
|
|
|
|
2003-05-18 22:01:14 +00:00
|
|
|
BScreen::BScreen(FbTk::ResourceManager &rm,
|
2006-10-27 06:57:43 +00:00
|
|
|
const string &screenname,
|
|
|
|
const string &altscreenname,
|
|
|
|
int scrn, int num_layers) :
|
2003-04-28 00:38:42 +00:00
|
|
|
m_layermanager(num_layers),
|
2010-09-17 21:34:03 +00:00
|
|
|
m_image_control(0),
|
2008-01-07 20:08:56 +00:00
|
|
|
m_focused_windowtheme(new FbWinFrameTheme(scrn, ".focus", ".Focus")),
|
|
|
|
m_unfocused_windowtheme(new FbWinFrameTheme(scrn, ".unfocus", ".Unfocus")),
|
2003-04-28 22:43:26 +00:00
|
|
|
// the order of windowtheme and winbutton theme is important
|
|
|
|
// because winbutton need to rescale the pixmaps in winbutton theme
|
|
|
|
// after fbwinframe have resized them
|
2008-01-08 08:50:58 +00:00
|
|
|
m_focused_winbutton_theme(new WinButtonTheme(scrn, "", "", *m_focused_windowtheme)),
|
|
|
|
m_unfocused_winbutton_theme(new WinButtonTheme(scrn, ".unfocus", ".Unfocus", *m_unfocused_windowtheme)),
|
|
|
|
m_pressed_winbutton_theme(new WinButtonTheme(scrn, ".pressed", ".Pressed", *m_focused_windowtheme)),
|
2007-12-28 07:16:17 +00:00
|
|
|
m_menutheme(new FbTk::MenuTheme(scrn)),
|
2003-05-10 22:59:32 +00:00
|
|
|
m_root_window(scrn),
|
2008-05-09 17:39:02 +00:00
|
|
|
m_geom_window(new OSDWindow(m_root_window, *this, *m_focused_windowtheme)),
|
|
|
|
m_pos_window(new OSDWindow(m_root_window, *this, *m_focused_windowtheme)),
|
|
|
|
m_tooltip_window(new TooltipWindow(m_root_window, *this, *m_focused_windowtheme)),
|
2007-10-13 21:51:37 +00:00
|
|
|
m_dummy_window(scrn, -1, -1, 1, 1, 0, true, false, CopyFromParent,
|
|
|
|
InputOnly),
|
2003-04-28 22:43:26 +00:00
|
|
|
resource(rm, screenname, altscreenname),
|
2006-02-18 11:39:38 +00:00
|
|
|
m_resource_manager(rm),
|
2003-06-20 01:30:08 +00:00
|
|
|
m_name(screenname),
|
|
|
|
m_altname(altscreenname),
|
2006-02-18 11:39:38 +00:00
|
|
|
m_focus_control(new FocusControl(*this)),
|
2006-02-19 11:11:22 +00:00
|
|
|
m_placement_strategy(new ScreenPlacement(*this)),
|
2007-10-24 17:09:26 +00:00
|
|
|
m_cycling(false), m_cycle_opts(0),
|
2003-08-12 12:21:42 +00:00
|
|
|
m_xinerama_headinfo(0),
|
2006-08-06 22:33:54 +00:00
|
|
|
m_restart(false),
|
2003-08-12 12:21:42 +00:00
|
|
|
m_shutdown(false) {
|
2003-04-28 00:38:42 +00:00
|
|
|
|
2003-12-29 01:23:04 +00:00
|
|
|
|
2005-11-22 21:59:48 +00:00
|
|
|
Display *disp = m_root_window.display();
|
2008-01-12 06:36:38 +00:00
|
|
|
Fluxbox *fluxbox = Fluxbox::instance();
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-07-11 11:54:53 +00:00
|
|
|
// TODO fluxgen: check if this is the right place (it was not -lis)
|
|
|
|
//
|
|
|
|
// Create the first one, initXinerama will expand this if needed.
|
|
|
|
m_head_areas.resize(1);
|
|
|
|
m_head_areas[0] = new HeadArea();
|
|
|
|
|
2003-05-19 15:32:47 +00:00
|
|
|
initXinerama();
|
2003-05-19 14:26:30 +00:00
|
|
|
|
2003-06-20 01:48:06 +00:00
|
|
|
// setup error handler to catch "screen already managed by other wm"
|
2002-12-01 13:42:15 +00:00
|
|
|
XErrorHandler old = XSetErrorHandler((XErrorHandler) anotherWMRunning);
|
2003-06-12 15:24:37 +00:00
|
|
|
|
|
|
|
rootWindow().setEventMask(ColormapChangeMask | EnterWindowMask | PropertyChangeMask |
|
|
|
|
SubstructureRedirectMask | KeyPressMask | KeyReleaseMask |
|
|
|
|
ButtonPressMask | ButtonReleaseMask| SubstructureNotifyMask);
|
2003-05-12 04:28:46 +00:00
|
|
|
|
2005-11-22 21:59:48 +00:00
|
|
|
FbTk::App::instance()->sync(false);
|
2003-06-12 15:24:37 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
XSetErrorHandler((XErrorHandler) old);
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
managed = running;
|
2006-04-22 15:37:04 +00:00
|
|
|
if (! managed) {
|
|
|
|
delete m_placement_strategy; m_placement_strategy = 0;
|
|
|
|
delete m_focus_control; m_focus_control = 0;
|
2002-12-01 13:42:15 +00:00
|
|
|
return;
|
2006-04-22 15:37:04 +00:00
|
|
|
}
|
2004-09-11 13:33:07 +00:00
|
|
|
|
2008-01-12 06:36:38 +00:00
|
|
|
// we're going to manage the screen, so now add our pid
|
|
|
|
#ifdef HAVE_GETPID
|
2011-04-14 13:07:37 +00:00
|
|
|
unsigned long bpid = static_cast<unsigned long>(getpid());
|
2008-01-12 06:36:38 +00:00
|
|
|
|
|
|
|
rootWindow().changeProperty(fluxbox->getFluxboxPidAtom(), XA_CARDINAL,
|
|
|
|
sizeof(pid_t) * 8, PropModeReplace,
|
|
|
|
(unsigned char *) &bpid, 1);
|
|
|
|
#endif // HAVE_GETPID
|
|
|
|
|
2006-08-06 22:33:54 +00:00
|
|
|
// check if we're the first EWMH compliant window manager on this screen
|
|
|
|
Atom wm_check = XInternAtom(disp, "_NET_SUPPORTING_WM_CHECK", False);
|
|
|
|
Atom xa_ret_type;
|
|
|
|
int ret_format;
|
|
|
|
unsigned long ret_nitems, ret_bytes_after;
|
|
|
|
unsigned char *ret_prop;
|
2010-09-09 10:48:19 +00:00
|
|
|
if (rootWindow().property(wm_check, 0l, 1l,
|
2006-08-06 22:33:54 +00:00
|
|
|
False, XA_WINDOW, &xa_ret_type, &ret_format, &ret_nitems,
|
2011-07-02 18:13:19 +00:00
|
|
|
&ret_bytes_after, &ret_prop) ) {
|
2006-08-06 22:33:54 +00:00
|
|
|
m_restart = (ret_prop != NULL);
|
|
|
|
XFree(ret_prop);
|
|
|
|
}
|
|
|
|
|
2008-01-12 06:36:38 +00:00
|
|
|
#ifdef HAVE_RANDR
|
|
|
|
// setup RANDR for this screens root window
|
|
|
|
// we need to determine if we should use old randr select input function or not
|
|
|
|
#ifdef X_RRScreenChangeSelectInput
|
|
|
|
// use old set randr event
|
|
|
|
XRRScreenChangeSelectInput(disp, rootWindow().window(), True);
|
|
|
|
#else
|
|
|
|
XRRSelectInput(disp, rootWindow().window(),
|
|
|
|
RRScreenChangeNotifyMask);
|
|
|
|
#endif // X_RRScreenChangeSelectInput
|
|
|
|
|
|
|
|
#endif // HAVE_RANDR
|
|
|
|
|
2004-06-07 11:46:05 +00:00
|
|
|
_FB_USES_NLS;
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2008-04-25 13:01:43 +00:00
|
|
|
#ifdef DEBUG
|
2006-06-21 14:41:16 +00:00
|
|
|
fprintf(stderr, _FB_CONSOLETEXT(Screen, ManagingScreen,
|
2004-06-07 11:46:05 +00:00
|
|
|
"BScreen::BScreen: managing screen %d "
|
2006-10-27 06:57:43 +00:00
|
|
|
"using visual 0x%lx, depth %d\n",
|
2006-05-20 15:08:14 +00:00
|
|
|
"informational message saying screen number (%d), visual (%lx), and colour depth (%d)").c_str(),
|
2003-05-15 12:00:46 +00:00
|
|
|
screenNumber(), XVisualIDFromVisual(rootWindow().visual()),
|
2003-05-10 22:59:32 +00:00
|
|
|
rootWindow().depth());
|
2008-04-25 13:01:43 +00:00
|
|
|
#endif // DEBUG
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2007-03-04 17:47:37 +00:00
|
|
|
FbTk::EventManager *evm = FbTk::EventManager::instance();
|
|
|
|
evm->add(*this, rootWindow());
|
2007-10-13 21:51:37 +00:00
|
|
|
Keys *keys = Fluxbox::instance()->keys();
|
|
|
|
if (keys)
|
2007-11-20 19:01:45 +00:00
|
|
|
keys->registerWindow(rootWindow().window(), *this,
|
2007-10-13 21:51:37 +00:00
|
|
|
Keys::GLOBAL|Keys::ON_DESKTOP);
|
2003-06-12 15:24:37 +00:00
|
|
|
rootWindow().setCursor(XCreateFontCursor(disp, XC_left_ptr));
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2003-10-31 10:37:09 +00:00
|
|
|
// load this screens resources
|
|
|
|
fluxbox->load_rc(*this);
|
|
|
|
|
2003-06-20 01:48:06 +00:00
|
|
|
// setup image cache engine
|
2008-06-26 19:41:43 +00:00
|
|
|
m_image_control.reset(new FbTk::ImageControl(scrn,
|
2005-11-22 21:59:48 +00:00
|
|
|
fluxbox->colorsPerChannel(),
|
2003-06-12 15:24:37 +00:00
|
|
|
fluxbox->getCacheLife(), fluxbox->getCacheMax()));
|
2003-05-15 23:30:07 +00:00
|
|
|
imageControl().installRootColormap();
|
2002-12-01 13:42:15 +00:00
|
|
|
root_colormap_installed = true;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-03-10 18:06:09 +00:00
|
|
|
m_root_theme.reset(new RootTheme(imageControl()));
|
2007-03-06 19:40:38 +00:00
|
|
|
m_root_theme->reconfigTheme();
|
2005-11-22 21:59:48 +00:00
|
|
|
|
2008-01-07 20:08:56 +00:00
|
|
|
focusedWinFrameTheme()->setAlpha(*resource.focused_alpha);
|
|
|
|
unfocusedWinFrameTheme()->setAlpha(*resource.unfocused_alpha);
|
2003-07-19 03:59:56 +00:00
|
|
|
m_menutheme->setAlpha(*resource.menu_alpha);
|
2010-09-09 13:31:54 +00:00
|
|
|
|
|
|
|
clampMenuDelay(*resource.menu_delay);
|
2003-12-18 15:27:21 +00:00
|
|
|
|
2008-10-13 04:55:03 +00:00
|
|
|
m_menutheme->setDelay(*resource.menu_delay);
|
2003-04-25 11:05:11 +00:00
|
|
|
|
2011-04-29 08:52:28 +00:00
|
|
|
m_tracker.join(focusedWinFrameTheme()->reconfigSig(),
|
|
|
|
FbTk::MemFun(*this, &BScreen::focusedWinFrameThemeReconfigured));
|
2003-08-25 13:15:53 +00:00
|
|
|
|
2004-09-16 10:10:37 +00:00
|
|
|
|
|
|
|
renderGeomWindow();
|
2004-01-16 11:47:07 +00:00
|
|
|
renderPosWindow();
|
2008-05-09 17:39:02 +00:00
|
|
|
m_tooltip_window->setDelay(*resource.tooltip_delay);
|
2004-01-16 11:47:07 +00:00
|
|
|
|
2003-06-20 01:48:06 +00:00
|
|
|
// setup workspaces and workspace menu
|
2005-04-27 09:52:30 +00:00
|
|
|
int nr_ws = *resource.workspaces;
|
|
|
|
addWorkspace(); // at least one
|
|
|
|
for (int i = 1; i < nr_ws; ++i) {
|
|
|
|
addWorkspace();
|
2002-12-01 13:42:15 +00:00
|
|
|
}
|
|
|
|
|
2003-05-19 22:45:51 +00:00
|
|
|
m_current_workspace = m_workspaces_list.front();
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2008-05-12 00:22:40 +00:00
|
|
|
m_windowmenu.reset(createMenu(""));
|
|
|
|
m_windowmenu->setInternalMenu();
|
|
|
|
m_windowmenu->setReloadHelper(new FbTk::AutoReloadHelper());
|
|
|
|
m_windowmenu->reloadHelper()->setReloadCmd(FbTk::RefCount<FbTk::Command<void> >(new FbTk::SimpleCommand<BScreen>(*this, &BScreen::rereadWindowMenu)));
|
|
|
|
|
|
|
|
m_rootmenu.reset(createMenu(""));
|
|
|
|
m_rootmenu->setReloadHelper(new FbTk::AutoReloadHelper());
|
|
|
|
m_rootmenu->reloadHelper()->setReloadCmd(FbTk::RefCount<FbTk::Command<void> >(new FbTk::SimpleCommand<BScreen>(*this, &BScreen::rereadMenu)));
|
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
m_configmenu.reset(createMenu(_FB_XTEXT(Menu, Configuration,
|
- Usage of xft-fonts is prefered, except a font-description starts with '-'
- Removed "antialias"-option completly, to enable/disable "antialias"
use either <fontname>:antialias=<bool> in the style or use
Xft.antialias: <bool> in your .Xdefaults
- Added new styleresources:
*.font.effect: <halo|shadow>
*.font.shadow.x : <int> - shadow x offset
*.font.shadow.y : <int> - shadow y offset
*.font.shadow.color : <color> - color of shadow
*.font.halo.color : <color> - color of halo
- Removed 'shadow' and 'halo' options from fontdefinitions:
!! Style authors have to update their styles !!
- Simplified XmbFontImp to not try all possible fonts to match locale
- Style authors may specify multiple fonts:
<font1>|<font2>|<font3>
if loading of font1 fails, fluxbox probes <font2>, etc. The last font is
"fixed". Hints for style authors:
- if xft tries to load a font it will _ALWAYS_ return a valid font,
it doesnt have to look like the one you want to have, read more
about it: http://fontconfig.org/fontconfig-user.html
- export XFT_DEBUG=1 before running fluxbox helps to see
which fonts are picked.
eg:
*.font: Verdana,Arial-12:antialias=true|-artwiz-snap-*-
if fluxbox is compiled with xft this will NEVER try to
load "-artwiz-snap-*-" since xft gives for sure a font,
most likely Verdana or Arial but noone knows. So, if
fluxbox has no xft support the first fontpattern fails
and fluxbox tries the next one, which might be successful.
if everything fails, it will use "fixed"
- Added caching of fonts, fonts are only loaded once.
- Fixed #1090902 (slow utf8 start)
2005-06-03 07:25:48 +00:00
|
|
|
"Configuration", "Title of configuration menu")));
|
2003-01-12 17:59:20 +00:00
|
|
|
setupConfigmenu(*m_configmenu.get());
|
2003-04-18 12:51:14 +00:00
|
|
|
m_configmenu->setInternalMenu();
|
2003-01-12 17:59:20 +00:00
|
|
|
|
2007-01-14 19:05:34 +00:00
|
|
|
// check which desktop we should start on
|
|
|
|
unsigned int first_desktop = 0;
|
|
|
|
if (m_restart) {
|
|
|
|
Atom net_desktop = XInternAtom(disp, "_NET_CURRENT_DESKTOP", False);
|
Can check CARDINAL properties in CLIENT PATTERNS
Introduces a new member function, FbWindow::cardinalProperty()
This change also changes other code that previously used
FbWindow::property() to do the same thing as the new function; this
reduces code duplication.
There are still some bits of code (Ewmh.cc, extractNetWmIcon()) that use
FbWindow::property() to retrieve XA_CARDINAL values, but as the new
method is designed for getting a _single_ property, and that code uses
FbWindow::property() to retrieve the number of values present, and then
grab all of them; it's a different use case. I opted to not try to make
cardinalProperty() into some monolithic all-purpose cardinal method;
FbWindow::property() works just fine for that.
This change also adds an optional (default=NULL) boolean to
FbWindow::textProperty and friends that allows the caller to determine
whether or not a value was actually retrieved. This was necessary for
integrating FbWindow::cardinalProperty with the codebase, and it seemed
to fit with FbWindow::textProperty as well. Prior to this change, if
you got a return value of "", you wouldn't know if you successfully
retrieved the value which happened to be blank, or if you failed to
retrieve the value. Now, you can pass the address of a boolean if you
so choose in order to differentiate these situations; the same applies
to the new FbWindow::cardinalProperty().
2011-05-08 02:38:13 +00:00
|
|
|
bool exists;
|
|
|
|
unsigned int ret=static_cast<unsigned int>(rootWindow().cardinalProperty(net_desktop, &exists));
|
|
|
|
if (exists) {
|
|
|
|
if (ret < static_cast<unsigned int>(nr_ws))
|
|
|
|
first_desktop = ret;
|
2007-01-14 19:05:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
changeWorkspaceID(first_desktop);
|
2003-12-31 00:38:40 +00:00
|
|
|
|
2004-06-07 21:22:42 +00:00
|
|
|
#ifdef SLIT
|
2011-03-23 11:02:15 +00:00
|
|
|
m_slit.reset(new Slit(*this, *layerManager().getLayer(ResourceLayer::DESKTOP),
|
2004-09-09 14:29:10 +00:00
|
|
|
fluxbox->getSlitlistFilename().c_str()));
|
2004-06-07 21:22:42 +00:00
|
|
|
#endif // SLIT
|
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
rm.unlock();
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
XFlush(disp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BScreen::~BScreen() {
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
if (! managed)
|
|
|
|
return;
|
2011-03-19 18:19:26 +00:00
|
|
|
|
|
|
|
m_configmenu.reset(0);
|
|
|
|
|
2008-01-12 06:36:38 +00:00
|
|
|
m_toolbar.reset(0);
|
|
|
|
|
2007-03-04 17:47:37 +00:00
|
|
|
FbTk::EventManager *evm = FbTk::EventManager::instance();
|
|
|
|
evm->remove(rootWindow());
|
2007-10-13 21:51:37 +00:00
|
|
|
Keys *keys = Fluxbox::instance()->keys();
|
|
|
|
if (keys)
|
|
|
|
keys->unregisterWindow(rootWindow().window());
|
2007-03-04 17:47:37 +00:00
|
|
|
|
2004-09-06 13:17:56 +00:00
|
|
|
if (m_rootmenu.get() != 0)
|
|
|
|
m_rootmenu->removeAll();
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-09-05 01:11:41 +00:00
|
|
|
// Since workspacemenu holds client list menus (from workspace)
|
|
|
|
// we need to destroy it before we destroy workspaces
|
|
|
|
m_workspacemenu.reset(0);
|
2004-04-19 22:44:42 +00:00
|
|
|
|
2008-02-05 17:31:15 +00:00
|
|
|
if (m_extramenus.size()) {
|
|
|
|
// check whether extramenus are included in windowmenu
|
|
|
|
// if not, we clean them ourselves
|
|
|
|
bool extramenus_in_windowmenu = false;
|
|
|
|
for (size_t i = 0, n = m_windowmenu->numberOfItems(); i < n; i++)
|
|
|
|
if (m_windowmenu->find(i)->submenu() == m_extramenus.begin()->second) {
|
|
|
|
extramenus_in_windowmenu = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ExtraMenus::iterator mit = m_extramenus.begin();
|
|
|
|
ExtraMenus::iterator mit_end = m_extramenus.end();
|
|
|
|
for (; mit != mit_end; ++mit) {
|
|
|
|
// we set them to NOT internal so that they will be deleted when the
|
|
|
|
// menu is cleaned up. We can't delete them here because they are
|
|
|
|
// still in the menu
|
|
|
|
// (They need to be internal for most of the time so that if we
|
|
|
|
// rebuild the menu, then they won't be removed.
|
|
|
|
if (! extramenus_in_windowmenu) {
|
|
|
|
// not attached to our windowmenu
|
|
|
|
// so we clean it up
|
|
|
|
delete mit->second;
|
|
|
|
} else {
|
|
|
|
// let the parent clean it up
|
|
|
|
mit->second->setInternalMenu(false);
|
|
|
|
}
|
2005-06-23 03:07:25 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
removeWorkspaceNames();
|
2007-12-28 06:22:38 +00:00
|
|
|
using namespace FbTk::STLUtil;
|
2006-05-13 15:35:47 +00:00
|
|
|
destroyAndClear(m_workspaces_list);
|
|
|
|
destroyAndClear(m_managed_resources);
|
2004-04-19 22:44:42 +00:00
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
//why not destroyAndClear(m_icon_list); ?
|
2004-11-20 18:12:51 +00:00
|
|
|
//problem with that: a delete FluxboxWindow* calls m_diesig.notify()
|
|
|
|
//which leads to screen.removeWindow() which leads to removeIcon(win)
|
|
|
|
//which would modify the m_icon_list anyways...
|
|
|
|
Icons tmp;
|
|
|
|
tmp = m_icon_list;
|
|
|
|
while(!tmp.empty()) {
|
|
|
|
removeWindow(tmp.back());
|
|
|
|
tmp.back()->restore(true);
|
|
|
|
delete (tmp.back());
|
|
|
|
tmp.pop_back();
|
|
|
|
}
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
if (hasXinerama() && m_xinerama_headinfo) {
|
|
|
|
delete [] m_xinerama_headinfo;
|
|
|
|
}
|
2004-09-11 13:33:07 +00:00
|
|
|
|
2004-11-20 18:12:51 +00:00
|
|
|
// slit must be destroyed before headAreas (Struts)
|
|
|
|
m_slit.reset(0);
|
2011-03-19 18:19:26 +00:00
|
|
|
|
2004-11-20 18:12:51 +00:00
|
|
|
|
2011-03-19 18:19:26 +00:00
|
|
|
delete m_rootmenu.release();
|
|
|
|
delete m_workspacemenu.release();
|
|
|
|
delete m_windowmenu.release();
|
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
// TODO fluxgen: check if this is the right place
|
2008-01-28 09:46:05 +00:00
|
|
|
for (size_t i = 0; i < m_head_areas.size(); i++)
|
2007-07-11 11:54:53 +00:00
|
|
|
delete m_head_areas[i];
|
2006-02-19 11:11:22 +00:00
|
|
|
|
2006-02-19 08:11:10 +00:00
|
|
|
delete m_focus_control;
|
2006-02-19 11:11:22 +00:00
|
|
|
delete m_placement_strategy;
|
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
}
|
|
|
|
|
2006-08-06 22:33:54 +00:00
|
|
|
bool BScreen::isRestart() {
|
|
|
|
return Fluxbox::instance()->isStartup() && m_restart;
|
|
|
|
}
|
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
void BScreen::initWindows() {
|
2008-01-15 09:56:25 +00:00
|
|
|
|
|
|
|
#ifdef USE_TOOLBAR
|
|
|
|
m_toolbar.reset(new Toolbar(*this,
|
2011-03-23 11:02:15 +00:00
|
|
|
*layerManager().getLayer(::ResourceLayer::NORMAL)));
|
2008-01-15 09:56:25 +00:00
|
|
|
#endif // USE_TOOLBAR
|
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
unsigned int nchild;
|
|
|
|
Window r, p, *children;
|
2004-04-19 22:44:42 +00:00
|
|
|
Display *disp = FbTk::App::instance()->display();
|
2003-05-10 22:59:32 +00:00
|
|
|
XQueryTree(disp, rootWindow().window(), &r, &p, &children, &nchild);
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
// preen the window list of all icon windows... for better dockapp support
|
2004-09-09 14:29:10 +00:00
|
|
|
for (unsigned int i = 0; i < nchild; i++) {
|
2004-11-22 19:40:34 +00:00
|
|
|
|
2004-07-14 18:28:05 +00:00
|
|
|
if (children[i] == None)
|
2004-07-14 12:13:29 +00:00
|
|
|
continue;
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
XWMHints *wmhints = XGetWMHints(disp, children[i]);
|
2002-12-01 13:42:15 +00:00
|
|
|
|
|
|
|
if (wmhints) {
|
|
|
|
if ((wmhints->flags & IconWindowHint) &&
|
|
|
|
(wmhints->icon_window != children[i]))
|
2004-09-09 14:29:10 +00:00
|
|
|
for (unsigned int j = 0; j < nchild; j++) {
|
2002-12-01 13:42:15 +00:00
|
|
|
if (children[j] == wmhints->icon_window) {
|
2010-03-17 15:35:07 +00:00
|
|
|
|
|
|
|
fbdbg<<"BScreen::initWindows(): children[j] = 0x"<<hex<<children[j]<<dec<<endl;
|
|
|
|
fbdbg<<"BScreen::initWindows(): = icon_window"<<endl;
|
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
children[j] = None;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
XFree(wmhints);
|
|
|
|
}
|
2004-07-14 12:13:29 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
}
|
|
|
|
|
2006-02-20 21:04:35 +00:00
|
|
|
Fluxbox *fluxbox = Fluxbox::instance();
|
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
// manage shown windows
|
2004-11-22 19:40:34 +00:00
|
|
|
Window transient_for = 0;
|
2006-07-27 00:04:11 +00:00
|
|
|
bool safety_flag = false;
|
|
|
|
unsigned int num_transients = 0;
|
|
|
|
for (unsigned int i = 0; i <= nchild; ++i) {
|
|
|
|
if (i == nchild) {
|
|
|
|
if (num_transients) {
|
2006-07-27 07:00:30 +00:00
|
|
|
if (num_transients == nchild)
|
|
|
|
safety_flag = true;
|
2006-07-27 00:04:11 +00:00
|
|
|
nchild = num_transients;
|
|
|
|
i = num_transients = 0;
|
|
|
|
} else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2004-07-14 18:28:05 +00:00
|
|
|
if (children[i] == None)
|
|
|
|
continue;
|
|
|
|
else if (!fluxbox->validateWindow(children[i])) {
|
2010-03-17 15:35:07 +00:00
|
|
|
|
|
|
|
fbdbg<<"BScreen::initWindows(): not valid window = "<<hex<<children[i]<<dec<<endl;
|
|
|
|
|
2004-07-14 18:28:05 +00:00
|
|
|
children[i] = None;
|
|
|
|
continue;
|
2004-07-14 12:13:29 +00:00
|
|
|
}
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2004-07-14 18:28:05 +00:00
|
|
|
// if we have a transient_for window and it isn't created yet...
|
2006-07-27 00:04:11 +00:00
|
|
|
// postpone creation of this window until after all others
|
2004-07-14 18:28:05 +00:00
|
|
|
if (XGetTransientForHint(disp, children[i], &transient_for) &&
|
2006-07-27 00:04:11 +00:00
|
|
|
fluxbox->searchWindow(transient_for) == 0 && !safety_flag) {
|
|
|
|
// add this window back to the beginning of the list of children
|
|
|
|
children[num_transients] = children[i];
|
|
|
|
num_transients++;
|
2004-11-22 19:40:34 +00:00
|
|
|
|
2010-03-17 15:35:07 +00:00
|
|
|
fbdbg<<"BScreen::initWindows(): postpone creation of 0x"<<hex<<children[i]<<dec<<endl;
|
|
|
|
fbdbg<<"BScreen::initWindows(): transient_for = 0x"<<hex<<transient_for<<dec<<endl;
|
|
|
|
|
2006-07-27 00:04:11 +00:00
|
|
|
continue;
|
2004-07-14 18:28:05 +00:00
|
|
|
}
|
2004-07-14 12:13:29 +00:00
|
|
|
|
2004-11-22 19:40:34 +00:00
|
|
|
|
2004-07-14 18:28:05 +00:00
|
|
|
XWindowAttributes attrib;
|
|
|
|
if (XGetWindowAttributes(disp, children[i],
|
|
|
|
&attrib)) {
|
|
|
|
if (attrib.override_redirect) {
|
|
|
|
children[i] = None; // we dont need this anymore, since we already created a window for it
|
|
|
|
continue;
|
|
|
|
}
|
2004-07-14 12:13:29 +00:00
|
|
|
|
2007-04-01 21:42:01 +00:00
|
|
|
if (attrib.map_state != IsUnmapped)
|
|
|
|
createWindow(children[i]);
|
2003-01-05 22:26:56 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
}
|
2004-07-14 18:28:05 +00:00
|
|
|
children[i] = None; // we dont need this anymore, since we already created a window for it
|
2002-12-01 13:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XFree(children);
|
2003-08-11 16:27:23 +00:00
|
|
|
|
2008-01-12 06:36:38 +00:00
|
|
|
// now, show slit and toolbar
|
|
|
|
#ifdef SLIT
|
|
|
|
if (slit())
|
|
|
|
slit()->show();
|
|
|
|
#endif // SLIT
|
|
|
|
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
unsigned int BScreen::currentWorkspaceID() const {
|
|
|
|
return m_current_workspace->workspaceID();
|
2003-04-25 11:05:11 +00:00
|
|
|
}
|
2003-04-25 11:56:13 +00:00
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
const Strut* BScreen::availableWorkspaceArea(int head) const {
|
2007-07-11 11:54:53 +00:00
|
|
|
if (head > numHeads()) {
|
|
|
|
/* May this ever happen? */
|
|
|
|
static Strut whole(-1 /* should never be used */, 0, width(), 0, height());
|
|
|
|
return &whole;
|
|
|
|
}
|
|
|
|
return m_head_areas[head ? head-1 : 0]->availableWorkspaceArea();
|
2004-09-11 13:33:07 +00:00
|
|
|
}
|
|
|
|
|
2003-05-20 11:03:11 +00:00
|
|
|
unsigned int BScreen::maxLeft(int head) const {
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2003-06-30 18:04:48 +00:00
|
|
|
// we ignore strut if we're doing full maximization
|
2003-05-20 11:03:11 +00:00
|
|
|
if (hasXinerama())
|
2006-10-27 06:57:43 +00:00
|
|
|
return doFullMax() ? getHeadX(head) :
|
2004-09-11 13:33:07 +00:00
|
|
|
getHeadX(head) + availableWorkspaceArea(head)->left();
|
2003-06-30 18:04:48 +00:00
|
|
|
else
|
2004-09-11 13:33:07 +00:00
|
|
|
return doFullMax() ? 0 : availableWorkspaceArea(head)->left();
|
2003-01-05 22:26:56 +00:00
|
|
|
}
|
|
|
|
|
2003-05-20 11:03:11 +00:00
|
|
|
unsigned int BScreen::maxRight(int head) const {
|
2003-06-30 18:04:48 +00:00
|
|
|
// we ignore strut if we're doing full maximization
|
2003-05-20 11:03:11 +00:00
|
|
|
if (hasXinerama())
|
2006-10-27 06:57:43 +00:00
|
|
|
return doFullMax() ? getHeadX(head) + getHeadWidth(head) :
|
2004-09-11 13:33:07 +00:00
|
|
|
getHeadX(head) + getHeadWidth(head) - availableWorkspaceArea(head)->right();
|
2003-06-30 18:04:48 +00:00
|
|
|
else
|
2004-09-11 13:33:07 +00:00
|
|
|
return doFullMax() ? width() : width() - availableWorkspaceArea(head)->right();
|
2003-01-05 22:26:56 +00:00
|
|
|
}
|
|
|
|
|
2003-05-20 11:03:11 +00:00
|
|
|
unsigned int BScreen::maxTop(int head) const {
|
2003-06-30 18:04:48 +00:00
|
|
|
// we ignore strut if we're doing full maximization
|
2004-11-22 19:40:34 +00:00
|
|
|
|
2003-05-20 11:03:11 +00:00
|
|
|
if (hasXinerama())
|
2004-09-11 13:33:07 +00:00
|
|
|
return doFullMax() ? getHeadY(head) : getHeadY(head) + availableWorkspaceArea(head)->top();
|
2003-06-30 18:04:48 +00:00
|
|
|
else
|
2004-09-11 13:33:07 +00:00
|
|
|
return doFullMax() ? 0 : availableWorkspaceArea(head)->top();
|
2003-01-05 22:26:56 +00:00
|
|
|
}
|
2003-05-19 22:45:51 +00:00
|
|
|
|
2003-05-20 11:03:11 +00:00
|
|
|
unsigned int BScreen::maxBottom(int head) const {
|
2003-06-30 18:04:48 +00:00
|
|
|
// we ignore strut if we're doing full maximization
|
|
|
|
|
2003-05-20 11:03:11 +00:00
|
|
|
if (hasXinerama())
|
2003-06-30 18:04:48 +00:00
|
|
|
return doFullMax() ? getHeadY(head) + getHeadHeight(head) :
|
2004-09-11 13:33:07 +00:00
|
|
|
getHeadY(head) + getHeadHeight(head) - availableWorkspaceArea(head)->bottom();
|
2003-06-30 18:04:48 +00:00
|
|
|
else
|
2004-09-11 13:33:07 +00:00
|
|
|
return doFullMax() ? height() : height() - availableWorkspaceArea(head)->bottom();
|
2003-01-05 22:26:56 +00:00
|
|
|
}
|
|
|
|
|
2011-04-29 08:52:28 +00:00
|
|
|
void BScreen::focusedWinFrameThemeReconfigured() {
|
2003-08-25 13:15:53 +00:00
|
|
|
renderGeomWindow();
|
2004-01-16 11:47:07 +00:00
|
|
|
renderPosWindow();
|
2006-06-26 11:45:14 +00:00
|
|
|
|
|
|
|
Fluxbox *fluxbox = Fluxbox::instance();
|
2007-12-21 07:35:36 +00:00
|
|
|
const std::list<Focusable *> winlist =
|
|
|
|
focusControl().focusedOrderWinList().clientList();
|
|
|
|
std::list<Focusable *>::const_iterator it = winlist.begin(),
|
|
|
|
it_end = winlist.end();
|
2006-06-26 11:45:14 +00:00
|
|
|
for (; it != it_end; ++it)
|
2007-12-21 07:35:36 +00:00
|
|
|
fluxbox->updateFrameExtents(*(*it)->fbwindow());
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2003-08-25 13:15:53 +00:00
|
|
|
}
|
|
|
|
|
2007-07-03 18:50:53 +00:00
|
|
|
void BScreen::propertyNotify(Atom atom) {
|
|
|
|
static Atom fbcmd_atom = XInternAtom(FbTk::App::instance()->display(),
|
2007-07-03 22:56:46 +00:00
|
|
|
"_FLUXBOX_ACTION", False);
|
|
|
|
if (allowRemoteActions() && atom == fbcmd_atom) {
|
2007-07-03 18:50:53 +00:00
|
|
|
Atom xa_ret_type;
|
|
|
|
int ret_format;
|
|
|
|
unsigned long ret_nitems, ret_bytes_after;
|
|
|
|
char *str;
|
|
|
|
if (rootWindow().property(fbcmd_atom, 0l, 64l,
|
|
|
|
True, XA_STRING, &xa_ret_type, &ret_format, &ret_nitems,
|
|
|
|
&ret_bytes_after, (unsigned char **)&str) && str) {
|
|
|
|
|
|
|
|
if (ret_bytes_after) {
|
|
|
|
XFree(str);
|
|
|
|
long len = 64 + (ret_bytes_after + 3)/4;
|
|
|
|
rootWindow().property(fbcmd_atom, 0l, len,
|
|
|
|
True, XA_STRING, &xa_ret_type, &ret_format, &ret_nitems,
|
|
|
|
&ret_bytes_after, (unsigned char **)&str);
|
|
|
|
}
|
|
|
|
|
2008-10-04 06:09:11 +00:00
|
|
|
static std::auto_ptr<FbTk::Command<void> > cmd(0);
|
|
|
|
cmd.reset(FbTk::CommandParser<void>::instance().parse(str, false));
|
2007-07-03 18:50:53 +00:00
|
|
|
if (cmd.get())
|
|
|
|
cmd->execute();
|
|
|
|
XFree(str);
|
|
|
|
|
|
|
|
}
|
|
|
|
// TODO: this doesn't belong in FbPixmap
|
|
|
|
} else if (FbTk::FbPixmap::rootwinPropertyNotify(screenNumber(), atom))
|
2008-09-21 14:12:36 +00:00
|
|
|
m_bg_change_sig.emit(*this);
|
2007-07-03 18:50:53 +00:00
|
|
|
}
|
|
|
|
|
2007-03-04 17:47:37 +00:00
|
|
|
void BScreen::keyPressEvent(XKeyEvent &ke) {
|
2008-09-28 08:26:21 +00:00
|
|
|
if (Fluxbox::instance()->keys()->doAction(ke.type, ke.state, ke.keycode,
|
|
|
|
Keys::GLOBAL|Keys::ON_DESKTOP))
|
|
|
|
// re-grab keyboard, so we don't pass KeyRelease to clients
|
2008-10-04 05:59:14 +00:00
|
|
|
// also for catching invalid keys in the middle of keychains
|
2008-09-28 08:26:21 +00:00
|
|
|
FbTk::EventManager::instance()->grabKeyboard(rootWindow().window());
|
|
|
|
|
2007-03-04 17:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BScreen::keyReleaseEvent(XKeyEvent &ke) {
|
2008-09-28 08:26:21 +00:00
|
|
|
if (m_cycling) {
|
|
|
|
unsigned int state = FbTk::KeyUtil::instance().cleanMods(ke.state);
|
|
|
|
state &= ~FbTk::KeyUtil::instance().keycodeToModmask(ke.keycode);
|
|
|
|
|
|
|
|
if (state) // still cycling
|
|
|
|
return;
|
2007-03-04 17:47:37 +00:00
|
|
|
|
2008-09-28 08:26:21 +00:00
|
|
|
m_cycling = false;
|
|
|
|
focusControl().stopCyclingFocus();
|
|
|
|
}
|
2008-10-04 05:59:14 +00:00
|
|
|
if (!Fluxbox::instance()->keys()->inKeychain())
|
|
|
|
FbTk::EventManager::instance()->ungrabKeyboard();
|
2007-03-04 17:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BScreen::buttonPressEvent(XButtonEvent &be) {
|
|
|
|
if (be.button == 1 && !isRootColormapInstalled())
|
|
|
|
imageControl().installRootColormap();
|
|
|
|
|
|
|
|
Keys *keys = Fluxbox::instance()->keys();
|
2007-12-09 20:47:41 +00:00
|
|
|
keys->doAction(be.type, be.state, be.button, Keys::GLOBAL|Keys::ON_DESKTOP,
|
2008-02-11 18:17:45 +00:00
|
|
|
0, be.time);
|
2007-03-04 17:47:37 +00:00
|
|
|
}
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
void BScreen::cycleFocus(int options, const ClientPattern *pat, bool reverse) {
|
2007-03-04 17:47:37 +00:00
|
|
|
// get modifiers from event that causes this for focus order cycling
|
|
|
|
XEvent ev = Fluxbox::instance()->lastEvent();
|
|
|
|
unsigned int mods = 0;
|
|
|
|
if (ev.type == KeyPress)
|
|
|
|
mods = FbTk::KeyUtil::instance().cleanMods(ev.xkey.state);
|
|
|
|
else if (ev.type == ButtonPress)
|
|
|
|
mods = FbTk::KeyUtil::instance().cleanMods(ev.xbutton.state);
|
|
|
|
|
2007-10-24 17:09:26 +00:00
|
|
|
if (!m_cycling && mods) {
|
2007-03-04 17:47:37 +00:00
|
|
|
m_cycling = true;
|
2008-09-28 08:26:21 +00:00
|
|
|
FbTk::EventManager::instance()->grabKeyboard(rootWindow().window());
|
2007-03-04 17:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mods == 0) // can't stacked cycle unless there is a mod to grab
|
2007-11-12 21:59:43 +00:00
|
|
|
options |= FocusableList::STATIC_ORDER;
|
2007-10-13 21:51:37 +00:00
|
|
|
|
2007-11-12 21:59:43 +00:00
|
|
|
const FocusableList *win_list =
|
|
|
|
FocusableList::getListFromOptions(*this, options);
|
2007-10-13 21:51:37 +00:00
|
|
|
focusControl().cycleFocus(*win_list, pat, reverse);
|
2007-03-04 17:47:37 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-05-12 00:22:40 +00:00
|
|
|
FbMenu *BScreen::createMenu(const string &label) {
|
|
|
|
FbMenu *menu = new FbMenu(menuTheme(),
|
2006-10-27 06:57:43 +00:00
|
|
|
imageControl(),
|
2011-03-23 11:02:15 +00:00
|
|
|
*layerManager().getLayer(ResourceLayer::MENU));
|
2003-12-10 23:08:06 +00:00
|
|
|
if (!label.empty())
|
2006-05-20 15:08:14 +00:00
|
|
|
menu->setLabel(label);
|
2003-12-10 23:08:06 +00:00
|
|
|
|
|
|
|
return menu;
|
|
|
|
}
|
2008-05-12 00:22:40 +00:00
|
|
|
|
|
|
|
FbMenu *BScreen::createToggleMenu(const string &label) {
|
|
|
|
FbMenu *menu = new ToggleMenu(menuTheme(),
|
2006-10-27 06:57:43 +00:00
|
|
|
imageControl(),
|
2011-03-23 11:02:15 +00:00
|
|
|
*layerManager().getLayer(ResourceLayer::MENU));
|
2006-03-22 12:23:17 +00:00
|
|
|
if (!label.empty())
|
2006-05-20 15:08:14 +00:00
|
|
|
menu->setLabel(label);
|
2006-03-22 12:23:17 +00:00
|
|
|
|
|
|
|
return menu;
|
|
|
|
}
|
2003-12-10 23:08:06 +00:00
|
|
|
|
2006-05-20 15:08:14 +00:00
|
|
|
void BScreen::addExtraWindowMenu(const FbTk::FbString &label, FbTk::Menu *menu) {
|
2005-06-23 03:07:25 +00:00
|
|
|
menu->setInternalMenu();
|
|
|
|
menu->disableTitle();
|
2006-10-27 06:57:43 +00:00
|
|
|
m_extramenus.push_back(make_pair(label, menu));
|
2008-05-12 00:22:40 +00:00
|
|
|
rereadWindowMenu();
|
2005-06-23 03:07:25 +00:00
|
|
|
}
|
|
|
|
|
2002-08-02 12:58:37 +00:00
|
|
|
void BScreen::reconfigure() {
|
2005-10-21 19:23:57 +00:00
|
|
|
Fluxbox *fluxbox = Fluxbox::instance();
|
2005-04-27 09:52:30 +00:00
|
|
|
|
2008-01-07 20:08:56 +00:00
|
|
|
focusedWinFrameTheme()->setAlpha(*resource.focused_alpha);
|
|
|
|
unfocusedWinFrameTheme()->setAlpha(*resource.unfocused_alpha);
|
2003-07-19 03:59:56 +00:00
|
|
|
m_menutheme->setAlpha(*resource.menu_alpha);
|
2003-12-18 15:27:21 +00:00
|
|
|
|
2010-09-09 13:31:54 +00:00
|
|
|
clampMenuDelay(*resource.menu_delay);
|
2003-12-18 15:27:21 +00:00
|
|
|
|
2008-10-13 04:55:03 +00:00
|
|
|
m_menutheme->setDelay(*resource.menu_delay);
|
2003-12-12 18:18:49 +00:00
|
|
|
|
2005-04-27 09:52:30 +00:00
|
|
|
// realize the number of workspaces from the init-file
|
2006-01-16 18:46:39 +00:00
|
|
|
const unsigned int nr_ws = *resource.workspaces;
|
2005-04-27 09:52:30 +00:00
|
|
|
if (nr_ws > m_workspaces_list.size()) {
|
|
|
|
while(nr_ws != m_workspaces_list.size()) {
|
|
|
|
addWorkspace();
|
|
|
|
}
|
|
|
|
} else if (nr_ws < m_workspaces_list.size()) {
|
|
|
|
while(nr_ws != m_workspaces_list.size()) {
|
|
|
|
removeLastWorkspace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-12 00:22:40 +00:00
|
|
|
// update menu filenames
|
|
|
|
m_rootmenu->reloadHelper()->setMainFile(fluxbox->getMenuFilename());
|
|
|
|
m_windowmenu->reloadHelper()->setMainFile(windowMenuFilename());
|
2003-05-13 00:23:05 +00:00
|
|
|
|
2003-08-04 12:57:23 +00:00
|
|
|
// reconfigure workspaces
|
2003-05-19 22:45:51 +00:00
|
|
|
for_each(m_workspaces_list.begin(),
|
|
|
|
m_workspaces_list.end(),
|
2003-04-14 15:01:55 +00:00
|
|
|
mem_fun(&Workspace::reconfigure));
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2003-08-04 12:57:23 +00:00
|
|
|
// reconfigure Icons
|
2003-05-19 22:45:51 +00:00
|
|
|
for_each(m_icon_list.begin(),
|
|
|
|
m_icon_list.end(),
|
2003-04-14 15:01:55 +00:00
|
|
|
mem_fun(&FluxboxWindow::reconfigure));
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2003-08-11 16:27:23 +00:00
|
|
|
imageControl().cleanCache();
|
2003-07-01 12:39:09 +00:00
|
|
|
// notify objects that the screen is reconfigured
|
2011-05-07 20:32:48 +00:00
|
|
|
m_reconfigure_sig.emit(*this);
|
2004-03-23 09:21:29 +00:00
|
|
|
|
2005-10-21 19:23:57 +00:00
|
|
|
// Reload style
|
|
|
|
FbTk::ThemeManager::instance().load(fluxbox->getStyleFilename(),
|
2005-11-16 22:08:05 +00:00
|
|
|
fluxbox->getStyleOverlayFilename(),
|
2005-10-21 19:23:57 +00:00
|
|
|
m_root_theme->screenNum());
|
2006-03-22 12:23:17 +00:00
|
|
|
|
|
|
|
reconfigureTabs();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BScreen::reconfigureTabs() {
|
2007-12-21 07:35:36 +00:00
|
|
|
const std::list<Focusable *> winlist =
|
|
|
|
focusControl().focusedOrderWinList().clientList();
|
|
|
|
std::list<Focusable *>::const_iterator it = winlist.begin(),
|
|
|
|
it_end = winlist.end();
|
|
|
|
for (; it != it_end; ++it)
|
|
|
|
(*it)->fbwindow()->applyDecorations();
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2007-07-07 01:56:46 +00:00
|
|
|
void BScreen::updateWorkspaceName(unsigned int w) {
|
|
|
|
Workspace *space = getWorkspace(w);
|
|
|
|
if (space) {
|
|
|
|
m_workspace_names[w] = space->name();
|
2008-09-21 13:25:47 +00:00
|
|
|
m_workspacenames_sig.emit(*this);
|
2007-07-07 01:56:46 +00:00
|
|
|
Fluxbox::instance()->save_rc();
|
|
|
|
}
|
|
|
|
}
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-08-02 12:58:37 +00:00
|
|
|
void BScreen::removeWorkspaceNames() {
|
2003-08-24 11:19:45 +00:00
|
|
|
m_workspace_names.clear();
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BScreen::addIcon(FluxboxWindow *w) {
|
2006-10-27 06:57:43 +00:00
|
|
|
if (w == 0)
|
2004-05-02 21:12:22 +00:00
|
|
|
return;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2004-09-05 01:11:41 +00:00
|
|
|
// make sure we have a unique list
|
2005-07-04 18:18:32 +00:00
|
|
|
if (find(iconList().begin(), iconList().end(), w) != iconList().end())
|
2004-09-05 01:11:41 +00:00
|
|
|
return;
|
|
|
|
|
2008-09-22 05:44:40 +00:00
|
|
|
iconList().push_back(w);
|
2004-09-05 01:11:41 +00:00
|
|
|
|
2004-05-02 21:12:22 +00:00
|
|
|
// notify listeners
|
2008-09-22 05:44:40 +00:00
|
|
|
iconListSig().emit(*this);
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BScreen::removeIcon(FluxboxWindow *w) {
|
2004-05-02 21:12:22 +00:00
|
|
|
if (w == 0)
|
2002-12-01 13:42:15 +00:00
|
|
|
return;
|
2004-11-20 18:12:51 +00:00
|
|
|
|
2005-07-04 18:18:32 +00:00
|
|
|
Icons::iterator erase_it = remove_if(iconList().begin(),
|
|
|
|
iconList().end(),
|
2003-04-14 15:01:55 +00:00
|
|
|
bind2nd(equal_to<FluxboxWindow *>(), w));
|
2006-10-27 06:57:43 +00:00
|
|
|
// no need to send iconlist signal if we didn't
|
2004-09-05 01:11:41 +00:00
|
|
|
// change the iconlist
|
|
|
|
if (erase_it != m_icon_list.end()) {
|
2005-07-04 18:18:32 +00:00
|
|
|
iconList().erase(erase_it);
|
2008-09-22 05:44:40 +00:00
|
|
|
iconListSig().emit(*this);
|
2004-09-05 01:11:41 +00:00
|
|
|
}
|
2003-07-28 18:28:03 +00:00
|
|
|
}
|
|
|
|
|
2002-09-08 19:45:59 +00:00
|
|
|
void BScreen::removeWindow(FluxboxWindow *win) {
|
2010-03-17 15:35:07 +00:00
|
|
|
|
|
|
|
fbdbg<<"BScreen::removeWindow("<<win<<")"<<endl;
|
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
// extra precaution, if for some reason, the
|
2004-09-05 01:11:41 +00:00
|
|
|
// icon list should be out of sync
|
|
|
|
removeIcon(win);
|
|
|
|
// remove from workspace
|
|
|
|
Workspace *space = getWorkspace(win->workspaceNumber());
|
|
|
|
if (space != 0)
|
|
|
|
space->removeWindow(win, false);
|
2002-09-08 19:45:59 +00:00
|
|
|
}
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2003-04-15 00:50:25 +00:00
|
|
|
|
|
|
|
void BScreen::removeClient(WinClient &client) {
|
2003-07-28 18:28:03 +00:00
|
|
|
|
2006-02-18 11:39:38 +00:00
|
|
|
focusControl().removeClient(client);
|
2003-09-24 14:26:01 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
if (client.fbwindow() && client.fbwindow()->isIconic())
|
2008-09-21 18:45:01 +00:00
|
|
|
iconListSig().emit(*this);
|
2003-05-14 12:08:19 +00:00
|
|
|
|
2005-05-02 12:10:01 +00:00
|
|
|
using namespace FbTk;
|
|
|
|
|
2003-06-23 14:16:05 +00:00
|
|
|
// remove any grouping this is expecting
|
2005-05-02 12:10:01 +00:00
|
|
|
Groupables::iterator erase_it = find_if(m_expecting_groups.begin(),
|
|
|
|
m_expecting_groups.end(),
|
|
|
|
Compose(bind2nd(equal_to<WinClient *>(), &client),
|
|
|
|
Select2nd<Groupables::value_type>()));
|
|
|
|
|
|
|
|
if (erase_it != m_expecting_groups.end())
|
|
|
|
m_expecting_groups.erase(erase_it);
|
|
|
|
|
2003-07-28 18:28:03 +00:00
|
|
|
// the client could be on icon menu so we update it
|
2004-05-02 21:12:22 +00:00
|
|
|
//!! TODO: check this with the new icon menu
|
|
|
|
// updateIconMenu();
|
2003-08-12 01:04:16 +00:00
|
|
|
|
2003-04-15 00:50:25 +00:00
|
|
|
}
|
|
|
|
|
2002-08-02 12:58:37 +00:00
|
|
|
int BScreen::addWorkspace() {
|
2005-04-27 09:52:30 +00:00
|
|
|
|
2008-09-08 22:50:25 +00:00
|
|
|
bool save_name = getNameOfWorkspace(m_workspaces_list.size()) == "";
|
2007-10-13 21:51:37 +00:00
|
|
|
Workspace *wkspc = new Workspace(*this,
|
2005-04-27 09:52:30 +00:00
|
|
|
getNameOfWorkspace(m_workspaces_list.size()),
|
2003-06-12 15:24:37 +00:00
|
|
|
m_workspaces_list.size());
|
2003-05-19 22:45:51 +00:00
|
|
|
m_workspaces_list.push_back(wkspc);
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2008-09-08 22:50:25 +00:00
|
|
|
if (save_name) {
|
2010-09-08 18:17:21 +00:00
|
|
|
addWorkspaceName(wkspc->name().c_str());
|
2008-09-21 13:25:47 +00:00
|
|
|
m_workspacenames_sig.emit(*this);
|
2008-09-08 22:50:25 +00:00
|
|
|
}
|
2005-04-27 09:52:30 +00:00
|
|
|
|
2003-05-19 22:45:51 +00:00
|
|
|
saveWorkspaces(m_workspaces_list.size());
|
2008-09-18 20:27:16 +00:00
|
|
|
workspaceCountSig().emit( *this );
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2003-05-19 22:45:51 +00:00
|
|
|
return m_workspaces_list.size();
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2002-10-23 17:32:30 +00:00
|
|
|
/// removes last workspace
|
|
|
|
/// @return number of desktops left
|
2002-08-02 12:58:37 +00:00
|
|
|
int BScreen::removeLastWorkspace() {
|
2003-05-19 22:45:51 +00:00
|
|
|
if (m_workspaces_list.size() <= 1)
|
2002-12-01 13:42:15 +00:00
|
|
|
return 0;
|
2003-05-19 22:45:51 +00:00
|
|
|
Workspace *wkspc = m_workspaces_list.back();
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2003-05-19 22:45:51 +00:00
|
|
|
if (m_current_workspace->workspaceID() == wkspc->workspaceID())
|
|
|
|
changeWorkspaceID(m_current_workspace->workspaceID() - 1);
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2006-07-22 07:15:24 +00:00
|
|
|
wkspc->removeAll(wkspc->workspaceID()-1);
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2006-07-23 02:20:42 +00:00
|
|
|
Icons::iterator it = iconList().begin();
|
|
|
|
const Icons::iterator it_end = iconList().end();
|
|
|
|
for (; it != it_end; ++it) {
|
|
|
|
if ((*it)->workspaceNumber() == wkspc->workspaceID())
|
|
|
|
(*it)->setWorkspace(wkspc->workspaceID()-1);
|
|
|
|
}
|
2008-09-21 17:32:40 +00:00
|
|
|
m_clientlist_sig.emit(*this);
|
2006-07-23 02:20:42 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
//remove last workspace
|
2006-10-27 06:57:43 +00:00
|
|
|
m_workspaces_list.pop_back();
|
2004-12-30 14:33:38 +00:00
|
|
|
|
2003-05-19 22:45:51 +00:00
|
|
|
saveWorkspaces(m_workspaces_list.size());
|
2008-09-18 20:27:16 +00:00
|
|
|
workspaceCountSig().emit( *this );
|
2004-12-30 14:33:38 +00:00
|
|
|
// must be deleted after we send notify!!
|
|
|
|
// so we dont get bad pointers somewhere
|
|
|
|
// while processing the notify signal
|
|
|
|
delete wkspc;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2003-05-19 22:45:51 +00:00
|
|
|
return m_workspaces_list.size();
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-12 23:16:13 +00:00
|
|
|
void BScreen::changeWorkspaceID(unsigned int id, bool revert) {
|
2003-09-14 10:13:54 +00:00
|
|
|
|
2003-05-19 22:45:51 +00:00
|
|
|
if (! m_current_workspace || id >= m_workspaces_list.size() ||
|
|
|
|
id == m_current_workspace->workspaceID())
|
2002-12-01 13:42:15 +00:00
|
|
|
return;
|
2003-05-11 11:47:19 +00:00
|
|
|
|
2009-03-09 18:05:41 +00:00
|
|
|
/* Ignore all EnterNotify events until the pointer actually moves */
|
|
|
|
this->focusControl().ignoreAtPointer();
|
|
|
|
|
2004-11-30 22:19:35 +00:00
|
|
|
FbTk::App::instance()->sync(false);
|
2003-10-05 02:31:23 +00:00
|
|
|
|
2008-10-09 00:15:53 +00:00
|
|
|
FluxboxWindow *focused = FocusControl::focusedFbWindow();
|
|
|
|
|
|
|
|
if (focused && focused->isMoving() && doOpaqueMove())
|
|
|
|
// don't reassociate if not opaque moving
|
|
|
|
reassociateWindow(focused, id, true);
|
|
|
|
|
2007-11-04 17:36:40 +00:00
|
|
|
// set new workspace
|
|
|
|
Workspace *old = currentWorkspace();
|
|
|
|
m_current_workspace = getWorkspace(id);
|
|
|
|
|
|
|
|
// we show new workspace first in order to appear faster
|
|
|
|
currentWorkspace()->showAll();
|
|
|
|
|
2003-05-11 11:47:19 +00:00
|
|
|
// reassociate all windows that are stuck to the new workspace
|
2007-11-08 02:06:33 +00:00
|
|
|
Workspace::Windows wins = old->windowList();
|
2003-05-11 11:47:19 +00:00
|
|
|
Workspace::Windows::iterator it = wins.begin();
|
|
|
|
for (; it != wins.end(); ++it) {
|
|
|
|
if ((*it)->isStuck()) {
|
|
|
|
reassociateWindow(*it, id, true);
|
2002-12-01 13:42:15 +00:00
|
|
|
}
|
2003-05-11 11:47:19 +00:00
|
|
|
}
|
2002-09-12 14:55:11 +00:00
|
|
|
|
2007-03-17 08:15:04 +00:00
|
|
|
// change workspace ID of stuck iconified windows, too
|
|
|
|
Icons::iterator icon_it = iconList().begin();
|
|
|
|
for (; icon_it != iconList().end(); ++icon_it) {
|
|
|
|
if ((*icon_it)->isStuck())
|
|
|
|
(*icon_it)->setWorkspace(id);
|
|
|
|
}
|
|
|
|
|
2008-10-09 00:15:53 +00:00
|
|
|
if (focused && focused->isMoving() && doOpaqueMove())
|
2007-10-13 21:51:37 +00:00
|
|
|
focused->focus();
|
2008-10-09 00:15:53 +00:00
|
|
|
else if (revert)
|
2007-01-26 17:18:14 +00:00
|
|
|
FocusControl::revertFocus(*this);
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2007-11-04 17:36:40 +00:00
|
|
|
old->hideAll(false);
|
|
|
|
|
2004-01-19 18:29:43 +00:00
|
|
|
FbTk::App::instance()->sync(false);
|
2003-09-14 10:13:54 +00:00
|
|
|
|
2008-09-21 11:44:48 +00:00
|
|
|
m_currentworkspace_sig.emit(*this);
|
2007-10-13 21:51:37 +00:00
|
|
|
|
2007-11-22 20:21:47 +00:00
|
|
|
// do this after atom handlers, so scripts can access new workspace number
|
|
|
|
Fluxbox::instance()->keys()->doAction(FocusIn, 0, 0, Keys::ON_DESKTOP);
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2002-02-26 22:25:53 +00:00
|
|
|
|
2002-07-23 13:47:05 +00:00
|
|
|
void BScreen::sendToWorkspace(unsigned int id, FluxboxWindow *win, bool changeWS) {
|
2003-12-18 15:27:21 +00:00
|
|
|
if (! m_current_workspace || id >= m_workspaces_list.size())
|
2002-12-01 13:42:15 +00:00
|
|
|
return;
|
2002-02-26 22:25:53 +00:00
|
|
|
|
2006-07-12 00:08:57 +00:00
|
|
|
if (!win)
|
|
|
|
win = FocusControl::focusedFbWindow();
|
2002-02-26 22:25:53 +00:00
|
|
|
|
2008-06-23 20:12:41 +00:00
|
|
|
if (!win || &win->screen() != this || win->isStuck())
|
2007-06-03 20:27:52 +00:00
|
|
|
return;
|
2003-12-04 00:08:55 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
FbTk::App::instance()->sync(false);
|
2003-12-04 00:08:55 +00:00
|
|
|
|
2007-06-03 20:27:52 +00:00
|
|
|
windowMenu().hide();
|
|
|
|
reassociateWindow(win, id, true);
|
2003-12-18 15:27:21 +00:00
|
|
|
|
2007-06-03 20:27:52 +00:00
|
|
|
// change workspace ?
|
2007-10-13 21:51:37 +00:00
|
|
|
if (changeWS)
|
2007-11-12 23:16:13 +00:00
|
|
|
changeWorkspaceID(id, false);
|
2007-10-13 21:51:37 +00:00
|
|
|
|
|
|
|
// if the window is on current workspace, show it; else hide it.
|
|
|
|
if (id == currentWorkspace()->workspaceID() && !win->isIconic())
|
2007-11-23 00:45:56 +00:00
|
|
|
win->show();
|
2007-10-13 21:51:37 +00:00
|
|
|
else {
|
|
|
|
win->hide(true);
|
|
|
|
FocusControl::revertFocus(*this);
|
2007-06-03 20:27:52 +00:00
|
|
|
}
|
2002-10-11 10:22:06 +00:00
|
|
|
|
2007-06-03 20:27:52 +00:00
|
|
|
// send all the transients too
|
|
|
|
FluxboxWindow::ClientList::iterator client_it = win->clientList().begin();
|
|
|
|
FluxboxWindow::ClientList::iterator client_it_end = win->clientList().end();
|
|
|
|
for (; client_it != client_it_end; ++client_it) {
|
|
|
|
WinClient::TransientList::const_iterator it = (*client_it)->transientList().begin();
|
|
|
|
WinClient::TransientList::const_iterator it_end = (*client_it)->transientList().end();
|
|
|
|
for (; it != it_end; ++it) {
|
|
|
|
if ((*it)->fbwindow())
|
|
|
|
sendToWorkspace(id, (*it)->fbwindow(), false);
|
|
|
|
}
|
2002-12-01 13:42:15 +00:00
|
|
|
}
|
2003-12-04 00:08:55 +00:00
|
|
|
|
2002-02-26 22:25:53 +00:00
|
|
|
}
|
|
|
|
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
bool BScreen::isKdeDockapp(Window client) const {
|
|
|
|
//Check and see if client is KDE dock applet.
|
|
|
|
bool iskdedockapp = false;
|
|
|
|
Atom ajunk;
|
|
|
|
int ijunk;
|
2006-08-09 04:54:58 +00:00
|
|
|
unsigned long *data = 0, uljunk;
|
2004-04-19 22:44:42 +00:00
|
|
|
Display *disp = FbTk::App::instance()->display();
|
|
|
|
// Check if KDE v2.x dock applet
|
|
|
|
if (XGetWindowProperty(disp, client,
|
2006-10-27 06:57:43 +00:00
|
|
|
XInternAtom(FbTk::App::instance()->display(),
|
2004-04-19 22:44:42 +00:00
|
|
|
"_KDE_NET_WM_SYSTEM_TRAY_WINDOW_FOR", False),
|
|
|
|
0l, 1l, False,
|
|
|
|
XA_WINDOW, &ajunk, &ijunk, &uljunk,
|
2006-08-09 04:54:58 +00:00
|
|
|
&uljunk, (unsigned char **) &data) == Success) {
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
if (data)
|
|
|
|
iskdedockapp = true;
|
|
|
|
XFree((void *) data);
|
|
|
|
data = 0;
|
|
|
|
}
|
2003-07-28 20:11:55 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
// Check if KDE v1.x dock applet
|
|
|
|
if (!iskdedockapp) {
|
2006-10-27 06:57:43 +00:00
|
|
|
Atom kwm1 = XInternAtom(FbTk::App::instance()->display(),
|
2004-04-19 22:44:42 +00:00
|
|
|
"KWM_DOCKWINDOW", False);
|
2003-07-28 20:11:55 +00:00
|
|
|
if (XGetWindowProperty(disp, client,
|
2004-04-19 22:44:42 +00:00
|
|
|
kwm1, 0l, 1l, False,
|
|
|
|
kwm1, &ajunk, &ijunk, &uljunk,
|
2006-08-09 04:54:58 +00:00
|
|
|
&uljunk, (unsigned char **) &data) == Success && data) {
|
2004-04-19 22:44:42 +00:00
|
|
|
iskdedockapp = (data && data[0] != 0);
|
2003-07-28 20:11:55 +00:00
|
|
|
XFree((void *) data);
|
|
|
|
data = 0;
|
|
|
|
}
|
2006-10-27 06:57:43 +00:00
|
|
|
}
|
2003-07-28 20:11:55 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
return iskdedockapp;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BScreen::addKdeDockapp(Window client) {
|
|
|
|
|
|
|
|
XSelectInput(FbTk::App::instance()->display(), client, StructureNotifyMask);
|
|
|
|
FbTk::EventHandler *evh = 0;
|
|
|
|
FbTk::EventManager *evm = FbTk::EventManager::instance();
|
2010-08-23 17:49:47 +00:00
|
|
|
|
2011-01-13 15:27:53 +00:00
|
|
|
AtomHandler* handler = 0;
|
|
|
|
#if USE_TOOLBAR
|
|
|
|
handler = Fluxbox::instance()->getAtomHandler(SystemTray::getNetSystemTrayAtom(screenNumber()));
|
|
|
|
#endif
|
2004-04-19 22:44:42 +00:00
|
|
|
if (handler == 0) {
|
|
|
|
#ifdef SLIT
|
2007-12-25 06:36:22 +00:00
|
|
|
if (slit() != 0 && slit()->acceptKdeDockapp())
|
2004-04-19 22:44:42 +00:00
|
|
|
slit()->addClient(client);
|
|
|
|
else
|
|
|
|
#endif // SLIT
|
|
|
|
return false;
|
|
|
|
} else {
|
2006-10-27 06:57:43 +00:00
|
|
|
// this handler is a special case
|
2004-05-02 21:12:22 +00:00
|
|
|
// so we call setupClient in it
|
2004-04-19 22:44:42 +00:00
|
|
|
WinClient winclient(client, *this);
|
|
|
|
handler->setupClient(winclient);
|
|
|
|
// we need to save old handler and re-add it later
|
|
|
|
evh = evm->find(client);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (evh != 0) // re-add handler
|
|
|
|
evm->add(*evh, client);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
FluxboxWindow *BScreen::createWindow(Window client) {
|
|
|
|
FbTk::App::instance()->sync(false);
|
2003-07-28 20:11:55 +00:00
|
|
|
|
|
|
|
|
2005-04-29 02:52:36 +00:00
|
|
|
if (isKdeDockapp(client) && addKdeDockapp(client)) {
|
|
|
|
return 0; // dont create a FluxboxWindow for this one
|
2004-04-19 22:44:42 +00:00
|
|
|
}
|
2003-07-28 20:11:55 +00:00
|
|
|
|
2003-06-23 14:16:05 +00:00
|
|
|
WinClient *winclient = new WinClient(client, *this);
|
|
|
|
|
2003-06-27 15:05:19 +00:00
|
|
|
if (winclient->initial_state == WithdrawnState) {
|
|
|
|
delete winclient;
|
2003-01-05 22:26:56 +00:00
|
|
|
#ifdef SLIT
|
2007-12-25 06:36:22 +00:00
|
|
|
if (slit() && !isKdeDockapp(client))
|
2004-04-19 22:44:42 +00:00
|
|
|
slit()->addClient(client);
|
2003-06-24 14:57:54 +00:00
|
|
|
#endif // SLIT
|
2003-05-17 11:05:33 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2003-01-05 22:26:56 +00:00
|
|
|
|
2003-06-23 14:16:05 +00:00
|
|
|
// check if it should be grouped with something else
|
|
|
|
FluxboxWindow *win;
|
2006-07-20 03:25:28 +00:00
|
|
|
WinClient *other;
|
|
|
|
if ((other = findGroupLeft(*winclient)) && (win = other->fbwindow())) {
|
2003-06-23 14:16:05 +00:00
|
|
|
win->attachClient(*winclient);
|
2003-07-04 01:03:41 +00:00
|
|
|
Fluxbox::instance()->attachSignals(*winclient);
|
2003-01-05 22:26:56 +00:00
|
|
|
} else {
|
2003-06-23 14:16:05 +00:00
|
|
|
|
2003-07-04 01:03:41 +00:00
|
|
|
Fluxbox::instance()->attachSignals(*winclient);
|
2007-03-10 18:19:23 +00:00
|
|
|
if (winclient->fbwindow()) { // may have been set in an atomhandler
|
2003-07-04 01:03:41 +00:00
|
|
|
win = winclient->fbwindow();
|
2007-03-10 18:19:23 +00:00
|
|
|
Workspace *workspace = getWorkspace(win->workspaceNumber());
|
|
|
|
if (workspace)
|
|
|
|
workspace->updateClientmenu();
|
|
|
|
} else {
|
2008-08-27 22:29:33 +00:00
|
|
|
win = new FluxboxWindow(*winclient);
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2003-07-04 01:03:41 +00:00
|
|
|
if (!win->isManaged()) {
|
|
|
|
delete win;
|
|
|
|
return 0;
|
2006-10-27 06:57:43 +00:00
|
|
|
}
|
2003-07-04 01:03:41 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2007-01-26 17:21:44 +00:00
|
|
|
// add the window to the focus list
|
2007-01-27 18:06:28 +00:00
|
|
|
// always add to front on startup to keep the focus order the same
|
2007-12-25 17:14:20 +00:00
|
|
|
if (win->isFocused() || Fluxbox::instance()->isStartup())
|
2007-01-26 17:21:44 +00:00
|
|
|
focusControl().addFocusFront(*winclient);
|
|
|
|
else
|
|
|
|
focusControl().addFocusBack(*winclient);
|
2006-07-06 04:10:34 +00:00
|
|
|
|
2003-06-23 14:16:05 +00:00
|
|
|
// we also need to check if another window expects this window to the left
|
|
|
|
// and if so, then join it.
|
2006-07-20 03:25:28 +00:00
|
|
|
if ((other = findGroupRight(*winclient)) && other->fbwindow() != win)
|
|
|
|
win->attachClient(*other);
|
2006-08-04 21:43:47 +00:00
|
|
|
else if (other) // should never happen
|
2006-07-20 03:25:28 +00:00
|
|
|
win->moveClientRightOf(*other, *winclient);
|
2003-06-23 14:16:05 +00:00
|
|
|
|
2008-09-21 17:32:40 +00:00
|
|
|
m_clientlist_sig.emit(*this);
|
2004-01-19 18:29:43 +00:00
|
|
|
|
2003-12-04 21:31:02 +00:00
|
|
|
FbTk::App::instance()->sync(false);
|
2003-01-05 22:26:56 +00:00
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
FluxboxWindow *BScreen::createWindow(WinClient &client) {
|
2005-01-04 10:51:38 +00:00
|
|
|
|
|
|
|
if (isKdeDockapp(client.window()) && addKdeDockapp(client.window())) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-27 22:29:33 +00:00
|
|
|
FluxboxWindow *win = new FluxboxWindow(client);
|
2004-04-19 22:44:42 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
#ifdef SLIT
|
2005-01-05 01:56:19 +00:00
|
|
|
if (win->initialState() == WithdrawnState && slit() != 0) {
|
2007-01-27 18:06:28 +00:00
|
|
|
slit()->addClient(client.window());
|
2005-01-05 01:56:19 +00:00
|
|
|
}
|
2003-04-14 15:01:55 +00:00
|
|
|
#endif // SLIT
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-04-19 22:44:42 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
if (!win->isManaged()) {
|
|
|
|
delete win;
|
|
|
|
return 0;
|
|
|
|
}
|
2003-12-14 01:09:00 +00:00
|
|
|
|
2007-01-27 18:06:28 +00:00
|
|
|
win->show();
|
|
|
|
// don't ask me why, but client doesn't seem to keep focus in new window
|
|
|
|
// and we don't seem to get a FocusIn event from setInputFocus
|
|
|
|
if ((focusControl().focusNew() || FocusControl::focusedWindow() == &client)
|
2007-10-13 21:51:37 +00:00
|
|
|
&& win->focus())
|
2006-07-09 06:51:28 +00:00
|
|
|
FocusControl::setFocusedWindow(&client);
|
2006-07-06 04:10:34 +00:00
|
|
|
|
2008-09-21 17:32:40 +00:00
|
|
|
m_clientlist_sig.emit(*this);
|
2004-01-19 18:29:43 +00:00
|
|
|
|
2003-04-14 15:01:55 +00:00
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
Strut *BScreen::requestStrut(int head, int left, int right, int top, int bottom) {
|
|
|
|
if (head > numHeads() && head != 1) {
|
2006-10-27 06:57:43 +00:00
|
|
|
// head does not exist (if head == 1, then numHeads() == 0,
|
2004-09-11 13:33:07 +00:00
|
|
|
// which means no xinerama, but there's a head after all
|
|
|
|
head = numHeads();
|
|
|
|
}
|
2003-06-18 13:42:21 +00:00
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
int begin = head-1;
|
|
|
|
int end = head;
|
2003-06-18 13:42:21 +00:00
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
if (head == 0) { // all heads (or no xinerama)
|
|
|
|
begin = 0;
|
|
|
|
end = (numHeads() ? numHeads() : 1);
|
2003-06-18 13:42:21 +00:00
|
|
|
}
|
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
Strut* next = 0;
|
|
|
|
for (int i = begin; i != end; i++) {
|
2007-07-11 11:54:53 +00:00
|
|
|
next = m_head_areas[i]->requestStrut(i+1, left, right, top, bottom, next);
|
2004-09-11 13:33:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BScreen::clearStrut(Strut *str) {
|
2006-10-27 06:57:43 +00:00
|
|
|
if (str->next())
|
2004-09-11 13:33:07 +00:00
|
|
|
clearStrut(str->next());
|
|
|
|
int head = str->head() ? str->head() - 1 : 0;
|
2007-07-11 11:54:53 +00:00
|
|
|
/* The number of heads may have changed, be careful. */
|
2008-05-16 00:49:19 +00:00
|
|
|
if (head < (numHeads() ? numHeads() : 1))
|
2007-07-11 11:54:53 +00:00
|
|
|
m_head_areas[head]->clearStrut(str);
|
2004-09-11 13:33:07 +00:00
|
|
|
// str is invalid now
|
|
|
|
}
|
2003-06-18 13:42:21 +00:00
|
|
|
|
|
|
|
void BScreen::updateAvailableWorkspaceArea() {
|
2004-09-11 13:33:07 +00:00
|
|
|
size_t n = (numHeads() ? numHeads() : 1);
|
|
|
|
bool updated = false;
|
2003-06-18 13:42:21 +00:00
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
for (size_t i = 0; i < n; i++) {
|
2007-07-11 11:54:53 +00:00
|
|
|
updated = m_head_areas[i]->updateAvailableWorkspaceArea() || updated;
|
2004-09-11 13:33:07 +00:00
|
|
|
}
|
2004-01-19 18:29:43 +00:00
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
if (updated)
|
2008-09-28 14:00:48 +00:00
|
|
|
m_workspace_area_sig.emit(*this);
|
2003-06-18 13:42:21 +00:00
|
|
|
}
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-07-23 17:11:59 +00:00
|
|
|
void BScreen::addWorkspaceName(const char *name) {
|
2006-05-07 10:08:25 +00:00
|
|
|
m_workspace_names.push_back(FbTk::FbStringUtil::LocaleStrToFb(name));
|
2007-02-17 17:39:00 +00:00
|
|
|
Workspace *wkspc = getWorkspace(m_workspace_names.size()-1);
|
|
|
|
if (wkspc)
|
|
|
|
wkspc->setName(m_workspace_names.back());
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-11 22:28:18 +00:00
|
|
|
string BScreen::getNameOfWorkspace(unsigned int workspace) const {
|
2003-12-14 01:09:00 +00:00
|
|
|
if (workspace < m_workspace_names.size())
|
2003-05-19 22:45:51 +00:00
|
|
|
return m_workspace_names[workspace];
|
2003-12-14 01:09:00 +00:00
|
|
|
else
|
2002-12-01 13:42:15 +00:00
|
|
|
return "";
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
void BScreen::reassociateWindow(FluxboxWindow *w, unsigned int wkspc_id,
|
2003-04-28 00:38:42 +00:00
|
|
|
bool ignore_sticky) {
|
2003-04-14 15:01:55 +00:00
|
|
|
if (w == 0)
|
|
|
|
return;
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2005-07-04 18:18:32 +00:00
|
|
|
if (wkspc_id >= numberOfWorkspaces())
|
2003-05-19 22:45:51 +00:00
|
|
|
wkspc_id = currentWorkspace()->workspaceID();
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2003-05-15 11:17:29 +00:00
|
|
|
if (!w->isIconic() && w->workspaceNumber() == wkspc_id)
|
2002-12-01 13:42:15 +00:00
|
|
|
return;
|
|
|
|
|
2003-02-16 17:57:54 +00:00
|
|
|
|
2002-12-01 13:42:15 +00:00
|
|
|
if (w->isIconic()) {
|
|
|
|
removeIcon(w);
|
2003-04-14 15:01:55 +00:00
|
|
|
getWorkspace(wkspc_id)->addWindow(*w);
|
2002-12-01 13:42:15 +00:00
|
|
|
} else if (ignore_sticky || ! w->isStuck()) {
|
2005-01-05 01:56:19 +00:00
|
|
|
// fresh windows have workspaceNumber == -1, which leads to
|
|
|
|
// an invalid workspace (unsigned int)
|
2011-02-24 15:56:53 +00:00
|
|
|
Workspace* ws = getWorkspace(w->workspaceNumber());
|
|
|
|
if (ws)
|
|
|
|
ws->removeWindow(w, true);
|
2003-04-14 15:01:55 +00:00
|
|
|
getWorkspace(wkspc_id)->addWindow(*w);
|
2002-12-01 13:42:15 +00:00
|
|
|
}
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2004-05-02 21:12:22 +00:00
|
|
|
void BScreen::initMenus() {
|
|
|
|
m_workspacemenu.reset(MenuCreator::createMenuType("workspacemenu", screenNumber()));
|
2008-05-12 00:22:40 +00:00
|
|
|
m_rootmenu->reloadHelper()->setMainFile(Fluxbox::instance()->getMenuFilename());
|
|
|
|
m_windowmenu->reloadHelper()->setMainFile(windowMenuFilename());
|
2004-05-02 21:12:22 +00:00
|
|
|
}
|
2003-04-20 12:21:35 +00:00
|
|
|
|
2005-06-23 03:07:25 +00:00
|
|
|
|
2008-05-12 00:22:40 +00:00
|
|
|
void BScreen::rereadMenu() {
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2008-05-12 00:22:40 +00:00
|
|
|
m_rootmenu->removeAll();
|
2010-09-08 18:17:21 +00:00
|
|
|
m_rootmenu->setLabel(FbTk::BiDiString(""));
|
2002-12-01 13:42:15 +00:00
|
|
|
|
|
|
|
Fluxbox * const fb = Fluxbox::instance();
|
2008-05-11 17:17:21 +00:00
|
|
|
if (!fb->getMenuFilename().empty())
|
2008-05-12 00:22:40 +00:00
|
|
|
MenuCreator::createFromFile(fb->getMenuFilename(), *m_rootmenu,
|
|
|
|
m_rootmenu->reloadHelper());
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2008-05-11 17:17:21 +00:00
|
|
|
if (m_rootmenu->numberOfItems() == 0) {
|
2004-06-07 11:46:05 +00:00
|
|
|
_FB_USES_NLS;
|
2008-05-11 17:17:21 +00:00
|
|
|
m_rootmenu->setLabel(_FB_XTEXT(Menu, DefaultRootMenu, "Fluxbox default menu", "Title of fallback root menu"));
|
2008-01-11 07:41:22 +00:00
|
|
|
FbTk::RefCount<FbTk::Command<void> > restart_fb(FbTk::CommandParser<void>::instance().parse("restart"));
|
|
|
|
FbTk::RefCount<FbTk::Command<void> > exit_fb(FbTk::CommandParser<void>::instance().parse("exit"));
|
|
|
|
FbTk::RefCount<FbTk::Command<void> > execute_xterm(FbTk::CommandParser<void>::instance().parse("exec xterm"));
|
2002-12-13 20:19:05 +00:00
|
|
|
m_rootmenu->setInternalMenu();
|
2006-03-18 22:03:23 +00:00
|
|
|
m_rootmenu->insert("xterm", execute_xterm);
|
2008-04-30 15:34:59 +00:00
|
|
|
m_rootmenu->insert(_FB_XTEXT(Menu, Reconfigure, "Reconfigure",
|
|
|
|
"Reload Configuration command")),
|
2006-06-21 14:41:16 +00:00
|
|
|
m_rootmenu->insert(_FB_XTEXT(Menu, Restart, "Restart", "Restart command"),
|
2003-01-09 17:41:02 +00:00
|
|
|
restart_fb);
|
2006-06-21 14:41:16 +00:00
|
|
|
m_rootmenu->insert(_FB_XTEXT(Menu, Exit, "Exit", "Exit command"),
|
2003-01-09 17:41:02 +00:00
|
|
|
exit_fb);
|
2003-08-10 12:50:04 +00:00
|
|
|
}
|
2001-12-11 20:47:02 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-06-20 03:48:26 +00:00
|
|
|
const std::string BScreen::windowMenuFilename() const {
|
|
|
|
if ((*resource.windowmenufile).empty())
|
|
|
|
return Fluxbox::instance()->getDefaultDataFilename("windowmenu");
|
|
|
|
return *resource.windowmenufile;
|
|
|
|
}
|
|
|
|
|
2008-05-12 00:22:40 +00:00
|
|
|
void BScreen::rereadWindowMenu() {
|
|
|
|
|
|
|
|
m_windowmenu->removeAll();
|
|
|
|
if (!windowMenuFilename().empty())
|
2008-06-06 13:58:20 +00:00
|
|
|
MenuCreator::createFromFile(windowMenuFilename(), *m_windowmenu,
|
|
|
|
m_windowmenu->reloadHelper());
|
2008-05-12 00:22:40 +00:00
|
|
|
|
|
|
|
}
|
2004-05-02 21:12:22 +00:00
|
|
|
|
2006-05-20 15:08:14 +00:00
|
|
|
void BScreen::addConfigMenu(const FbTk::FbString &label, FbTk::Menu &menu) {
|
2006-10-27 06:57:43 +00:00
|
|
|
m_configmenu_list.push_back(make_pair(label, &menu));
|
2011-03-19 18:19:26 +00:00
|
|
|
if (m_configmenu.get())
|
|
|
|
setupConfigmenu(*m_configmenu.get());
|
2003-07-20 02:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BScreen::removeConfigMenu(FbTk::Menu &menu) {
|
2005-05-02 12:10:01 +00:00
|
|
|
Configmenus::iterator erase_it = find_if(m_configmenu_list.begin(),
|
|
|
|
m_configmenu_list.end(),
|
|
|
|
FbTk::Compose(bind2nd(equal_to<FbTk::Menu *>(), &menu),
|
|
|
|
FbTk::Select2nd<Configmenus::value_type>()));
|
|
|
|
if (erase_it != m_configmenu_list.end())
|
|
|
|
m_configmenu_list.erase(erase_it);
|
2006-04-24 13:34:14 +00:00
|
|
|
|
2011-03-19 18:19:26 +00:00
|
|
|
if (!isShuttingdown() && m_configmenu.get())
|
2008-09-26 03:51:37 +00:00
|
|
|
setupConfigmenu(*m_configmenu.get());
|
2004-06-14 12:25:31 +00:00
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
}
|
2003-07-20 02:45:57 +00:00
|
|
|
|
2006-03-18 22:03:23 +00:00
|
|
|
|
|
|
|
void BScreen::addManagedResource(FbTk::Resource_base *resource) {
|
|
|
|
m_managed_resources.push_back(resource);
|
|
|
|
}
|
|
|
|
|
2003-01-12 17:59:20 +00:00
|
|
|
void BScreen::setupConfigmenu(FbTk::Menu &menu) {
|
2004-06-07 11:46:05 +00:00
|
|
|
_FB_USES_NLS;
|
2003-01-12 17:59:20 +00:00
|
|
|
|
2003-07-20 02:45:57 +00:00
|
|
|
menu.removeAll();
|
|
|
|
|
2003-01-12 17:59:20 +00:00
|
|
|
FbTk::MacroCommand *s_a_reconf_macro = new FbTk::MacroCommand();
|
2006-03-22 12:23:17 +00:00
|
|
|
FbTk::MacroCommand *s_a_reconftabs_macro = new FbTk::MacroCommand();
|
2008-01-11 07:41:22 +00:00
|
|
|
FbTk::RefCount<FbTk::Command<void> > saverc_cmd(new FbTk::SimpleCommand<Fluxbox>(
|
2006-10-27 06:57:43 +00:00
|
|
|
*Fluxbox::instance(),
|
2006-03-22 12:23:17 +00:00
|
|
|
&Fluxbox::save_rc));
|
2008-01-11 07:41:22 +00:00
|
|
|
FbTk::RefCount<FbTk::Command<void> > reconf_cmd(FbTk::CommandParser<void>::instance().parse("reconfigure"));
|
2006-03-22 12:23:17 +00:00
|
|
|
|
2008-01-11 07:41:22 +00:00
|
|
|
FbTk::RefCount<FbTk::Command<void> > reconftabs_cmd(new FbTk::SimpleCommand<BScreen>(
|
2006-10-27 06:57:43 +00:00
|
|
|
*this,
|
2006-03-22 12:23:17 +00:00
|
|
|
&BScreen::reconfigureTabs));
|
2003-01-12 17:59:20 +00:00
|
|
|
s_a_reconf_macro->add(saverc_cmd);
|
|
|
|
s_a_reconf_macro->add(reconf_cmd);
|
2006-03-22 12:23:17 +00:00
|
|
|
s_a_reconftabs_macro->add(saverc_cmd);
|
|
|
|
s_a_reconftabs_macro->add(reconftabs_cmd);
|
2008-01-11 07:41:22 +00:00
|
|
|
FbTk::RefCount<FbTk::Command<void> > save_and_reconfigure(s_a_reconf_macro);
|
|
|
|
FbTk::RefCount<FbTk::Command<void> > save_and_reconftabs(s_a_reconftabs_macro);
|
2003-02-20 23:31:13 +00:00
|
|
|
// create focus menu
|
2006-10-27 06:57:43 +00:00
|
|
|
// we don't set this to internal menu so will
|
2003-04-26 15:00:25 +00:00
|
|
|
// be deleted toghether with the parent
|
2006-06-21 14:41:16 +00:00
|
|
|
FbTk::FbString focusmenu_label = _FB_XTEXT(Configmenu, FocusModel,
|
2006-10-27 06:57:43 +00:00
|
|
|
"Focus Model",
|
2006-02-18 11:39:38 +00:00
|
|
|
"Method used to give focus to windows");
|
2006-05-20 15:08:14 +00:00
|
|
|
FbTk::Menu *focus_menu = createMenu(focusmenu_label);
|
2003-02-20 23:31:13 +00:00
|
|
|
|
2007-12-27 21:55:24 +00:00
|
|
|
#define _BOOLITEM(m,a, b, c, d, e, f) (m).insert(new FbTk::BoolMenuItem(_FB_XTEXT(a, b, c, d), e, f))
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2006-03-22 12:23:17 +00:00
|
|
|
|
2006-02-18 11:39:38 +00:00
|
|
|
#define _FOCUSITEM(a, b, c, d, e) \
|
2006-06-21 14:41:16 +00:00
|
|
|
focus_menu->insert(new FocusModelMenuItem(_FB_XTEXT(a, b, c, d), focusControl(), \
|
2006-02-18 11:39:38 +00:00
|
|
|
e, save_and_reconfigure))
|
2004-05-02 21:12:22 +00:00
|
|
|
|
2005-07-20 18:29:01 +00:00
|
|
|
_FOCUSITEM(Configmenu, ClickFocus,
|
2004-06-07 11:46:05 +00:00
|
|
|
"Click To Focus", "Click to focus",
|
2006-02-18 11:39:38 +00:00
|
|
|
FocusControl::CLICKFOCUS);
|
2005-07-20 18:29:01 +00:00
|
|
|
_FOCUSITEM(Configmenu, MouseFocus,
|
2010-05-28 17:22:13 +00:00
|
|
|
"Mouse Focus (Keyboard Friendly)",
|
|
|
|
"Mouse Focus (Keyboard Friendly)",
|
2006-02-18 11:39:38 +00:00
|
|
|
FocusControl::MOUSEFOCUS);
|
2010-05-28 17:22:13 +00:00
|
|
|
_FOCUSITEM(Configmenu, StrictMouseFocus,
|
|
|
|
"Mouse Focus (Strict)",
|
|
|
|
"Mouse Focus (Strict)",
|
|
|
|
FocusControl::STRICTMOUSEFOCUS);
|
2006-02-18 11:39:38 +00:00
|
|
|
#undef _FOCUSITEM
|
2005-07-20 18:29:01 +00:00
|
|
|
|
2008-09-01 15:00:04 +00:00
|
|
|
focus_menu->insert(new FbTk::MenuSeparator());
|
2006-08-02 18:38:09 +00:00
|
|
|
focus_menu->insert(new TabFocusModelMenuItem(_FB_XTEXT(Configmenu,
|
|
|
|
ClickTabFocus, "ClickTabFocus", "Click tab to focus windows"),
|
|
|
|
focusControl(), FocusControl::CLICKTABFOCUS, save_and_reconfigure));
|
|
|
|
focus_menu->insert(new TabFocusModelMenuItem(_FB_XTEXT(Configmenu,
|
|
|
|
MouseTabFocus, "MouseTabFocus", "Hover over tab to focus windows"),
|
2006-10-27 06:57:43 +00:00
|
|
|
focusControl(), FocusControl::MOUSETABFOCUS, save_and_reconfigure));
|
2008-09-01 15:00:04 +00:00
|
|
|
focus_menu->insert(new FbTk::MenuSeparator());
|
2003-08-04 12:57:23 +00:00
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
try {
|
2007-12-27 21:55:24 +00:00
|
|
|
focus_menu->insert(new FbTk::BoolMenuItem(_FB_XTEXT(Configmenu, FocusNew,
|
2007-10-13 21:51:37 +00:00
|
|
|
"Focus New Windows", "Focus newly created windows"),
|
2007-12-27 21:55:24 +00:00
|
|
|
m_resource_manager.getResource<bool>(name() + ".focusNewWindows"),
|
2007-10-13 21:51:37 +00:00
|
|
|
saverc_cmd));
|
|
|
|
} catch (FbTk::ResourceException e) {
|
|
|
|
cerr<<e.what()<<endl;
|
|
|
|
}
|
|
|
|
|
2008-09-27 20:37:04 +00:00
|
|
|
_BOOLITEM(*focus_menu, Configmenu, AutoRaise,
|
|
|
|
"Auto Raise", "Auto Raise windows on sloppy",
|
|
|
|
resource.auto_raise, saverc_cmd);
|
|
|
|
_BOOLITEM(*focus_menu, Configmenu, ClickRaises,
|
|
|
|
"Click Raises", "Click Raises",
|
|
|
|
resource.click_raises, saverc_cmd);
|
2003-02-20 23:31:13 +00:00
|
|
|
|
2004-12-13 14:03:17 +00:00
|
|
|
focus_menu->updateMenu();
|
2003-04-16 00:38:06 +00:00
|
|
|
|
2003-07-25 10:03:55 +00:00
|
|
|
menu.insert(focusmenu_label, focus_menu);
|
2006-03-22 12:23:17 +00:00
|
|
|
|
|
|
|
// END focus menu
|
|
|
|
|
2007-10-13 21:51:37 +00:00
|
|
|
// BEGIN maximize menu
|
|
|
|
|
|
|
|
FbTk::FbString maxmenu_label = _FB_XTEXT(Configmenu, MaxMenu,
|
|
|
|
"Maximize Options", "heading for maximization options");
|
|
|
|
FbTk::Menu *maxmenu = createMenu(maxmenu_label);
|
|
|
|
|
|
|
|
_BOOLITEM(*maxmenu, Configmenu, FullMax,
|
|
|
|
"Full Maximization", "Maximise over slit, toolbar, etc",
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.full_max, saverc_cmd);
|
2007-10-13 21:51:37 +00:00
|
|
|
_BOOLITEM(*maxmenu, Configmenu, MaxIgnoreInc,
|
|
|
|
"Ignore Resize Increment",
|
|
|
|
"Maximizing Ignores Resize Increment (e.g. xterm)",
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.max_ignore_inc, saverc_cmd);
|
2007-10-13 21:51:37 +00:00
|
|
|
_BOOLITEM(*maxmenu, Configmenu, MaxDisableMove,
|
|
|
|
"Disable Moving", "Don't Allow Moving While Maximized",
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.max_disable_move, saverc_cmd);
|
2007-10-13 21:51:37 +00:00
|
|
|
_BOOLITEM(*maxmenu, Configmenu, MaxDisableResize,
|
|
|
|
"Disable Resizing", "Don't Allow Resizing While Maximized",
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.max_disable_resize, saverc_cmd);
|
2007-10-13 21:51:37 +00:00
|
|
|
|
|
|
|
maxmenu->updateMenu();
|
|
|
|
menu.insert(maxmenu_label, maxmenu);
|
|
|
|
|
|
|
|
// END maximize menu
|
|
|
|
|
2006-03-22 12:23:17 +00:00
|
|
|
// BEGIN tab menu
|
|
|
|
|
2006-06-21 14:41:16 +00:00
|
|
|
FbTk::FbString tabmenu_label = _FB_XTEXT(Configmenu, TabMenu,
|
2006-10-27 06:57:43 +00:00
|
|
|
"Tab Options",
|
2006-03-22 12:23:17 +00:00
|
|
|
"heading for tab-related options");
|
2006-05-20 15:08:14 +00:00
|
|
|
FbTk::Menu *tab_menu = createMenu(tabmenu_label);
|
2006-06-21 14:41:16 +00:00
|
|
|
FbTk::FbString tabplacement_label = _FB_XTEXT(Menu, Placement, "Placement", "Title of Placement menu");
|
2006-03-22 12:23:17 +00:00
|
|
|
FbTk::Menu *tabplacement_menu = createToggleMenu(tabplacement_label);
|
|
|
|
|
|
|
|
tab_menu->insert(tabplacement_label, tabplacement_menu);
|
|
|
|
|
|
|
|
_BOOLITEM(*tab_menu,Configmenu, TabsInTitlebar,
|
|
|
|
"Tabs in Titlebar", "Tabs in Titlebar",
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.default_internal_tabs, save_and_reconftabs);
|
|
|
|
tab_menu->insert(new FbTk::BoolMenuItem(_FB_XTEXT(Common, MaximizeOver,
|
2006-07-26 01:22:42 +00:00
|
|
|
"Maximize Over", "Maximize over this thing when maximizing"),
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.max_over_tabs, save_and_reconfigure));
|
|
|
|
tab_menu->insert(new FbTk::BoolMenuItem(_FB_XTEXT(Toolbar, ShowIcons,
|
2007-10-13 21:51:37 +00:00
|
|
|
"Show Pictures", "chooses if little icons are shown next to title in the iconbar"),
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.tabs_use_pixmap, save_and_reconfigure));
|
2006-03-22 12:23:17 +00:00
|
|
|
|
2006-03-22 13:06:00 +00:00
|
|
|
FbTk::MenuItem *tab_width_item =
|
2007-12-27 21:55:24 +00:00
|
|
|
new FbTk::IntMenuItem(_FB_XTEXT(Configmenu, ExternalTabWidth,
|
2006-03-22 13:06:00 +00:00
|
|
|
"External Tab Width",
|
|
|
|
"Width of external-style tabs"),
|
|
|
|
resource.tab_width, 10, 3000, /* silly number */
|
|
|
|
*tab_menu);
|
|
|
|
tab_width_item->setCommand(save_and_reconftabs);
|
|
|
|
tab_menu->insert(tab_width_item);
|
|
|
|
|
2008-08-18 08:45:44 +00:00
|
|
|
// menu is 3 wide, 5 down
|
2010-09-18 07:26:05 +00:00
|
|
|
struct PlacementP {
|
|
|
|
const FbTk::FbString label;
|
|
|
|
FbWinFrame::TabPlacement placement;
|
|
|
|
};
|
|
|
|
static const PlacementP place_menu[] = {
|
|
|
|
|
|
|
|
{ _FB_XTEXT(Align, TopLeft, "Top Left", "Top Left"), FbWinFrame::TOPLEFT},
|
|
|
|
{ _FB_XTEXT(Align, LeftTop, "Left Top", "Left Top"), FbWinFrame::LEFTTOP},
|
|
|
|
{ _FB_XTEXT(Align, LeftCenter, "Left Center", "Left Center"), FbWinFrame::LEFT},
|
|
|
|
{ _FB_XTEXT(Align, LeftBottom, "Left Bottom", "Left Bottom"), FbWinFrame::LEFTBOTTOM},
|
|
|
|
{ _FB_XTEXT(Align, BottomLeft, "Bottom Left", "Bottom Left"), FbWinFrame::BOTTOMLEFT},
|
|
|
|
{ _FB_XTEXT(Align, TopCenter, "Top Center", "Top Center"), FbWinFrame::TOP},
|
|
|
|
{ "", FbWinFrame::TOPLEFT},
|
|
|
|
{ "", FbWinFrame::TOPLEFT},
|
|
|
|
{ "", FbWinFrame::TOPLEFT},
|
|
|
|
{ _FB_XTEXT(Align, BottomCenter, "Bottom Center", "Bottom Center"), FbWinFrame::BOTTOM},
|
|
|
|
{ _FB_XTEXT(Align, TopRight, "Top Right", "Top Right"), FbWinFrame::TOPRIGHT},
|
|
|
|
{ _FB_XTEXT(Align, RightTop, "Right Top", "Right Top"), FbWinFrame::RIGHTTOP},
|
|
|
|
{ _FB_XTEXT(Align, RightCenter, "Right Center", "Right Center"), FbWinFrame::RIGHT},
|
|
|
|
{ _FB_XTEXT(Align, RightBottom, "Right Bottom", "Right Bottom"), FbWinFrame::RIGHTBOTTOM},
|
|
|
|
{ _FB_XTEXT(Align, BottomRight, "Bottom Right", "Bottom Right"), FbWinFrame::BOTTOMRIGHT}
|
|
|
|
};
|
2006-03-22 12:23:17 +00:00
|
|
|
|
2011-01-15 20:31:37 +00:00
|
|
|
tabplacement_menu->setMinimumColumns(3);
|
2006-03-22 12:23:17 +00:00
|
|
|
// create items in sub menu
|
2010-09-18 07:26:05 +00:00
|
|
|
for (size_t i=0; i< sizeof(place_menu)/sizeof(PlacementP); ++i) {
|
|
|
|
const PlacementP& p = place_menu[i];
|
|
|
|
if (p.label == "") {
|
|
|
|
tabplacement_menu->insert(p.label);
|
2008-08-18 08:45:44 +00:00
|
|
|
tabplacement_menu->setItemEnabled(i, false);
|
2010-09-18 07:26:05 +00:00
|
|
|
} else
|
|
|
|
tabplacement_menu->insert(new TabPlacementMenuItem(p.label, *this, p.placement, save_and_reconftabs));
|
2006-03-22 12:23:17 +00:00
|
|
|
}
|
|
|
|
tabplacement_menu->updateMenu();
|
|
|
|
|
|
|
|
menu.insert(tabmenu_label, tab_menu);
|
|
|
|
|
2004-08-30 11:33:23 +00:00
|
|
|
#ifdef HAVE_XRENDER
|
2004-09-12 14:56:20 +00:00
|
|
|
if (FbTk::Transparent::haveRender() ||
|
|
|
|
FbTk::Transparent::haveComposite()) {
|
|
|
|
|
2006-06-21 14:41:16 +00:00
|
|
|
FbTk::FbString alphamenu_label = _FB_XTEXT(Configmenu, Transparency,
|
2006-10-27 06:57:43 +00:00
|
|
|
"Transparency",
|
2006-02-18 11:39:38 +00:00
|
|
|
"Menu containing various transparency options");
|
2006-05-20 15:08:14 +00:00
|
|
|
FbTk::Menu *alpha_menu = createMenu(alphamenu_label);
|
2004-09-12 14:56:20 +00:00
|
|
|
|
|
|
|
if (FbTk::Transparent::haveComposite(true)) {
|
2007-12-27 21:55:24 +00:00
|
|
|
static FbTk::SimpleAccessor<bool> s_pseudo(Fluxbox::instance()->getPseudoTrans());
|
|
|
|
alpha_menu->insert(new FbTk::BoolMenuItem(_FB_XTEXT(Configmenu, ForcePseudoTrans,
|
2006-10-27 06:57:43 +00:00
|
|
|
"Force Pseudo-Transparency",
|
2006-02-18 11:39:38 +00:00
|
|
|
"When composite is available, still use old pseudo-transparency"),
|
2007-12-27 21:55:24 +00:00
|
|
|
s_pseudo, save_and_reconfigure));
|
2004-09-12 14:56:20 +00:00
|
|
|
}
|
|
|
|
|
2007-01-16 16:19:48 +00:00
|
|
|
// in order to save system resources, don't save or reconfigure alpha
|
|
|
|
// settings until after the user is done changing them
|
2008-01-11 07:41:22 +00:00
|
|
|
FbTk::RefCount<FbTk::Command<void> > delayed_save_and_reconf(
|
2007-12-28 09:19:33 +00:00
|
|
|
new FbTk::DelayedCmd(save_and_reconfigure));
|
2007-01-16 16:19:48 +00:00
|
|
|
|
2006-02-18 11:39:38 +00:00
|
|
|
FbTk::MenuItem *focused_alpha_item =
|
2007-12-27 21:55:24 +00:00
|
|
|
new FbTk::IntMenuItem(_FB_XTEXT(Configmenu, FocusedAlpha,
|
2006-02-18 11:39:38 +00:00
|
|
|
"Focused Window Alpha",
|
|
|
|
"Transparency level of the focused window"),
|
2005-05-03 13:53:25 +00:00
|
|
|
resource.focused_alpha, 0, 255, *alpha_menu);
|
2007-01-16 16:19:48 +00:00
|
|
|
focused_alpha_item->setCommand(delayed_save_and_reconf);
|
2004-09-12 14:56:20 +00:00
|
|
|
alpha_menu->insert(focused_alpha_item);
|
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
FbTk::MenuItem *unfocused_alpha_item =
|
2007-12-27 21:55:24 +00:00
|
|
|
new FbTk::IntMenuItem(_FB_XTEXT(Configmenu,
|
2006-10-27 06:57:43 +00:00
|
|
|
UnfocusedAlpha,
|
|
|
|
"Unfocused Window Alpha",
|
2006-02-18 11:39:38 +00:00
|
|
|
"Transparency level of unfocused windows"),
|
|
|
|
|
2005-05-03 13:53:25 +00:00
|
|
|
resource.unfocused_alpha, 0, 255, *alpha_menu);
|
2007-01-16 16:19:48 +00:00
|
|
|
unfocused_alpha_item->setCommand(delayed_save_and_reconf);
|
2004-09-12 14:56:20 +00:00
|
|
|
alpha_menu->insert(unfocused_alpha_item);
|
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
FbTk::MenuItem *menu_alpha_item =
|
2007-12-27 21:55:24 +00:00
|
|
|
new FbTk::IntMenuItem(_FB_XTEXT(Configmenu, MenuAlpha,
|
2006-02-18 11:39:38 +00:00
|
|
|
"Menu Alpha", "Transparency level of menu"),
|
2005-05-03 13:53:25 +00:00
|
|
|
resource.menu_alpha, 0, 255, *alpha_menu);
|
2007-01-16 16:19:48 +00:00
|
|
|
menu_alpha_item->setCommand(delayed_save_and_reconf);
|
2004-09-12 14:56:20 +00:00
|
|
|
alpha_menu->insert(menu_alpha_item);
|
|
|
|
|
2004-12-13 14:03:17 +00:00
|
|
|
alpha_menu->updateMenu();
|
2004-09-12 14:56:20 +00:00
|
|
|
menu.insert(alphamenu_label, alpha_menu);
|
|
|
|
}
|
2004-08-30 11:33:23 +00:00
|
|
|
#endif // HAVE_XRENDER
|
2007-07-02 02:50:09 +00:00
|
|
|
|
|
|
|
Configmenus::iterator it = m_configmenu_list.begin();
|
|
|
|
Configmenus::iterator it_end = m_configmenu_list.end();
|
|
|
|
for (; it != it_end; ++it)
|
|
|
|
menu.insert(it->first, it->second);
|
|
|
|
|
|
|
|
_BOOLITEM(menu, Configmenu, OpaqueMove,
|
|
|
|
"Opaque Window Moving",
|
|
|
|
"Window Moving with whole window visible (as opposed to outline moving)",
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.opaque_move, saverc_cmd);
|
2007-07-02 02:50:09 +00:00
|
|
|
_BOOLITEM(menu, Configmenu, WorkspaceWarping,
|
|
|
|
"Workspace Warping",
|
|
|
|
"Workspace Warping - dragging windows to the edge and onto the next workspace",
|
2007-12-27 21:55:24 +00:00
|
|
|
resource.workspace_warping, saverc_cmd);
|
2007-07-02 02:50:09 +00:00
|
|
|
|
2004-09-12 14:56:20 +00:00
|
|
|
#undef _BOOLITEM
|
2003-04-20 13:46:18 +00:00
|
|
|
|
2006-10-27 06:57:43 +00:00
|
|
|
// finaly update menu
|
2004-12-13 14:03:17 +00:00
|
|
|
menu.updateMenu();
|
2003-01-12 17:59:20 +00:00
|
|
|
}
|
|
|
|
|
2001-12-11 20:47:02 +00:00
|
|
|
|
2002-08-02 12:58:37 +00:00
|
|
|
void BScreen::shutdown() {
|
2003-05-10 22:59:32 +00:00
|
|
|
rootWindow().setEventMask(NoEventMask);
|
2003-12-04 21:31:02 +00:00
|
|
|
FbTk::App::instance()->sync(false);
|
2003-08-12 12:21:42 +00:00
|
|
|
m_shutdown = true;
|
2006-07-19 07:31:39 +00:00
|
|
|
m_focus_control->shutdown();
|
2003-05-19 22:45:51 +00:00
|
|
|
for_each(m_workspaces_list.begin(),
|
|
|
|
m_workspaces_list.end(),
|
2003-04-14 15:01:55 +00:00
|
|
|
mem_fun(&Workspace::shutdown));
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BScreen::showPosition(int x, int y) {
|
2008-01-19 12:00:46 +00:00
|
|
|
if (!doShowWindowPos())
|
2003-12-10 22:28:07 +00:00
|
|
|
return;
|
|
|
|
|
2010-09-08 18:17:21 +00:00
|
|
|
char buf[256];
|
|
|
|
sprintf(buf, "X:%5d x Y:%5d", x, y);
|
|
|
|
|
|
|
|
FbTk::BiDiString label(buf);
|
2008-05-09 17:39:02 +00:00
|
|
|
m_pos_window->showText(label);
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-01-16 11:47:07 +00:00
|
|
|
void BScreen::hidePosition() {
|
2008-05-09 17:39:02 +00:00
|
|
|
m_pos_window->hide();
|
2004-01-16 11:47:07 +00:00
|
|
|
}
|
|
|
|
|
2008-08-15 11:24:03 +00:00
|
|
|
void BScreen::showGeometry(unsigned int gx, unsigned int gy) {
|
2003-12-10 22:28:07 +00:00
|
|
|
if (!doShowWindowPos())
|
|
|
|
return;
|
|
|
|
|
2010-09-08 18:17:21 +00:00
|
|
|
char buf[256];
|
2004-06-07 11:46:05 +00:00
|
|
|
_FB_USES_NLS;
|
2002-12-01 13:42:15 +00:00
|
|
|
|
2010-09-08 18:17:21 +00:00
|
|
|
sprintf(buf,
|
2006-06-21 14:41:16 +00:00
|
|
|
_FB_XTEXT(Screen, GeometryFormat,
|
2004-06-07 11:46:05 +00:00
|
|
|
"W: %4d x H: %4d",
|
2006-05-20 15:08:14 +00:00
|
|
|
"Format for width and height window, %4d for width, and %4d for height").c_str(),
|
2004-06-07 11:46:05 +00:00
|
|
|
gx, gy);
|
2010-09-08 18:17:21 +00:00
|
|
|
|
|
|
|
FbTk::BiDiString label(buf);
|
2008-05-09 17:39:02 +00:00
|
|
|
m_geom_window->showText(label);
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-08 18:17:21 +00:00
|
|
|
void BScreen::showTooltip(const FbTk::BiDiString &text) {
|
2008-05-05 12:05:52 +00:00
|
|
|
if (*resource.tooltip_delay >= 0)
|
2008-05-09 17:39:02 +00:00
|
|
|
m_tooltip_window->showText(text);
|
2008-05-05 12:05:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void BScreen::hideTooltip() {
|
|
|
|
if (*resource.tooltip_delay >= 0)
|
2008-05-09 17:39:02 +00:00
|
|
|
m_tooltip_window->hide();
|
2008-05-05 12:05:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-02 12:58:37 +00:00
|
|
|
void BScreen::hideGeometry() {
|
2008-05-09 17:39:02 +00:00
|
|
|
m_geom_window->hide();
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2011-02-23 21:49:27 +00:00
|
|
|
void BScreen::setLayer(FbTk::LayerItem &item, int layernum) {
|
2003-02-03 13:56:12 +00:00
|
|
|
m_layermanager.moveToLayer(item, layernum);
|
2003-02-02 16:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-27 21:55:36 +00:00
|
|
|
/**
|
|
|
|
Goes to the workspace "right" of the current
|
|
|
|
*/
|
2011-03-23 17:45:34 +00:00
|
|
|
void BScreen::nextWorkspace(int delta) {
|
2005-07-04 18:18:32 +00:00
|
|
|
changeWorkspaceID( (currentWorkspaceID() + delta) % numberOfWorkspaces());
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
|
|
|
|
2002-11-27 21:55:36 +00:00
|
|
|
/**
|
|
|
|
Goes to the workspace "left" of the current
|
|
|
|
*/
|
2011-03-23 17:45:34 +00:00
|
|
|
void BScreen::prevWorkspace(int delta) {
|
2006-04-11 18:26:00 +00:00
|
|
|
changeWorkspaceID( (static_cast<signed>(numberOfWorkspaces()) + currentWorkspaceID() - (delta % numberOfWorkspaces())) % numberOfWorkspaces());
|
2001-12-11 20:47:02 +00:00
|
|
|
}
|
2002-02-02 19:51:15 +00:00
|
|
|
|
2002-11-27 21:55:36 +00:00
|
|
|
/**
|
|
|
|
Goes to the workspace "right" of the current
|
|
|
|
*/
|
2011-03-23 17:45:34 +00:00
|
|
|
void BScreen::rightWorkspace(int delta) {
|
2005-07-04 18:18:32 +00:00
|
|
|
if (currentWorkspaceID()+delta < numberOfWorkspaces())
|
2003-05-15 12:00:46 +00:00
|
|
|
changeWorkspaceID(currentWorkspaceID()+delta);
|
2002-02-02 19:51:15 +00:00
|
|
|
}
|
|
|
|
|
2002-11-27 21:55:36 +00:00
|
|
|
/**
|
|
|
|
Goes to the workspace "left" of the current
|
|
|
|
*/
|
2011-03-23 17:45:34 +00:00
|
|
|
void BScreen::leftWorkspace(int delta) {
|
2003-05-15 12:00:46 +00:00
|
|
|
if (currentWorkspaceID() >= static_cast<unsigned int>(delta))
|
|
|
|
changeWorkspaceID(currentWorkspaceID()-delta);
|
2002-02-02 19:51:15 +00:00
|
|
|
}
|
2002-02-07 14:46:23 +00:00
|
|
|
|
2002-04-02 23:14:54 +00:00
|
|
|
|
2003-06-12 15:24:37 +00:00
|
|
|
void BScreen::renderGeomWindow() {
|
2006-03-18 22:03:23 +00:00
|
|
|
|
2010-09-08 18:17:21 +00:00
|
|
|
char buf[256];
|
2004-06-07 11:46:05 +00:00
|
|
|
_FB_USES_NLS;
|
2003-08-25 13:15:53 +00:00
|
|
|
|
2010-09-08 18:17:21 +00:00
|
|
|
sprintf(buf,
|
2007-01-05 15:20:30 +00:00
|
|
|
_FB_XTEXT(Screen, GeometrySpacing,
|
2006-06-10 17:24:48 +00:00
|
|
|
"W: %04d x H: %04d", "Representative maximum sized text for width and height dialog").c_str(),
|
2006-03-18 22:03:23 +00:00
|
|
|
0, 0);
|
2010-09-08 18:17:21 +00:00
|
|
|
|
|
|
|
FbTk::BiDiString label(buf);
|
2008-05-09 17:39:02 +00:00
|
|
|
m_geom_window->resize(label);
|
|
|
|
m_geom_window->reconfigTheme();
|
2003-06-12 15:24:37 +00:00
|
|
|
}
|
|
|
|
|
2004-01-16 11:47:07 +00:00
|
|
|
|
|
|
|
void BScreen::renderPosWindow() {
|
2010-09-08 18:17:21 +00:00
|
|
|
m_pos_window->resize(FbTk::BiDiString("0:00000 x 0:00000"));
|
2008-05-09 17:39:02 +00:00
|
|
|
m_pos_window->reconfigTheme();
|
2004-01-16 11:47:07 +00:00
|
|
|
}
|
|
|
|
|
2003-05-12 04:28:46 +00:00
|
|
|
void BScreen::updateSize() {
|
2007-07-11 11:54:53 +00:00
|
|
|
// update xinerama layout
|
|
|
|
initXinerama();
|
|
|
|
|
2008-10-15 02:40:33 +00:00
|
|
|
// check if window geometry has changed
|
|
|
|
if (rootWindow().updateGeometry()) {
|
|
|
|
// reset background
|
|
|
|
m_root_theme->reset();
|
2003-05-12 04:28:46 +00:00
|
|
|
|
2008-10-15 02:40:33 +00:00
|
|
|
// send resize notify
|
|
|
|
m_resize_sig.emit(*this);
|
|
|
|
m_workspace_area_sig.emit(*this);
|
2007-03-01 22:18:18 +00:00
|
|
|
|
2008-10-15 02:40:33 +00:00
|
|
|
// move windows out of inactive heads
|
|
|
|
clearHeads();
|
|
|
|
}
|
2003-05-12 04:28:46 +00:00
|
|
|
}
|
2003-05-19 14:26:30 +00:00
|
|
|
|
2003-05-19 15:32:47 +00:00
|
|
|
|
2003-06-23 14:16:05 +00:00
|
|
|
/**
|
2006-07-20 03:25:28 +00:00
|
|
|
* Find the winclient to this window's left
|
2003-06-23 14:16:05 +00:00
|
|
|
* So, we check the leftgroup hint, and see if we know any windows
|
|
|
|
*/
|
2006-07-20 03:25:28 +00:00
|
|
|
WinClient *BScreen::findGroupLeft(WinClient &winclient) {
|
2003-06-23 14:16:05 +00:00
|
|
|
Window w = winclient.getGroupLeftWindow();
|
|
|
|
if (w == None)
|
|
|
|
return 0;
|
|
|
|
|
2003-07-28 15:06:36 +00:00
|
|
|
WinClient *have_client = Fluxbox::instance()->searchWindow(w);
|
2003-06-23 14:16:05 +00:00
|
|
|
|
2003-07-28 15:06:36 +00:00
|
|
|
if (!have_client) {
|
2003-06-23 14:16:05 +00:00
|
|
|
// not found, add it to expecting
|
|
|
|
m_expecting_groups[w] = &winclient;
|
2003-07-28 15:06:36 +00:00
|
|
|
} else if (&have_client->screen() != &winclient.screen())
|
2003-06-23 14:16:05 +00:00
|
|
|
// something is not consistent
|
|
|
|
return 0;
|
|
|
|
|
2006-07-20 03:25:28 +00:00
|
|
|
return have_client;
|
2003-06-23 14:16:05 +00:00
|
|
|
}
|
|
|
|
|
2006-07-20 03:25:28 +00:00
|
|
|
WinClient *BScreen::findGroupRight(WinClient &winclient) {
|
2003-06-23 14:16:05 +00:00
|
|
|
Groupables::iterator it = m_expecting_groups.find(winclient.window());
|
|
|
|
if (it == m_expecting_groups.end())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// yay, this'll do.
|
|
|
|
WinClient *other = it->second;
|
|
|
|
m_expecting_groups.erase(it); // don't expect it anymore
|
|
|
|
|
2006-08-05 05:21:15 +00:00
|
|
|
// forget about it if it isn't the left-most client in the group
|
|
|
|
Window leftwin = other->getGroupLeftWindow();
|
|
|
|
if (leftwin != None && leftwin != winclient.window())
|
2003-06-23 14:16:05 +00:00
|
|
|
return 0;
|
|
|
|
|
2006-07-20 03:25:28 +00:00
|
|
|
return other;
|
2003-06-23 14:16:05 +00:00
|
|
|
}
|
2008-02-10 17:16:50 +00:00
|
|
|
void BScreen::clearXinerama() {
|
2010-03-17 15:35:07 +00:00
|
|
|
fbdbg<<"BScreen::initXinerama(): dont have Xinerama"<<endl;
|
|
|
|
|
2008-02-10 17:16:50 +00:00
|
|
|
m_xinerama_avail = false;
|
|
|
|
if (m_xinerama_headinfo)
|
|
|
|
delete [] m_xinerama_headinfo;
|
|
|
|
m_xinerama_headinfo = 0;
|
|
|
|
m_xinerama_num_heads = 0;
|
|
|
|
}
|
2006-07-20 03:25:28 +00:00
|
|
|
|
2003-05-19 15:32:47 +00:00
|
|
|
void BScreen::initXinerama() {
|
2003-05-19 14:26:30 +00:00
|
|
|
#ifdef XINERAMA
|
2003-05-19 15:32:47 +00:00
|
|
|
Display *display = FbTk::App::instance()->display();
|
2003-05-19 14:26:30 +00:00
|
|
|
|
|
|
|
if (!XineramaIsActive(display)) {
|
2008-02-10 17:16:50 +00:00
|
|
|
clearXinerama();
|
2003-05-19 14:26:30 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-03-17 15:35:07 +00:00
|
|
|
|
|
|
|
fbdbg<<"BScreen::initXinerama(): have Xinerama"<<endl;
|
|
|
|
|
2003-05-19 14:26:30 +00:00
|
|
|
m_xinerama_avail = true;
|
|
|
|
|
|
|
|
XineramaScreenInfo *screen_info;
|
|
|
|
int number;
|
|
|
|
screen_info = XineramaQueryScreens(display, &number);
|
2007-07-09 14:45:47 +00:00
|
|
|
|
|
|
|
/* The call may have actually failed. If this is the first time we init
|
|
|
|
* Xinerama, fall back to turning it off. If not, pretend nothing
|
|
|
|
* happened -- another event will tell us and it will work then. */
|
|
|
|
if (!screen_info) {
|
2008-02-10 17:16:50 +00:00
|
|
|
if (!m_xinerama_headinfo)
|
|
|
|
clearXinerama();
|
|
|
|
return;
|
2007-07-09 14:45:47 +00:00
|
|
|
}
|
|
|
|
|
2007-07-11 11:54:53 +00:00
|
|
|
if (m_xinerama_headinfo)
|
|
|
|
delete [] m_xinerama_headinfo;
|
2010-05-01 12:29:41 +00:00
|
|
|
|
2003-05-19 14:26:30 +00:00
|
|
|
m_xinerama_headinfo = new XineramaHeadInfo[number];
|
|
|
|
m_xinerama_num_heads = number;
|
|
|
|
for (int i=0; i < number; i++) {
|
2011-03-19 14:00:34 +00:00
|
|
|
m_xinerama_headinfo[i]._x = screen_info[i].x_org;
|
|
|
|
m_xinerama_headinfo[i]._y = screen_info[i].y_org;
|
|
|
|
m_xinerama_headinfo[i]._width = screen_info[i].width;
|
|
|
|
m_xinerama_headinfo[i]._height = screen_info[i].height;
|
2003-05-19 14:26:30 +00:00
|
|
|
}
|
2004-11-22 19:40:34 +00:00
|
|
|
XFree(screen_info);
|
2010-03-17 15:35:07 +00:00
|
|
|
|
|
|
|
fbdbg<<"BScreen::initXinerama(): number of heads ="<<number<<endl;
|
2004-09-11 13:33:07 +00:00
|
|
|
|
2007-07-11 11:54:53 +00:00
|
|
|
/* Reallocate to the new number of heads. */
|
2010-05-01 12:29:41 +00:00
|
|
|
int ha_num = numHeads() ? numHeads() : 1;
|
|
|
|
int ha_oldnum = m_head_areas.size();
|
2007-07-11 11:54:53 +00:00
|
|
|
if (ha_num > ha_oldnum) {
|
|
|
|
m_head_areas.resize(ha_num);
|
|
|
|
for (int i = ha_oldnum; i < ha_num; i++)
|
|
|
|
m_head_areas[i] = new HeadArea();
|
|
|
|
} else if (ha_num < ha_oldnum) {
|
|
|
|
for (int i = ha_num; i < ha_oldnum; i++)
|
|
|
|
delete m_head_areas[i];
|
|
|
|
m_head_areas.resize(ha_num);
|
|
|
|
}
|
|
|
|
|
2003-05-19 15:32:47 +00:00
|
|
|
#else // XINERAMA
|
2003-05-19 22:45:51 +00:00
|
|
|
// no xinerama
|
2003-05-19 15:32:47 +00:00
|
|
|
m_xinerama_avail = false;
|
|
|
|
m_xinerama_num_heads = 0;
|
|
|
|
#endif // XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-03-01 22:18:18 +00:00
|
|
|
/* Move windows out of inactive heads */
|
|
|
|
void BScreen::clearHeads() {
|
|
|
|
if (!hasXinerama()) return;
|
|
|
|
|
|
|
|
for (Workspaces::iterator i = m_workspaces_list.begin();
|
2010-05-01 12:29:31 +00:00
|
|
|
i != m_workspaces_list.end(); i++) {
|
|
|
|
for (Workspace::Windows::iterator win = (*i)->windowList().begin();
|
|
|
|
win != (*i)->windowList().end(); win++) {
|
|
|
|
|
2011-03-19 14:05:39 +00:00
|
|
|
FluxboxWindow& w = *(*win);
|
|
|
|
|
|
|
|
// check if the window is invisible
|
|
|
|
bool invisible = true;
|
|
|
|
int j;
|
|
|
|
for (j = 0; j < m_xinerama_num_heads; ++j) {
|
|
|
|
XineramaHeadInfo& hi = m_xinerama_headinfo[j];
|
|
|
|
if (RectangleUtil::overlapRectangles(hi, w)) {
|
|
|
|
invisible = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (invisible) { // get closest head and replace the (now invisible) cwindow
|
|
|
|
int closest_head = getHead(w.fbWindow());
|
|
|
|
if (closest_head == 0) {
|
|
|
|
closest_head = 1; // first head is a safe bet here
|
|
|
|
}
|
|
|
|
w.placeWindow(closest_head);
|
2007-03-01 22:18:18 +00:00
|
|
|
}
|
2010-05-01 12:29:31 +00:00
|
|
|
}
|
2007-03-01 22:18:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-19 14:26:30 +00:00
|
|
|
int BScreen::getHead(int x, int y) const {
|
|
|
|
|
2010-05-01 12:29:41 +00:00
|
|
|
#ifdef XINERAMA
|
|
|
|
if (hasXinerama()) {
|
|
|
|
for (int i=0; i < m_xinerama_num_heads; i++) {
|
2011-03-19 14:01:16 +00:00
|
|
|
if (RectangleUtil::insideBorder(m_xinerama_headinfo[i], x, y, 0)) {
|
2010-05-01 12:29:41 +00:00
|
|
|
return i+1;
|
|
|
|
}
|
2003-05-19 14:26:30 +00:00
|
|
|
}
|
|
|
|
}
|
2003-05-19 15:32:47 +00:00
|
|
|
#endif // XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-01 12:27:45 +00:00
|
|
|
|
2007-03-31 22:00:39 +00:00
|
|
|
int BScreen::getHead(const FbTk::FbWindow &win) const {
|
2010-05-01 12:27:45 +00:00
|
|
|
|
|
|
|
int head = 0; // whole screen
|
|
|
|
|
2010-08-22 18:11:59 +00:00
|
|
|
#ifdef XINERAMA
|
2010-05-01 12:27:45 +00:00
|
|
|
if (hasXinerama()) {
|
|
|
|
|
|
|
|
// cast needed to prevent win.x() become "unsigned int" which is bad
|
|
|
|
// since it might become negative
|
|
|
|
int cx = win.x() + static_cast<int>(win.width() / 2);
|
|
|
|
int cy = win.y() + static_cast<int>(win.height() / 2);
|
|
|
|
|
|
|
|
long dist = -1;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < m_xinerama_num_heads; ++i) {
|
|
|
|
|
|
|
|
XineramaHeadInfo& hi = m_xinerama_headinfo[i];
|
2011-03-19 14:00:34 +00:00
|
|
|
int d = calcSquareDistance(cx, cy, hi.x() + (hi.width() / 2), hi.y() + (hi.height() / 2));
|
2010-05-01 12:27:45 +00:00
|
|
|
|
|
|
|
if (dist == -1 || d < dist) { // found a closer head
|
|
|
|
head = i + 1;
|
|
|
|
dist = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return head;
|
2003-05-20 11:03:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-05-19 14:26:30 +00:00
|
|
|
int BScreen::getCurrHead() const {
|
|
|
|
if (!hasXinerama()) return 0;
|
2003-05-19 15:32:47 +00:00
|
|
|
int root_x = 0, root_y = 0;
|
|
|
|
#ifdef XINERAMA
|
|
|
|
int ignore_i;
|
2003-05-19 14:26:30 +00:00
|
|
|
unsigned int ignore_ui;
|
|
|
|
|
|
|
|
Window ignore_w;
|
|
|
|
|
|
|
|
XQueryPointer(FbTk::App::instance()->display(),
|
2006-10-27 06:57:43 +00:00
|
|
|
rootWindow().window(), &ignore_w,
|
2003-05-19 14:26:30 +00:00
|
|
|
&ignore_w, &root_x, &root_y,
|
|
|
|
&ignore_i, &ignore_i, &ignore_ui);
|
2003-05-19 15:32:47 +00:00
|
|
|
#endif // XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
return getHead(root_x, root_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
int BScreen::getHeadX(int head) const {
|
2003-05-19 15:32:47 +00:00
|
|
|
#ifdef XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
if (head == 0 || head > m_xinerama_num_heads) return 0;
|
2011-03-19 14:00:34 +00:00
|
|
|
return m_xinerama_headinfo[head-1].x();
|
2003-05-19 15:32:47 +00:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif // XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int BScreen::getHeadY(int head) const {
|
2003-05-19 15:32:47 +00:00
|
|
|
#ifdef XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
if (head == 0 || head > m_xinerama_num_heads) return 0;
|
2011-03-19 14:00:34 +00:00
|
|
|
return m_xinerama_headinfo[head-1].y();
|
2003-05-19 15:32:47 +00:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif // XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int BScreen::getHeadWidth(int head) const {
|
2003-05-19 15:32:47 +00:00
|
|
|
#ifdef XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
if (head == 0 || head > m_xinerama_num_heads) return width();
|
2011-03-19 14:00:34 +00:00
|
|
|
return m_xinerama_headinfo[head-1].width();
|
2003-05-19 15:32:47 +00:00
|
|
|
#else
|
|
|
|
return width();
|
|
|
|
#endif // XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int BScreen::getHeadHeight(int head) const {
|
2003-05-19 15:32:47 +00:00
|
|
|
#ifdef XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
if (head == 0 || head > m_xinerama_num_heads) return height();
|
2011-03-19 14:00:34 +00:00
|
|
|
return m_xinerama_headinfo[head-1].height();
|
2003-05-19 15:32:47 +00:00
|
|
|
#else
|
|
|
|
return height();
|
|
|
|
#endif // XINERAMA
|
2003-05-19 14:26:30 +00:00
|
|
|
}
|
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
pair<int,int> BScreen::clampToHead(int head, int x, int y, int w, int h) const {
|
|
|
|
|
|
|
|
// if there are multiple heads, head=0 is not valid
|
|
|
|
// a better way would be to search the closest head
|
|
|
|
if (head == 0 && numHeads() != 0)
|
2010-05-01 12:29:41 +00:00
|
|
|
head = 1;
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2004-09-11 13:33:07 +00:00
|
|
|
int hx = getHeadX(head);
|
|
|
|
int hy = getHeadY(head);
|
|
|
|
int hw = getHeadWidth(head);
|
|
|
|
int hh = getHeadHeight(head);
|
2006-10-27 06:57:43 +00:00
|
|
|
|
2010-09-09 13:31:54 +00:00
|
|
|
x = FbTk::Util::clamp(x, hx, hx + hw - w);
|
|
|
|
y = FbTk::Util::clamp(y, hy, hy + hh - h);
|
2004-09-11 13:33:07 +00:00
|
|
|
|
|
|
|
return make_pair(x,y);
|
|
|
|
}
|