Added getLast, last and first functions
This commit is contained in:
parent
05cec54a39
commit
c93fa789da
1 changed files with 4 additions and 0 deletions
|
@ -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};
|
||||
|
|
Loading…
Reference in a new issue