nrujac
e2ff50687e
Adding side tabs and replacing TabbarLocation with Direction2D.
2014-02-19 20:08:11 +00:00
nrujac
0f6bed2ff7
Add side tabs to the tabbed layout.
2014-02-13 21:52:47 +00:00
Daniel Wagner
0f1b6fb772
use Data.Default wherever possible, and deprecate the things it replaces
2013-05-28 01:39:09 +00:00
Daniel Wagner
daa2731d3d
eliminate references to defaultConfig
2013-05-28 00:58:25 +00:00
Adam Vogt
067ccb950e
Export types to reduce haddock warnings.
2010-10-23 19:57:55 +00:00
Brent Yorgey
b435a6a519
suppress some warnings under ghc 6.12.1 and clean up redundant imports to get rid of some others.
2010-01-12 17:25:07 +00:00
Adam Vogt
0b4d34fa7e
Fix incorrect import suggestion in L.Tabbed (issue 362)
2010-01-21 18:25:01 +00:00
Jan Vornberger
bcb204731f
Extended decoration module with more hooks and consolidated some existing ones
2009-11-28 23:43:10 +00:00
Wirt Wolff
06a1322366
Docs: use myLayout like template rather than plural
...
Despite myLayouts currently being more popular in examples, make
them all myLayout as in man/xmonad.hs to avoid mixing them in the
same module as was done a few places, leading to confusion for some users.
2009-10-23 04:26:51 +00:00
Adam Vogt
9ba60f1952
Minor haddock formatting correction in L.Tabbed
2009-10-08 02:48:39 +00:00
David Roundy
dd1dc7f2bc
remove myself as maintainer from code I don't maintain.
2009-07-16 15:34:09 +00:00
Adam Vogt
5cd48cac7c
Remove trailing whitespace from many modules
2009-07-05 20:12:05 +00:00
Dmitry Astapov
f541602f0b
Expand Tabbed documentation to describe mouse clicks processing
2009-06-21 21:19:47 +00:00
Dmitry Astapov
be2be3f2f6
Close tabs by middle click on tab decoration
...
I'd better do it in xmonad.hs, but I can't decide what to expose from
Tabbed.hs to make it happed. Suggestions on how to make mouse click
handling hook a part of the Tabbed creation interface are very welcome
- my attempts turned out to be ugly in extreme.
2009-06-21 19:52:25 +00:00
Ivan.Miljenovic
8e5df4b950
Error fix for Tabbed when tabbar always shown
2008-04-24 06:31:35 +00:00
Ivan.Miljenovic
2e050d29d9
Allow tabbar to always be shown.
...
Patch take 4, hopefully the final version. Includes droundy's suggestions.
2008-04-15 04:37:28 +00:00
Roman Cheplyaka
8816dc5c3f
Remove broken link to screenshot.
2008-03-31 21:08:54 +00:00
David Roundy
143e68f664
cleanup in Tabbed (make 'loc' be actual location).
2008-03-26 15:10:04 +00:00
Spencer Janssen
b85ce7522f
Fix bugs in Tabbed and TabBarDecoration -- please remember multi-head!
2008-03-26 03:45:41 +00:00
David Roundy
6850c0fed7
fix bug leading to gaps in tabs at the corner of the screen.
...
Besides being ugly, this had the effect of making me fail to click on the
tab I aimed for, if it was in the corner.
2008-03-25 21:02:11 +00:00
Roman Cheplyaka
b3a9ed8dcd
Add bottom-tabbed layout.
2008-02-29 15:51:20 +00:00
Roman Cheplyaka
ad5b862c5a
Fix doc for Tabbed
2008-02-19 05:56:50 +00:00
Andrea Rossato
a6ce16d2e7
Tabbed and TabBarDecoration: no need to implement decorateFirst (the default is used)
2008-02-18 18:49:50 +00:00
Andrea Rossato
7e8276d0b7
Tabbed and SimpleTabbed (in DecorationMadness) define their own decorationMouseDragHook method
...
... to disable mouse drag in tabbed layouts
2008-02-11 11:40:43 +00:00
Andrea Rossato
4ee7aafd1c
Tabbed: add simpleTabbed and fx documentation
...
simpleTabbed is just a version of tabbed with default theme and
default srhinker.
2008-02-09 16:39:17 +00:00
David Roundy
5df47fcfc5
make tabbed work nicely with LayoutCombinators and WindowNavigation.
...
The problem is that WindowNavigation assumes all windows are navigable, and
it was getting confused by decorations. With a bit of work, we can
decorate windows *after* combining layouts just fine.
2008-02-05 20:23:43 +00:00
David Roundy
8034498f91
switch tabbed back to using Simplest (so tabs will be shown).
2008-02-04 00:53:50 +00:00
Spencer Janssen
dfa3a4ee01
Various decorations related updates
...
* remove deprecated TConf stuff
* Remove 'style' from DeConf
* Change DeConf to Theme
* share defaultTheme across all decorations
2008-01-30 06:46:24 +00:00
Andrea Rossato
041eb5dc18
Don't export TConf anymore and export DeConfig instead
...
WARNING: this patch may be breaking your configuration. While it is
still possible to use:
tabbed shrinkText defaultTConf
updating the fields of the defaultTConf record is not possible
anymore, since the type TConf is now hidden.
WARNING: "tabSize" has been substituted by "decoHeight"
You can change your configuration this way:
myTConf :: TConf
myTConf = defaultTConf
{ tabSize = 15
, etc....
becomes:
myTConf :: DeConfig TabbedDecoration Window
myTConf = defaultTabbedConfig
{ decoHeight = 15
, etc....
and
tabbed shrinkText myTConf
becomes:
tabDeco shrinkText myTConf
2008-01-26 09:21:41 +00:00
Andrea Rossato
baca0e98d1
Tabbed now uses Decoration
2008-01-25 15:23:11 +00:00
Andrea Rossato
0c835744c2
Fix isssue 105
...
issue 105 was due to the fact that tab windows created when
bootstrapping the windowset after a restart where managed. Setting the
override_redirect attributes to True fixes the issue.
Added the possibility to set the override_redirect attribute with
XMonad.Util.XUtils.creationNewWindow
2007-12-24 17:10:20 +00:00
Spencer Janssen
662eeb7e5f
No more tabs
2007-12-22 05:04:39 +00:00
Shachaf Ben-Kiki
0853c1ce21
Add UrgencyHook support to Tabbed
2007-12-15 17:16:17 +00:00
Spencer Janssen
3a522e7e3c
Remove XMonad.Operations imports
2007-12-08 00:05:47 +00:00
Spencer Janssen
dc11825588
Remove redundant imports
2007-12-07 23:38:27 +00:00
Brent Yorgey
e6dcaa15c7
dafaultConfig --> defaultConfig
2007-11-23 16:47:22 +00:00
Andrea Rossato
1902145b6e
Tabbed: haddock fixes
2007-11-21 18:17:10 +00:00
Andrea Rossato
c43dabf621
Tabbed: haddock documentation and code formatting
2007-11-21 14:09:08 +00:00
Clemens Fruhwirth
ce5928edd3
Add Font layer supporting an Xft backend. Make Tabbed.hs a user of this layer.
2007-11-16 12:06:53 +00:00
David Roundy
ffed7c0e02
remove unneeded Data.Bits imports.
2007-11-15 16:13:46 +00:00
"Valery V. Vorotyntsev"
d4f8502807
Tabbed.hs, SetWMName.hs: the modules need bitwise "or"
...
Tabbed.hs cleaned of trailing whitespace.
2007-11-15 14:37:58 +00:00
Andrea Rossato
40ad31449f
Tabbed: removed -fno-warn-orphans
...
I added it by mistake, but it is not needed. Sorry.
2007-11-14 23:05:44 +00:00
Don Stewart
964a511cd9
no need to import Data.Bits
2007-11-14 18:39:55 +00:00
Andrea Rossato
5ee39ecc53
Tabbed: added -fno-warn-orphans
2007-11-14 13:55:25 +00:00
David Roundy
6e24689652
make shrinker preserved over restart in tabbed.
2007-11-13 16:31:16 +00:00
Spencer Janssen
cd1884466a
Hierarchify
2007-11-01 20:10:59 +00:00