aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Screen.cc55
-rw-r--r--src/Screen.hh9
2 files changed, 15 insertions, 49 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index ab1b707..5a62820 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -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.cc,v 1.198 2003/06/30 18:04:48 fluxgen Exp $ 25// $Id: Screen.cc,v 1.199 2003/07/01 12:39:09 fluxgen Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -227,34 +227,6 @@ void setupWorkspacemenu(BScreen &scr, FbTk::Menu &menu) {
227}; 227};
228 228
229 229
230template <>
231void FbTk::ThemeItem<std::string>::load() { }
232
233template <>
234void FbTk::ThemeItem<std::string>::setDefaultValue() {
235 *(*this) = "";
236}
237
238template <>
239void FbTk::ThemeItem<std::string>::setFromString(const char *str) {
240 *(*this) = (str ? str : "");
241}
242
243template <>
244void FbTk::ThemeItem<int>::load() { }
245
246template <>
247void FbTk::ThemeItem<int>::setDefaultValue() {
248 *(*this) = 0;
249}
250
251template <>
252void FbTk::ThemeItem<int>::setFromString(const char *str) {
253 if (str == 0)
254 return;
255 sscanf(str, "%d", &m_value);
256}
257
258BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm, 230BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm,
259 const std::string &scrname, 231 const std::string &scrname,
260 const std::string &altscrname): 232 const std::string &altscrname):
@@ -287,6 +259,7 @@ BScreen::BScreen(FbTk::ResourceManager &rm,
287 m_workspacecount_sig(*this), // workspace count signal 259 m_workspacecount_sig(*this), // workspace count signal
288 m_workspacenames_sig(*this), // workspace names signal 260 m_workspacenames_sig(*this), // workspace names signal
289 m_currentworkspace_sig(*this), // current workspace signal 261 m_currentworkspace_sig(*this), // current workspace signal
262 m_reconfigure_sig(*this), // reconfigure signal
290 m_layermanager(num_layers), 263 m_layermanager(num_layers),
291 cycling_focus(false), 264 cycling_focus(false),
292 cycling_last(0), 265 cycling_last(0),
@@ -386,7 +359,6 @@ BScreen::BScreen(FbTk::ResourceManager &rm,
386 359
387 renderGeomWindow(); 360 renderGeomWindow();
388 361
389
390 // setup workspaces and workspace menu 362 // setup workspaces and workspace menu
391 363
392 workspacemenu.reset(createMenuFromScreen(*this)); 364 workspacemenu.reset(createMenuFromScreen(*this));
@@ -426,12 +398,9 @@ BScreen::BScreen(FbTk::ResourceManager &rm,
426 m_configmenu->setInternalMenu(); 398 m_configmenu->setInternalMenu();
427 399
428 workspacemenu->setItemSelected(2, true); 400 workspacemenu->setItemSelected(2, true);
429 401 // create and initiate rootmenu
430 402 rereadMenu();
431 initMenu(); // create and initiate rootmenu 403
432
433 //update menus
434 m_rootmenu->update();
435 m_configmenu->update(); 404 m_configmenu->update();
436 405
437#ifdef SLIT 406#ifdef SLIT
@@ -663,8 +632,7 @@ void BScreen::reconfigure() {
663 } 632 }
664 } 633 }
665 634
666 initMenu(); 635 rereadMenu();
667 m_rootmenu->reconfigure();
668 636
669 if (restore_menus) { 637 if (restore_menus) {
670 // restore submenus, no timestamp changed 638 // restore submenus, no timestamp changed
@@ -700,13 +668,13 @@ void BScreen::reconfigure() {
700 mem_fun(&FluxboxWindow::reconfigure)); 668 mem_fun(&FluxboxWindow::reconfigure));
701 669
702 imageControl().timeout(); 670 imageControl().timeout();
703 671 // notify objects that the screen is reconfigured
672 m_reconfigure_sig.notify();
704} 673}
705 674
706 675
707void BScreen::rereadMenu() { 676void BScreen::rereadMenu() {
708 initMenu(); 677 initMenu();
709
710 m_rootmenu->reconfigure(); 678 m_rootmenu->reconfigure();
711} 679}
712 680
@@ -717,7 +685,6 @@ void BScreen::removeWorkspaceNames() {
717 685
718void BScreen::updateWorkspaceNamesAtom() { 686void BScreen::updateWorkspaceNamesAtom() {
719 m_workspacenames_sig.notify(); 687 m_workspacenames_sig.notify();
720
721} 688}
722 689
723void BScreen::addIcon(FluxboxWindow *w) { 690void BScreen::addIcon(FluxboxWindow *w) {
@@ -731,7 +698,6 @@ void BScreen::removeIcon(FluxboxWindow *w) {
731 if (! w) 698 if (! w)
732 return; 699 return;
733 700
734
735 Icons::iterator erase_it = remove_if(m_icon_list.begin(), 701 Icons::iterator erase_it = remove_if(m_icon_list.begin(),
736 m_icon_list.end(), 702 m_icon_list.end(),
737 bind2nd(equal_to<FluxboxWindow *>(), w)); 703 bind2nd(equal_to<FluxboxWindow *>(), w));
@@ -915,10 +881,6 @@ void BScreen::sendToWorkspace(unsigned int id, FluxboxWindow *win, bool changeWS
915 changeWorkspaceID(id); 881 changeWorkspaceID(id);
916 win->setInputFocus(); 882 win->setInputFocus();
917 } 883 }
918#ifdef DEBUG
919 cerr<<__FILE__<<": Sending to id = "<<id<<endl;
920 cerr<<__FILE__<<": win->workspaceId="<<win->workspaceNumber()<<endl;
921#endif //DEBUG
922 884
923 } 885 }
924 886
@@ -990,6 +952,7 @@ void BScreen::updateNetizenWindowFocus() {
990 for (; it != it_end; ++it) { 952 for (; it != it_end; ++it) {
991 (*it)->sendWindowFocus(f); 953 (*it)->sendWindowFocus(f);
992 } 954 }
955
993} 956}
994 957
995 958
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 &currentWorkspaceSig() { return m_currentworkspace_sig; } 149 FbTk::Subject &currentWorkspaceSig() { 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