void XAtom::sendClientMessage(Window target, Atoms type, Window about,
long data, long data1, long data2,
- long data3) const {
+ long data3, long data4) const {
assert(atom >= 0 && atom < NUM_ATOMS);
assert(target != None);
e.xclient.data.l[1] = data1;
e.xclient.data.l[2] = data2;
e.xclient.data.l[3] = data3;
+ e.xclient.data.l[4] = data4;
XSendEvent(_display, target, False,
SubstructureRedirectMask | SubstructureNotifyMask,
// sends a client message a window
void sendClientMessage(Window target, Atoms type, Window about,
long data = 0, long data1 = 0, long data2 = 0,
- long data3 = 0) const;
+ long data3 = 0, long data4 = 0) const;
// temporary function!! remove when not used in blackbox.hh anymore!!
inline Atom getAtom(Atoms a)
// these are openbox extensions
showRootMenu,
showWorkspaceMenu,
+ toggleDecorations,
stringChain,
keyChain,
#include "config.hh"
+using std::string;
+
Config::Config() {}
Config::~Config()
class keytree : public TimeoutHandler {
public:
keytree(Display *, epist *);
- ~keytree();
+ virtual ~keytree();
void grabDefaults(screen *);
void ungrabDefaults(screen *);
keynode *_head;
keynode *_current;
Display *_display;
- BTimer *_timer;
screen *_timeout_screen;
+ BTimer *_timer;
epist *_epist;
};
{ "prevscreen", Action::prevScreen },
{ "showrootmenu", Action::showRootMenu },
{ "showworkspacemenu", Action::showWorkspaceMenu },
+ { "toggledecorations", Action::toggleDecorations },
{ "stringchain", Action::stringChain },
{ "keychain", Action::keyChain },
{ "numberchain", Action::numberChain },
case Action::toggleMaximizeFull:
window->toggleMaximize(XWindow::Max_Full);
return;
+
+ case Action::toggleDecorations:
+ window->decorate(! window->decorated());
+ return;
default:
assert(false); // unhandled action type!
XSelectInput(_epist->getXDisplay(), _window,
PropertyChangeMask | StructureNotifyMask);
+ updateBlackboxAttributes();
updateNormalHints();
updateWMHints();
updateDimentions();
}
+void XWindow::updateBlackboxAttributes() {
+ unsigned long *data;
+ unsigned long num = PropBlackboxAttributesElements;
+
+ _decorated = true;
+
+ if (_xatom->getValue(_window,
+ XAtom::blackbox_attributes, XAtom::blackbox_attributes,
+ num, &data)) {
+ if (num == PropBlackboxAttributesElements)
+ if (data[0] & AttribDecoration)
+ _decorated = (data[4] != DecorNone);
+ delete data;
+ }
+}
+
+
void XWindow::updateNormalHints() {
XSizeHints size;
long ret;
break;
}
}
+
+
+void XWindow::decorate(bool d) const {
+ _xatom->sendClientMessage(_screen->rootWindow(),
+ XAtom::blackbox_change_attributes,
+ _window, AttribDecoration,
+ 0, 0, 0, (d ? DecorNormal : DecorNone));
+}
};
private:
+ // defined by black/openbox
+ static const unsigned int PropBlackboxAttributesElements = 9;
+ static const unsigned int AttribDecoration = 1 << 6;
+ static const unsigned int DecorNone = 0;
+ static const unsigned int DecorNormal = 2;
+
epist *_epist;
screen *_screen;
XAtom *_xatom;
bool _iconic;
bool _max_vert;
bool _max_horz;
+ bool _decorated;
bool _unmapped;
void updateDimentions();
+ void updateBlackboxAttributes();
void updateNormalHints();
void updateWMHints();
void updateState();
inline bool iconic() const { return _iconic; }
inline bool maxVert() const { return _max_vert; }
inline bool maxHorz() const { return _max_horz; }
+ inline bool decorated() const { return _decorated; }
inline const Rect &area() const { return _rect; }
inline unsigned int x() const { return _rect.x(); }
inline unsigned int y() const { return _rect.y(); }
void lower() const;
void iconify() const;
void focus() const;
+ void decorate(bool d) const;
void sendTo(unsigned int dest) const;
void move(int x, int y) const;
void resizeRel(int dwidth, int dheight) const;