aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-04-15 00:50:25 (GMT)
committerrathnor <rathnor>2003-04-15 00:50:25 (GMT)
commit58e19dc91eba51739d4b8ed2dfdbb49e28d96379 (patch)
tree1fbb529d593c1b1b1fabb76832a97783649cab23 /src/fluxbox.hh
parent1aa5ede1b70dfba6519eeaa38101948bbdfea8a2 (diff)
downloadfluxbox-58e19dc91eba51739d4b8ed2dfdbb49e28d96379.zip
fluxbox-58e19dc91eba51739d4b8ed2dfdbb49e28d96379.tar.bz2
add most recently used window cycling (Simon)
It is now the default cycling action
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh
index e214979..c5db866 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.47 2003/04/14 15:25:14 fluxgen Exp $ 25// $Id: fluxbox.hh,v 1.48 2003/04/15 00:50:25 rathnor Exp $
26 26
27#ifndef FLUXBOX_HH 27#ifndef FLUXBOX_HH
28#define FLUXBOX_HH 28#define FLUXBOX_HH
@@ -141,6 +141,8 @@ public:
141 { masked = w; masked_window = bw; } 141 { masked = w; masked_window = bw; }
142 inline void setNoFocus(Bool f) { no_focus = f; } 142 inline void setNoFocus(Bool f) { no_focus = f; }
143 143
144 void watchKeyRelease(BScreen *screen, unsigned int mods);
145
144 void setFocusedWindow(FluxboxWindow *w); 146 void setFocusedWindow(FluxboxWindow *w);
145 void shutdown(); 147 void shutdown();
146 void load_rc(BScreen *); 148 void load_rc(BScreen *);
@@ -236,6 +238,8 @@ private:
236 FluxboxWindow *focused_window, *masked_window; 238 FluxboxWindow *focused_window, *masked_window;
237 FbTk::Timer timer; 239 FbTk::Timer timer;
238 240
241 BScreen *watching_screen;
242 unsigned int watch_keyrelease;
239 243
240#ifdef HAVE_GETPID 244#ifdef HAVE_GETPID
241 Atom fluxbox_pid; 245 Atom fluxbox_pid;