aboutsummaryrefslogtreecommitdiff
path: root/src/SlitClient.hh
blob: 25b14a545e5cf70b58d45494891155a4e52947f7 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// SlitClient.hh for fluxbox
// Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org)
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

#ifndef SLITCLIENT_HH
#define SLITCLIENT_HH

#include "FbTk/FbString.hh"
#include "FbTk/NotCopyable.hh"

#include <X11/Xlib.h>

class BScreen;

/// holds slit client info
class SlitClient: private FbTk::NotCopyable {
public:
    /// For adding an actual window
    SlitClient(BScreen *screen, Window win);
    /// For adding a placeholder
    explicit SlitClient(const char *name);

    const FbTk::BiDiString &matchName() const { return m_match_name; }
    Window window() const { return m_window; }
    Window clientWindow() const { return m_client_window; }
    Window iconWindow() const { return m_icon_window; }
    int x() const { return m_x; }
    int y() const { return m_y; }
    unsigned int width() const { return m_width; }
    unsigned int height() const { return m_height; }
    bool visible() const { return m_visible; }


    void setIconWindow(Window win) { m_icon_window = win; }
    void setWindow(Window win) { m_window = win; }
    void move(int x, int y) { m_x = x; m_y = y; }
    void resize(unsigned int width, unsigned int height) { m_width = width; m_height = height; }
    void moveResize(int x, int y, unsigned int width, unsigned int height) { m_x = x; m_y = y; m_width = width; m_height = height; }
    void hide();
    void show();
    void setVisible(bool value) { m_visible = value; }

    void initialize(BScreen *screen = 0, Window win= None);
    void disableEvents();
    void enableEvents();

private:
    FbTk::BiDiString m_match_name;
    Window m_window, m_client_window, m_icon_window;
    int m_x, m_y;
    unsigned int m_width, m_height;
    bool m_visible; ///< whether the client should be visible or not
};

#endif // SLITCLIENT_HH