diff options
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index d4cdb3b..ab09487 100644 --- a/src/Screen.hh +++ b/src/Screen.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Screen.hh,v 1.112 2003/06/25 05:46:21 fluxgen Exp $ | 25 | // $Id: Screen.hh,v 1.113 2003/07/01 12:39:09 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef SCREEN_HH | 27 | #ifndef SCREEN_HH |
28 | #define SCREEN_HH | 28 | #define SCREEN_HH |
@@ -147,6 +147,8 @@ public: | |||
147 | FbTk::Subject &workspaceNamesSig() { return m_workspacenames_sig; } | 147 | FbTk::Subject &workspaceNamesSig() { return m_workspacenames_sig; } |
148 | /// current workspace signal | 148 | /// current workspace signal |
149 | FbTk::Subject ¤tWorkspaceSig() { return m_currentworkspace_sig; } | 149 | FbTk::Subject ¤tWorkspaceSig() { return m_currentworkspace_sig; } |
150 | /// reconfigure signal | ||
151 | FbTk::Subject &reconfigureSig() { return m_reconfigure_sig; } | ||
150 | //@} | 152 | //@} |
151 | 153 | ||
152 | /// @return the resource value of number of workspace | 154 | /// @return the resource value of number of workspace |
@@ -203,7 +205,7 @@ public: | |||
203 | const std::string &altName() const { return m_altname; } | 205 | const std::string &altName() const { return m_altname; } |
204 | int addWorkspace(); | 206 | int addWorkspace(); |
205 | int removeLastWorkspace(); | 207 | int removeLastWorkspace(); |
206 | //scroll workspaces | 208 | // scroll workspaces |
207 | void nextWorkspace() { nextWorkspace(1); } | 209 | void nextWorkspace() { nextWorkspace(1); } |
208 | void prevWorkspace() { prevWorkspace(1); } | 210 | void prevWorkspace() { prevWorkspace(1); } |
209 | void nextWorkspace(int delta); | 211 | void nextWorkspace(int delta); |
@@ -340,7 +342,8 @@ private: | |||
340 | m_clientlist_sig, ///< client signal | 342 | m_clientlist_sig, ///< client signal |
341 | m_workspacecount_sig, ///< workspace count signal | 343 | m_workspacecount_sig, ///< workspace count signal |
342 | m_workspacenames_sig, ///< workspace names signal | 344 | m_workspacenames_sig, ///< workspace names signal |
343 | m_currentworkspace_sig; ///< current workspace signal | 345 | m_currentworkspace_sig, ///< current workspace signal |
346 | m_reconfigure_sig; ///< reconfigure signal | ||
344 | 347 | ||
345 | FbTk::MultLayers m_layermanager; | 348 | FbTk::MultLayers m_layermanager; |
346 | 349 | ||