aboutsummaryrefslogtreecommitdiffstats
max8997_charger: Use devm_kzalloc()Jingoo Han
2012-11-28power: remove use of __devexitBill Pemberton
2012-11-28power: remove use of __devinitBill Pemberton
2012-11-28power: remove use of __devexit_pBill Pemberton
2012-01-06max8997_charger: Remove duplicate module.hJonghwan Choi
2012-01-04Merge branch 'power-supply-scope' of git://git.kernel.org/pub/scm/linux/kerne...Anton Vorontsov
2011-11-25max8997_charger: Fix unsigned value for less than zeroJonghwan Choi
2011-10-31drivers/power: Add module.h to the actual modules in drivers/powerPaul Gortmaker
2011-08-19max8997_charger&max8998_charger: Fix unterminated platform_device_id tablesAxel Lin
2011-08-19max8997_charger: Needs module.hAxel Lin
2011-07-08power_supply: Add charger driver for MAX8997/8966Donggeun Kim
ght: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
Matchbox Window Manager II README.
======

Intro
===

Matchbox Window Manager II is a complete rewrite of the original
m-w-m. It is in early stages of development.


Plans/Aims Overview
===

o Manage windows in a restricted stack PDA style just like the original m-w-m.

o Be small, fast, dependency light, flexible just like the original m-w-m.

o Dont use libmb (XRender can be used for basic image compositing,
  performance issues should be able to be addressed via clever caching)

o Be very modular in nature using a simple object system. m-w-m-2
  should consist of core and optional building blocks which can be
  put togeather in various ways to form a window manager for a specific
  embedded UI (with varying constraints). The object system should
  provide this rather than being dependant on #ifdefs to add specific
  behaviour for a specific platform/UI.

o Form a Much cleaner and manageable code base.

o Use Xlib on XCB (or options xlibint.h) for more async prop calls.

o *Optional* support for glib mainloop and GTK.

o Support various themeing/decoration engines.

o Better support compositing.


Design
===

m-w-m-2 source code is split into various components as follows;

  - src/core

  Contains the core code and classes for providing window
  management. Ideally all objects should be overideable with an
  alternate implimentation and policy.

  TODO: Objectify things like the wm core and layout engine.
	Window Decorations / Buttons.
	Support EWMH. 

  - src/client-types

  Contains sub classes of the cores 'client' type to implement handling of
  various window types (eg app windows, dialogs, panels).
  
  Each type sets layout and stacking as to how to wish to
  be managed (eg the core knows nothing about what a 'dialog' is, just
  the hints its provides). 

  TODO: Basically pad this out more. 

  - src/theme-engines

  Implementations of various theme engines.

  TODO: lots

  - src/managers

  The 'meat' which pulls the above togeather to form a window manager for a 
  particular platform. Currently just a 'simple' implentation exists, but in
  the future others could exists like matchbox-window-manager-maemo for 
  example.

  TODO: lots

In the future other sub directorys could be 'composite', 'GTK' etc..


Notes
==

It could be worth (optionally) building everything (except managers)
as a lib so out of tree WM's could be built.