diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-05-06 20:26:20 (GMT) |
---|---|---|
committer | Pavel Labath <pavelo@centrum.sk> | 2011-05-10 11:00:46 (GMT) |
commit | 6a0280aa4d8b468617a7dd5f7a6523d0422364e8 (patch) | |
tree | e85f742583d112f8d970c0523537aacdb1926726 /src/fluxbox.hh | |
parent | e53d14e9102270a1682a88c29161580ccbf0c20a (diff) | |
download | fluxbox_pavel-6a0280aa4d8b468617a7dd5f7a6523d0422364e8.zip fluxbox_pavel-6a0280aa4d8b468617a7dd5f7a6523d0422364e8.tar.bz2 |
Convert FluxboxWindow::layerSig to FbTk::Signal
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r-- | src/fluxbox.hh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh index af28ac7..d1e8e93 100644 --- a/src/fluxbox.hh +++ b/src/fluxbox.hh | |||
@@ -28,7 +28,6 @@ | |||
28 | #include "FbTk/App.hh" | 28 | #include "FbTk/App.hh" |
29 | #include "FbTk/Resource.hh" | 29 | #include "FbTk/Resource.hh" |
30 | #include "FbTk/Timer.hh" | 30 | #include "FbTk/Timer.hh" |
31 | #include "FbTk/Observer.hh" | ||
32 | #include "FbTk/SignalHandler.hh" | 31 | #include "FbTk/SignalHandler.hh" |
33 | #include "FbTk/Signal.hh" | 32 | #include "FbTk/Signal.hh" |
34 | 33 | ||
@@ -76,7 +75,6 @@ class FbAtoms; | |||
76 | */ | 75 | */ |
77 | class Fluxbox : public FbTk::App, | 76 | class Fluxbox : public FbTk::App, |
78 | public FbTk::SignalEventHandler, | 77 | public FbTk::SignalEventHandler, |
79 | public FbTk::Observer, | ||
80 | private FbTk::SignalTracker { | 78 | private FbTk::SignalTracker { |
81 | public: | 79 | public: |
82 | Fluxbox(int argc, char **argv, | 80 | Fluxbox(int argc, char **argv, |
@@ -156,7 +154,6 @@ public: | |||
156 | 154 | ||
157 | /// handle any system signal sent to the application | 155 | /// handle any system signal sent to the application |
158 | void handleSignal(int signum); | 156 | void handleSignal(int signum); |
159 | void update(FbTk::Subject *changed); | ||
160 | /// todo, remove this. just temporary | 157 | /// todo, remove this. just temporary |
161 | void updateFrameExtents(FluxboxWindow &win); | 158 | void updateFrameExtents(FluxboxWindow &win); |
162 | 159 | ||
@@ -225,6 +222,8 @@ private: | |||
225 | void windowWorkspaceChanged(FluxboxWindow &win); | 222 | void windowWorkspaceChanged(FluxboxWindow &win); |
226 | /// Called when a window changes state | 223 | /// Called when a window changes state |
227 | void windowStateChanged(FluxboxWindow &win); | 224 | void windowStateChanged(FluxboxWindow &win); |
225 | /// Called when a window layer changes | ||
226 | void windowLayerChanged(FluxboxWindow &win); | ||
228 | 227 | ||
229 | std::auto_ptr<FbAtoms> m_fbatoms; | 228 | std::auto_ptr<FbAtoms> m_fbatoms; |
230 | 229 | ||