aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.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/Screen.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/Screen.hh')
-rw-r--r--src/Screen.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh
index 070c45a..707f831 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.135 2004/03/21 09:00:25 rathnor Exp $ 25// $Id: Screen.hh,v 1.136 2004/03/22 21:01:10 fluxgen Exp $
26 26
27#ifndef SCREEN_HH 27#ifndef SCREEN_HH
28#define SCREEN_HH 28#define SCREEN_HH
@@ -431,6 +431,10 @@ private:
431 FbTk::Resource<PlacementPolicy> placement_policy; 431 FbTk::Resource<PlacementPolicy> placement_policy;
432 FbTk::Resource<RowDirection> row_direction; 432 FbTk::Resource<RowDirection> row_direction;
433 FbTk::Resource<ColumnDirection> col_direction; 433 FbTk::Resource<ColumnDirection> col_direction;
434 FbTk::Resource<int> gc_line_width;
435 FbTk::Resource<FbTk::GContext::LineStyle> gc_line_style;
436 FbTk::Resource<FbTk::GContext::JoinStyle> gc_join_style;
437 FbTk::Resource<FbTk::GContext::CapStyle> gc_cap_style;
434 438
435 } resource; 439 } resource;
436 440