summaryrefslogtreecommitdiffstats
path: root/yakuake/src/terminal_splitter.h
blob: 58e44f1b476ff175fb8c3ebd9a84564ddfdbb05f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
*/

/*
  Copyright (C) 2007 Eike Hein <hein@kde.org>
*/


#ifndef TERMINAL_SPLITTER_H
#define TERMINAL_SPLITTER_H


#include <tqsplitter.h>


class TerminalSplitter : public TQSplitter
{
    TQ_OBJECT
  

    public:
        explicit TerminalSplitter(Qt::Orientation o, TQWidget* parent=0, const char* name=0);
        ~TerminalSplitter();

        void focusNext();
        void focusPrevious();
        void focusLast();

        int count();
        int terminalCount(bool recursive = false);
        int splitterCount(bool recursive = false);

        bool isFirst(TQWidget * w);

        void recursiveCleanup();

        void setPrepareShutdown(bool shutdown);


    private:
        bool is_shutting_down;

};


#endif /* TERMINAL_SPLITTER_H */