summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/desktop-tracker.h
blob: 7b94390068aa65ce7d46b02095726335c80940fc (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
// SPDX-License-Identifier: GPL-2.0-or-later
/* Authors:
 *   Jon A. Cruz
 *
 * Copyright (C) 2010 Jon A. Cruz
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */
#ifndef SEEN_DIALOG_DESKTOP_TRACKER
#define SEEN_DIALOG_DESKTOP_TRACKER

#include <cstddef>
#include <sigc++/connection.h>

typedef struct _GtkWidget GtkWidget;
class SPDesktop;
struct InkscapeApplication;

namespace Inkscape {

namespace UI {
namespace Dialog {

class DesktopTracker
{
public:
    DesktopTracker();
    virtual ~DesktopTracker();

    void connect(GtkWidget *widget);
    void disconnect();

    SPDesktop *getDesktop() const;

    void setBase(SPDesktop *desktop);
    SPDesktop *getBase() const;

    sigc::connection connectDesktopChanged( const sigc::slot<void, SPDesktop*> & slot );

private:
    static void activateDesktopCB(SPDesktop *desktop, DesktopTracker *self );
    static bool hierarchyChangeCB(GtkWidget *widget, GtkWidget* prev, DesktopTracker *self);

    void handleHierarchyChange();
    void setDesktop(SPDesktop *desktop);

    SPDesktop *base;
    SPDesktop *desktop;
    GtkWidget *widget;
    unsigned long hierID;
    sigc::connection inkID;
    bool trackActive;
    sigc::signal<void, SPDesktop*> desktopChangedSig;
};

} // namespace Dialog
} // namespace UI
} // namespace Inkscape

#endif // SEEN_DIALOG_DESKTOP_TRACKER
/*
  Local Variables:
  mode:c++
  c-file-style:"stroustrup"
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
  indent-tabs-mode:nil
  fill-column:99
  End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :