aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-04-20 13:45:07 (GMT)
committerfluxgen <fluxgen>2003-04-20 13:45:07 (GMT)
commit74792af1cc9d7507be77e664367bd1792cb0870b (patch)
treeb9057d1e713067b92fd593438def706eeb261c0b /src/Screen.hh
parent1e3fad7bb022bbcc33da302a772ee0dd1616e8c9 (diff)
downloadfluxbox-74792af1cc9d7507be77e664367bd1792cb0870b.zip
fluxbox-74792af1cc9d7507be77e664367bd1792cb0870b.tar.bz2
menu alpha and root pixmap
Diffstat (limited to 'src/Screen.hh')
-rw-r--r--src/Screen.hh9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 84d7f74..5b5f0de 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.81 2003/04/20 12:21:35 rathnor Exp $ 25// $Id: Screen.hh,v 1.82 2003/04/20 13:45:07 fluxgen Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -142,7 +142,8 @@ public:
142 inline unsigned int getBorderWidth() const { return theme->getBorderWidth(); } 142 inline unsigned int getBorderWidth() const { return theme->getBorderWidth(); }
143 inline unsigned int getBorderWidth2x() const { return theme->getBorderWidth()*2; } 143 inline unsigned int getBorderWidth2x() const { return theme->getBorderWidth()*2; }
144 inline unsigned int getCurrentWorkspaceID() const { return current_workspace->workspaceID(); } 144 inline unsigned int getCurrentWorkspaceID() const { return current_workspace->workspaceID(); }
145 145
146 Pixmap rootPixmap() const { return m_root_pm; }
146 /* 147 /*
147 maximum screen surface 148 maximum screen surface
148 */ 149 */
@@ -406,7 +407,8 @@ private:
406 Resource<std::string> rootcommand; 407 Resource<std::string> rootcommand;
407 Resource<Fluxbox::FocusModel> focus_model; 408 Resource<Fluxbox::FocusModel> focus_model;
408 bool ordered_dither; 409 bool ordered_dither;
409 Resource<int> workspaces, toolbar_width_percent, edge_snap_threshold; 410 Resource<int> workspaces, toolbar_width_percent, edge_snap_threshold,
411 menu_alpha;
410 Resource<Fluxbox::Layer> slit_layernum, toolbar_layernum; 412 Resource<Fluxbox::Layer> slit_layernum, toolbar_layernum;
411 int placement_policy, row_direction, col_direction; 413 int placement_policy, row_direction, col_direction;
412 414
@@ -429,6 +431,7 @@ private:
429 431
430 std::auto_ptr<RootTheme> m_root_theme; 432 std::auto_ptr<RootTheme> m_root_theme;
431 ToolbarHandler *m_toolbarhandler; 433 ToolbarHandler *m_toolbarhandler;
434 Pixmap m_root_pm;
432}; 435};
433 436
434 437