From c93fa789daed6f72682ed92ccd39b5e6e3d0c089 Mon Sep 17 00:00:00 2001 From: fluxgen Date: Mon, 17 Dec 2001 00:37:07 +0000 Subject: Added getLast, last and first functions --- src/Tab.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Tab.hh b/src/Tab.hh index c20b6ba..41a6d90 100644 --- a/src/Tab.hh +++ b/src/Tab.hh @@ -42,6 +42,9 @@ public: void draw(bool pressed); inline Tab *next() const { return m_next; } inline Tab *prev() const { return m_prev; } + inline Tab *last() { return getLast(this); } + inline Tab *first() { return getFirst(this); } + inline FluxboxWindow *getWindow() const { return m_win; } inline unsigned int getTabWidth() const { return m_size_w; } inline unsigned int getTabHeight() const { return m_size_h; } @@ -62,6 +65,7 @@ public: void exposeEvent(XExposeEvent *ee); void motionNotifyEvent(XMotionEvent *me); static Tab *getFirst(Tab *current); + static Tab *getLast(Tab *current); void disconnect(); enum { PTop = 0, PBottom = 5, PLeft = 10, PRight = 15, pnone = 20}; -- cgit v0.11.2