}
}
-
void Client::getShaped()
{
_shaped = false;
#endif // SHAPE
}
+Client *Client::searchFocusTree(Client *node, Client *skip)
+{
+ List::const_iterator it, end = node->_transients.end();
+ Client *ret;
+
+ for (it = node->_transients.begin(); it != end; ++it) {
+ if (*it == skip) continue; // circular?
+ if ((ret = searchModalTree(*it, skip))) return ret; // got one
+ if ((*it)->_focused) return *it; // got one
+ }
+ return 0;
+}
void Client::calcLayer() {
StackLayer l;
+ bool fs = false;
+ // are we fullscreen, or do we have a fullscreen transient parent?
+ Client *c = this;
+ while (c) {
+ if (c->_fullscreen) {
+ fs =true;
+ break;
+ }
+ c = c->_transient_for;
+ }
+ if (!fs) {
+ // is one of our transients focused?
+ c = searchFocusTree(this, this);
+ if (c) fs = true;
+ }
+
if (_iconic) l = Layer_Icon;
- else if (_fullscreen) l = Layer_Fullscreen;
+ else if (fs) l = Layer_Fullscreen;
else if (_type == Type_Desktop) l = Layer_Desktop;
else if (_type == Type_Dock) {
if (!_below) l = Layer_Top;
}
}
-
void Client::updateProtocols()
{
Atom *proto;
}
}
-
void Client::updateNormalHints()
{
XSizeHints size;
}
}
-
void Client::updateWMHints(bool initstate)
{
XWMHints *hints;
}
}
-
void Client::updateTitle()
{
_title = "";
frame->adjustTitle();
}
-
void Client::updateIconTitle()
{
_icon_title = "";
_icon_title = _("Unnamed Window");
}
-
void Client::updateClass()
{
// set the defaults
}
}
-
void Client::updateStrut()
{
unsigned long num = 4;
delete [] data;
}
-
void Client::updateTransientFor()
{
Window t = 0;
}
}
-
void Client::updateIcons()
{
unsigned long num = (unsigned) -1;
if (frame) frame->adjustIcon();
}
-
void Client::propertyHandler(const XPropertyEvent &e)
{
otk::EventHandler::propertyHandler(e);
updateIcons();
}
-
void Client::setWMState(long state)
{
if (state == _wmstate) return; // no change
}
}
-
void Client::setDesktop(unsigned int target)
{
if (target == _desktop) return;
openbox->screen(_screen)->updateStruts();
}
-
void Client::showhide()
{
bool show;
else frame->hide();
}
-
void Client::setState(StateAction action, long data1, long data2)
{
bool shadestate = _shaded;
changeState(); // change the hint to relect these changes
}
-
void Client::toggleClientBorder(bool addborder)
{
// adjust our idea of where the client is, based on its border. When the
XSetWindowBorderWidth(**otk::display, _window, 0);
}
-
void Client::clientMessageHandler(const XClientMessageEvent &e)
{
otk::EventHandler::clientMessageHandler(e);
}
}
-
#if defined(SHAPE)
void Client::shapeHandler(const XShapeEvent &e)
{
}
#endif
-
void Client::resize(Corner anchor, int w, int h)
{
if (!(_functions & Func_Resize)) return;
internal_resize(anchor, w, h);
}
-
void Client::internal_resize(Corner anchor, int w, int h,
bool user, int x, int y)
{
internal_move(x, y);
}
-
void Client::internal_move(int x, int y)
{
_area = otk::Rect(otk::Point(x, y), _area.size());
}
}
-
void Client::close()
{
XEvent ce;
XSendEvent(**otk::display, _window, false, NoEventMask, &ce);
}
-
void Client::changeState()
{
unsigned long state[2];
frame->adjustState();
}
-
void Client::changeAllowedActions(void)
{
Atom actions[9];
else _max_vert = _max_horz = false;
}
-
void Client::remaximize()
{
int dir;
maximize(true, dir, false);
}
-
void Client::applyStartupState()
{
// these are in a carefully crafted order..
if (_below); // nothing to do for this
}
-
void Client::fireUrgent()
{
// call the python UrgentWindow callbacks
openbox->bindings()->fireEvent(&data);
}
-
void Client::shade(bool shade)
{
if (!(_functions & Func_Shade) || // can't
frame->adjustSize();
}
-
void Client::maximize(bool max, int dir, bool savearea)
{
assert(dir == 0 || dir == 1 || dir == 2);
internal_resize(TopLeft, w, h, true, x, y);
}
-
void Client::fullscreen(bool fs, bool savearea)
{
static FunctionFlags saved_func;
if (fs) focus();
}
-
void Client::iconify(bool iconic, bool curdesk)
{
if (_iconic == iconic) return; // nothing to do
openbox->screen(_screen)->updateStruts();
}
-
void Client::disableDecorations(DecorationFlags flags)
{
_disabled_decorations = flags;
setupDecorAndFunctions();
}
-
void Client::installColormap(bool install) const
{
XWindowAttributes wa;
}
}
-
-// recursively searches the client 'tree' for a modal client, always skips the
-// topmost node (the window you're starting with)
Client *Client::searchModalTree(Client *node, Client *skip)
{
List::const_iterator it, end = node->_transients.end();
_focused = true;
frame->adjustFocus();
+ calcLayer(); // focus state can affect the stacking layer
+
openbox->setFocusedClient(this);
}
_focused = false;
frame->adjustFocus();
+ calcLayer(); // focus state can affect the stacking layer
+
if (openbox->focusedClient() == this)
openbox->setFocusedClient(0);
}