aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-07-19 13:51:24 (GMT)
committerrathnor <rathnor>2003-07-19 13:51:24 (GMT)
commit9c3b06945a4079f1cbd83441a0a68fc6694b6be5 (patch)
treef569aecc7f6dec622a62cb8dcbc3ebb4f0b984d0 /src/fluxbox.hh
parent2f1f364fa2d7c72b93d4dbcde321abace5e2109d (diff)
downloadfluxbox-9c3b06945a4079f1cbd83441a0a68fc6694b6be5.zip
fluxbox-9c3b06945a4079f1cbd83441a0a68fc6694b6be5.tar.bz2
fix most commands to run on screen mouse is in, rather than focused window
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index d4c109c..1975929 100644
--- a/src/fluxbox.hh
+++ b/src/fluxbox.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: fluxbox.hh,v 1.66 2003/07/19 11:55:49 rathnor Exp $ 25// $Id: fluxbox.hh,v 1.67 2003/07/19 13:51:24 rathnor Exp $
26 26
27#ifndef FLUXBOX_HH 27#ifndef FLUXBOX_HH
28#define FLUXBOX_HH 28#define FLUXBOX_HH
@@ -191,8 +191,11 @@ public:
191 bool haveShape() const { return m_have_shape; } 191 bool haveShape() const { return m_have_shape; }
192 int shapeEventbase() const { return m_shape_eventbase; } 192 int shapeEventbase() const { return m_shape_eventbase; }
193 void getDefaultDataFilename(char *, std::string &); 193 void getDefaultDataFilename(char *, std::string &);
194 // screen mouse was in at last key event
194 BScreen *mouseScreen() { return m_mousescreen; } 195 BScreen *mouseScreen() { return m_mousescreen; }
196 // screen of window that last key event (i.e. focused window) went to
195 BScreen *keyScreen() { return m_keyscreen; } 197 BScreen *keyScreen() { return m_keyscreen; }
198 // screen we are watching for modifier changes
196 BScreen *watchingScreen() { return m_watching_screen; } 199 BScreen *watchingScreen() { return m_watching_screen; }
197 const XEvent &lastEvent() const { return m_last_event; } 200 const XEvent &lastEvent() const { return m_last_event; }
198private: 201private: