diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Tab.cc | 17 | ||||
-rw-r--r-- | src/Tab.hh | 6 |
2 files changed, 20 insertions, 3 deletions
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: Tab.cc,v 1.25 2002/04/28 08:49:31 fluxgen Exp $ | 22 | // $Id: Tab.cc,v 1.26 2002/05/02 07:09:22 fluxgen Exp $ |
23 | 23 | ||
24 | #include "Tab.hh" | 24 | #include "Tab.hh" |
25 | 25 | ||
@@ -537,6 +537,21 @@ void Tab::setPosition() { | |||
537 | m_stoptabs = false;//thaw tablist | 537 | m_stoptabs = false;//thaw tablist |
538 | } | 538 | } |
539 | 539 | ||
540 | //Moves the tab to the left | ||
541 | void Tab::movePrev() { | ||
542 | insert(m_prev); | ||
543 | } | ||
544 | |||
545 | //Moves the tab to the next tab if m_next != 0 | ||
546 | void Tab::moveNext() { | ||
547 | if(m_next == 0) | ||
548 | return; | ||
549 | Tab *tmp = m_next; | ||
550 | disconnect(); | ||
551 | tmp->insert(this); | ||
552 | } | ||
553 | |||
554 | |||
540 | //------------- calcIncrease ---------------- | 555 | //------------- calcIncrease ---------------- |
541 | // calculates m_inc_x and m_inc_y for tabs | 556 | // calculates m_inc_x and m_inc_y for tabs |
542 | // used for positioning the tabs. | 557 | // used for positioning the tabs. |
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: Tab.hh,v 1.11 2002/02/17 18:52:02 fluxgen Exp $ | 22 | // $Id: Tab.hh,v 1.12 2002/05/02 07:08:24 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef TAB_HH | 24 | #ifndef TAB_HH |
25 | #define TAB_HH | 25 | #define TAB_HH |
@@ -63,6 +63,8 @@ public: | |||
63 | void shade(); | 63 | void shade(); |
64 | //position tab to follow (FluxboxWindow *) m_win | 64 | //position tab to follow (FluxboxWindow *) m_win |
65 | void setPosition(); | 65 | void setPosition(); |
66 | void moveNext(); | ||
67 | void movePrev(); | ||
66 | //event handlers | 68 | //event handlers |
67 | void buttonReleaseEvent(XButtonEvent *be); | 69 | void buttonReleaseEvent(XButtonEvent *be); |
68 | void buttonPressEvent(XButtonEvent *be); | 70 | void buttonPressEvent(XButtonEvent *be); |
@@ -76,7 +78,7 @@ public: | |||
76 | static Tab::Placement getTabPlacementNum(const char *string); | 78 | static Tab::Placement getTabPlacementNum(const char *string); |
77 | static const char *getTabAlignmentString(Tab::Alignment alignment); | 79 | static const char *getTabAlignmentString(Tab::Alignment alignment); |
78 | static Tab::Alignment getTabAlignmentNum(const char *string); | 80 | static Tab::Alignment getTabAlignmentNum(const char *string); |
79 | //TODO: do these have to be public? | 81 | |
80 | void resizeGroup(void); // used when (un)shading windows | 82 | void resizeGroup(void); // used when (un)shading windows |
81 | void calcIncrease(void); | 83 | void calcIncrease(void); |
82 | inline bool configured() { return m_configured; } | 84 | inline bool configured() { return m_configured; } |