aboutsummaryrefslogtreecommitdiff
path: root/src/RootTheme.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-03-22 21:01:42 (GMT)
committerfluxgen <fluxgen>2004-03-22 21:01:42 (GMT)
commitb0af80ec1dacccde14ec9ff4019b3db3b58a162c (patch)
tree8c3c5b89a3cd939a6a28a62c9963805f4c338697 /src/RootTheme.hh
parent9991ce9ff431e242b300403a89ee05a91f855433 (diff)
downloadfluxbox-b0af80ec1dacccde14ec9ff4019b3db3b58a162c.zip
fluxbox-b0af80ec1dacccde14ec9ff4019b3db3b58a162c.tar.bz2
added screen resource .overlay.lineWidth, .overlay.lineStyle and .overlay.capStyle which defines the line style for resize and move actions on windows, patch from Mathias Gumz
Diffstat (limited to 'src/RootTheme.hh')
-rw-r--r--src/RootTheme.hh10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/RootTheme.hh b/src/RootTheme.hh
index 686a4ed..83ce2c8 100644
--- a/src/RootTheme.hh
+++ b/src/RootTheme.hh
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: RootTheme.hh,v 1.6 2004/01/02 13:28:38 fluxgen Exp $ 22// $Id: RootTheme.hh,v 1.7 2004/03/22 21:01:42 fluxgen Exp $
23 23
24#ifndef ROOTTHEME_HH 24#ifndef ROOTTHEME_HH
25#define ROOTTHEME_HH 25#define ROOTTHEME_HH
@@ -44,6 +44,14 @@ public:
44 void reconfigTheme(); 44 void reconfigTheme();
45 45
46 GC opGC() const { return m_opgc.gc(); } 46 GC opGC() const { return m_opgc.gc(); }
47
48 void setLineAttributes(unsigned int width,
49 int line_style,
50 int cap_style,
51 int join_style) {
52 m_opgc.setLineAttributes(width, line_style, cap_style, join_style);
53 }
54
47 //!! TODO we should need this later 55 //!! TODO we should need this later
48 void lock(bool value) { m_lock = value; } 56 void lock(bool value) { m_lock = value; }
49private: 57private: