aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-06-15X.L.LayoutHints: refresh only if hints are not satisfiedTomas Janousek1-3/+13
Ignore-this: e081f5fbd6a721e260212548d830ff6b darcs-hash:20110615150333-c9ff5-c0a9b5307c5309778e21ae7aeca89a9946647242.gz
2011-06-12L.Spacing use imported fiAdam Vogt1-1/+1
Ignore-this: ac3b405e8c43d1b1db58ecf80fafab8e darcs-hash:20110612192339-1499c-e3ed41cd5ed23daa7d16f0d679c11fab3d70eebb.gz
2011-06-09Use a phantom type instead of undefined in L.LayoutBuilderPAdam Vogt1-4/+7
Ignore-this: f9009c339ac20245ca0b1dc8154b673f This better expresses the idea that the argument to alwaysTrue is just there to select an instance. Another option could be to do use a fundep, which seems to be compatible with the two instances so far. class Predicate p w | p -> w darcs-hash:20110609051858-1499c-ea3f8f433a510fea3c6fcc79b77098d14afe163f.gz
2011-06-09Add more L.LayoutBuilderP documentationAdam Vogt1-2/+14
Ignore-this: 1441d917c84b165f30711e572e239392 darcs-hash:20110609050922-1499c-3781238ffd2d6ad1f0ce84601dfdf5f019afd2e6.gz
2011-06-09Correct L.LayoutBuilderP module name in haddock.Adam Vogt1-1/+1
Ignore-this: 3c322c0767969fa42b1e2c32cf3f8a1a darcs-hash:20110609043940-1499c-250f1c6f321d5aea1443b4fdd5bea6e167dcc060.gz
2011-05-14Cleanup in X.L.LayoutBuilderP.Ilya Portnov1-7/+2
Ignore-this: 59d9ce37218424e1bc225a42d71982ab Remove unused datatype declaration and export usefull typeclass. darcs-hash:20110514132232-c5067-a40e438b21f60a6c794b8b0ea77c1730b203ce44.gz
2011-05-14Generalize X.L.AutoMaster modifierIlya Portnov1-4/+4
Ignore-this: 481c35dd721405bab8b085c45cb983ce Enable it to work not only with Windows, but with any (Eq) type. darcs-hash:20110514132549-c5067-fe26b23224c3be42c2374286f8b531e84a928aa5.gz
2011-05-11Add new layout combinator: LayoutBuilderP.Ilya Portnov1-0/+200
Ignore-this: 377b748cb6b84ef7c9f7cde1d4ebd535 LayoutBuilderP is similar to LayoutBuilder (and is based on it), but LayoutBuilderP places windows matching given X.U.WindowProperties.Property (or any other predicate) into one rectangle, instead of fixed number of windows. darcs-hash:20110511154010-c5067-2f813b2d31a92230d7de035602ec4e659c742abd.gz
2010-12-23fix X.L.Gaps documentation, thanks to Carl Mueller for the reportBrent Yorgey1-2/+2
Ignore-this: d60b64676668d5b82efb9215ac5605f6 darcs-hash:20101223010744-1e371-fab0db19c8af94ef47b6e96651cf36be5cce831f.gz
2010-12-12fix up funny unicode whitespace in FullscreenBrent Yorgey1-34/+34
Ignore-this: 406c4eec83838923edfbf0dfc554cbb7 darcs-hash:20101212142241-1e371-30c0c3c0baa914958fb55079bb76e18bfd8a11e9.gz
2010-11-16Add X.L.FullscreenAudun Skaugen audunskaugen@gmail.com1-0/+223
Ignore-this: 4b460e9a25abbb4f988801052232147a darcs-hash:20101116221611-dc3a6-529b2debf0b89fa9ac9283abd22fbf8ac513b41a.gz
2010-11-16Close the display correctly after counting the number of screensquesel1-1/+2
Ignore-this: 6fbc269e34770935fed7d4fd9494154b This patch adds support for calling countScreens in arbitrary places. Prior to this patch one would end up with an open display for each call of the countScreens function with would eventually mess up X. This patch ensures that the display that is no longer needed is closed after the operation and thus using the function without side effects. darcs-hash:20101116081449-2216c-b6d4aee766682de3bec2aa9dd733adcccb5cdf7b.gz
2010-11-16Compatibility with mtl-1 and mtl-2Adam Vogt1-1/+1
Ignore-this: 4fb7f279365992fe9e73388b0f4001ac darcs-hash:20101115232654-1499c-411b53c153acbcbf791150e3923a754abe530202.gz
2010-11-13Pointfree and -XRank2Types don't mix in X.L.Groups.HelpersAdam Vogt1-2/+2
Ignore-this: 21aa9b687179c5622dc6fae749c7872 It used to work with ghc-6.12 (and earlier?), but ghc-7RC2 type inference doesn't work with . instead of it's definition. darcs-hash:20101113022839-1499c-e4b76537164f29e065c24db279215dbac727c01f.gz
2010-10-30X.L.TrackFloating docs and help nested layoutsAdam Vogt1-14/+44
Ignore-this: a4362384ff8baab896715226772edf62 Now TrackFloating remembers focus for the given layout when the other window is also tiled, but not fed to the given layout: this helps with X.L.IM, among others. darcs-hash:20101030175615-1499c-e205cecd50f076131e4b5b527454a0a4f79dc273.gz
2010-10-30X.L.Maximize: Make layout forget maximized window when it is closedNorbert Zeh1-1/+3
Ignore-this: 9e8bfacce7f90634532078584c82940a The X.L.Maximize layout modifier does not track whether the window it stores as maximized does still exist. The X server reuses window IDs. As a result, I was able to reproduce the following behaviour (e.g., by opening and closing xpdf windows): Create a window, maximize it, close it without restoring it to its normal state. Open a new window with the same window ID (e.g., an xpdf window after just closing an xpdf window). The new window will open maximized, which is not what one would expect. This patch addresses this problem, removing the ID of the maximized window from the layout when the maximized window is closed. darcs-hash:20101029221551-18a2b-985a1a8aff5522d2ef05cbb53f18ba459daf5ef8.gz
2010-10-30Fix bug in L.TrackFloatingAdam Vogt1-15/+18
Ignore-this: 2c3902ea9f1d70a7043965c8aa99891d Addresses the comment that: If the focus goes from the floating layer to tiling by deleting a floating window, it's again the master window that gets focus, not the remembered window. darcs-hash:20101030000620-1499c-fedd38718bbcaaac77dae90f13aae2c5f66fa6a0.gz
2010-10-16Add X.L.TrackFloating for tiled-floating focus issues (#4)Adam Vogt1-0/+83
Ignore-this: 19a4a81601c23900d78d85bd0627d5bb darcs-hash:20101016165536-1499c-b4f6c4b3795637e47cae86461d287ca2d4448dde.gz
2010-10-07minor documentation fixesDaniel Wagner2-2/+10
Ignore-this: c5c046933f318f5a14f063ca387601b9 darcs-hash:20101007011957-76d51-ab28ea5c58b183de7dd35833b2e5bdb25411900a.gz
2010-10-02Clarify the note on -XRank2Types in L.GroupsAdam Vogt1-3/+4
Ignore-this: 4ffe5d2d0be1e8b8a8c151b134e963f2 darcs-hash:20101002020841-1499c-c8512eb095bd56be173c35004b24016d457c74e9.gz
2010-01-17Mention X.L.Groups.ModifySpec's rank-2 type in the docquentin.moser1-0/+4
Ignore-this: 2061238abf835cb20579a4899655cec2 darcs-hash:20100117115601-5ccef-4c841e0535ffb6ba3bbac8ae5ae7720de4a32066.gz
2010-10-01Orphan my modulesmoserq4-7/+4
Ignore-this: 781ebf36f25a94df96fde5f7bb7bc53e darcs-hash:20101001104300-88fd0-873c177e11b9e4bed41fc29048e45ca165e369f2.gz
2010-10-01Split X.L.Groups.Examplesmoserq5-314/+396
Ignore-this: 4d3bc3c44b1c0233d59c6ce5eefcc587 X.L.G.Examples : rowOfColumns and tiled tabs layouts X.L.G.Helpers : helper actions X.L.G.Wmii : wmii layout darcs-hash:20101001104142-88fd0-6ac471ab66a886497aba7d6c0b4803c3b8aaa884.gz
2010-01-20X.L.G.Examples: improve the tabs of tiledTabsmoserq1-4/+6
Ignore-this: 58a449c35e1d4a30ecfdf80f015d2dee darcs-hash:20100120103240-88fd0-05ee05c0128e2622f5c295b97946caefaf6884b9.gz
2010-01-20X.L.G.Examples: improve the tabs of wmiiLikemoserq1-2/+5
Ignore-this: 1519338158025fb580cac523e4a41b88 darcs-hash:20100120101746-88fd0-7aff3f13f8b0ff2ac5a260053c3764b041224cdb.gz
2010-01-18X.L.Groups: Always keep one group, even if empty.quentin.moser1-37/+46
Ignore-this: 22d7f9b92484c3411ecba66b06f69821 darcs-hash:20100118021526-5ccef-dc7dd054a62918c6d097ced0dce4c0ea46b446d7.gz
2010-01-17Do not duplicate layouts in X.L.Groupsquentin.moser1-8/+8
Ignore-this: 100f8ccfbbcda9e8f5cc2b1470772928 I liked the idea, but it completey messes up Decoration layouts. darcs-hash:20100117114708-5ccef-459d59239b85786ac3d0a406be4c3f799c4a1089.gz
2010-09-30Add missing module re-export (issue 366)Adam Vogt1-0/+3
Ignore-this: ecd6e4ff54d41f37a75be72f3d0e4a59 darcs-hash:20100930002046-1499c-5e674b4348bf002410d7ed133349c0d3990fdc25.gz
2010-05-18This patch adds support for multiple master windows to X.L.Masterquesel1-16/+47
Ignore-this: 5c62202575966ee65e9b41ef41c30f94 darcs-hash:20100518060557-2216c-1863401668febf2c430576802860d069d22aa8ae.gz
2010-07-06X.L.LayoutHints: event hook to refresh on hints changeTomas Janousek1-1/+20
Ignore-this: 54eba739c76db176cbb4ef66e30c201f darcs-hash:20100706185925-c9ff5-2aa842bb1f8f3a67cff43670c20db9a7f0438720.gz
2010-09-14Explain fields added for "XMonad.Layout.ImageButtonDecoration"Adam Vogt1-2/+4
Ignore-this: 8eae99afb2857a91aabbf3b7f27c784e darcs-hash:20100913232720-1499c-10f6b62841b0ce1bca58673203cb64242140d5b1.gz
2010-07-28Minimize: Replaced calls to 'sendMessage' (BW.focusDown) and 'windows' with ↵Jan Vornberger3-11/+14
alternative methods Ignore-this: 67257480b7b93181967a806fedf6fbc5 Calling these functions during message handling results in the loss of layout state. This fixes a number of bugs related to the combination of X.L.Minimize with a decoration. darcs-hash:20100727224841-594c5-c8ddec3ae634ec96103e332433066b5173a0002a.gz
2010-06-16A hook to handle minimize/restore window manager hints.Justin Bogner1-2/+2
Ignore-this: c562ce1df81bce9a7dc5e7fe2dc67a43 XMonad.Hooks.Minimize handles both minimize and restore messages. Handling restore messages was already done in RestoreMinimized, which this module intends to replace. darcs-hash:20100616051124-18f27-729a41e41728de0e8c32f53032633d34b92ebf0f.gz
2010-06-22Note that Simplest works well with BoringWindowsAdam Vogt1-0/+13
Ignore-this: b9b6060842651c0df47b23dddb3bf54a darcs-hash:20100622030850-1499c-18e7b9e780fff7fd3b291f7a7d449adcff378de2.gz
2009-08-22Add a way to update the modifier in X.L.LayoutModifierDaniel Schoepe1-3/+21
Ignore-this: f257a376bef57689287b68ed21ec903d This patch adds the possibility to update the state of a layout modifier when modifying the underlying layout before it is run(i.e. using modifyLayout). The modified state is also passed to the subsequent call of redoLayout, whose return takes precedence if both functions return modified states of the layout modifier. darcs-hash:20090822213958-7f603-2116263ba9622458aa9dea0f664af4431775a361.gz
2010-04-19Use CPP to add to exports for Selective tests (L.LimitWindows)Adam Vogt1-2/+7
Ignore-this: 74c228892f07bb827e4b419f4efdb04 darcs-hash:20100419014344-1499c-4a6191209e2f2457f1ca1e347387bb74d9dd957a.gz
2010-04-16Use imported `fi' alias for fromIntegral more often.Adam Vogt3-8/+3
Ignore-this: 51040e693066fd7803cc1b108c1a13d5 Also moves `fi' into U.Image to avoid cyclic imports, though XUtils sill exports that definition. darcs-hash:20100416212939-1499c-a12428074d873b1eaea197e1b79c0ca07a96b05f.gz
2010-04-16Note that mouseResizableTileMirrored may be removed.Adam Vogt1-0/+1
Ignore-this: 2b005aa36abe224f97062f80e8558af7 darcs-hash:20100416161118-1499c-e65324ed1623372fbd551353fdc771538b1d8b6a.gz
2010-04-16Structure L.MouseResizableTile documentation.Adam Vogt1-29/+21
Ignore-this: c285ac8a4663bdd2ae957b3c198094da darcs-hash:20100416160641-1499c-210f416d5aff2809ed62a2dfe049c5a17ae5fe8e.gz
2010-04-15X.L.MouseResizableTile: make everything configurableTomas Janousek1-30/+57
Ignore-this: f8164dc63242c7e32210c9577a254bf7 darcs-hash:20100415214609-c9ff5-4a1e2eade8e844976465fca7f53d618bcaa40a0d.gz
2010-04-15X.L.MouseResizableTile: configurable gaps (dragger size and position)Tomas Janousek1-38/+66
Ignore-this: 5803861bbfecbc8c946b817b98909647 (with the option of putting the draggers over window borders with no gaps at all) darcs-hash:20100415213813-c9ff5-a515b8a9679917cfb247683a4ca6b90cd6efbed6.gz
2010-04-05prettier haddock markup for L.NoBordersAdam Vogt1-6/+6
Ignore-this: 1a9862e6e7ec0e965201a65a68314680 darcs-hash:20100405184020-1499c-bf8707ca6f0387e0c3960a5c07b67e7940a79e25.gz
2010-04-02ImageButtonDecoration: new image for menu buttonJan Vornberger1-10/+10
Ignore-this: 3977c4bfcb4052e07321ec9e83f917c6 darcs-hash:20100402174910-594c5-c6c9576ca8b2b4c8a54604c586c75d5a81d86ba0.gz
2010-03-31image_buttonstrupill3-15/+236
Ignore-this: 418dbf488435c7c803695407557eecfb * Added a XMonad.Util.Image module to manipulate simple images and show them into an X drawable * Added the possibility of using image buttons instead of plain text buttons into the title bar * Added a XMonad.Layout.ImageButtonDecoration as an example of how to use the image buttons darcs-hash:20100331093808-a84fe-e6d3ce505f7656eef13f0c0609a8d236d9cd8d25.gz
2010-04-01X.L.Named deprecate and implement using X.L.RenamedAnders Engstrom1-19/+12
Ignore-this: a74963ef4990c9e845b9142b8648cf26 nameTail behaves slightly different if there are whitespace before the first word or the name contains tabs or other such whitespace. But I expect few users are affected since the only usecase where nameTail is actually needed is to remove automatically added prefixes. These prefixes will be removed as they should by the new implementation. darcs-hash:20100401212403-8978f-756f76fe1fd7128f020c4527e44d0e03529d5d41.gz
2010-04-01X.L.Minimize remove redundant importsAnders Engstrom1-2/+0
Ignore-this: f7bbfe96c8d08955fc845318f918ec86 darcs-hash:20100401204400-8978f-27204eed5af3dc131a1329d92dbc00cf97f1ec65.gz
2010-03-30minimize_ewmhtrupill1-3/+31
Ignore-this: 4d14b74192af503c4b2e28ea877c85f5 darcs-hash:20100330183616-a84fe-8a826bd9ac482c72323fbb35f38e4d15f9d6e6a3.gz
2010-03-30Note that Groups has redundancies and the interface may change.Adam Vogt1-0/+3
Ignore-this: 2f4dc5a2355ace4005dd07fc5d459f1a Refer to: http://www.haskell.org/pipermail/xmonad/2010-January/009585.html darcs-hash:20100330175945-1499c-47584b6518fd87b3bb791281afe62e6a31e69e66.gz
2010-01-17Update my e-mail addressquentin.moser4-4/+4
Ignore-this: f5efc4d494cb001d3cfbe2b2e169cbe5 darcs-hash:20100117011109-5ccef-9bf858e60dffc4321b5e324c76b8b72386051c76.gz
2010-01-17New module: X.L.Groups.Examplesquentin.moser1-0/+518
Ignore-this: 8fc40821759d7ed439ecc6726417f52d Utility functions and examples using X.L.Groups. darcs-hash:20100117010236-5ccef-d43cc0223b2ecaeb708c212d6fcf57a89a8a1a8b.gz