1. 02 Feb, 2016 1 commit
  2. 15 Jan, 2016 1 commit
    • Explorer09's avatar
      Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses. · 6dae8108
      Explorer09 authored
      With the CLAMP macro replacing the combination of MIN and MAX, we will
      have at least two advantages:
      1. It's more obvious semantically.
      2. There are no more mixes of confusing uses like MIN(MAX(a,b),c) and
         MAX(MIN(a,b),c) and MIN(a,MAX(b,c)) appearing everywhere. We unify
         the 'clamping' with a single macro.
      Note that the behavior of this CLAMP macro is different from
      the combination `MAX(low,MIN(x,high))`.
      * This CLAMP macro expands to two comparisons instead of three from
        MAX and MIN combination. In theory, this makes the code slightly
        smaller, in case that (low) or (high) or both are computed at
        runtime, so that compilers cannot optimize them. (The third
        comparison will matter if (low)>(high); see below.)
      * CLAMP has a side effect, that if (low)>(high) it will produce weird
        results. Unlike MIN & MAX which will force either (low) or (high) to
        win. No assertion of ((low)<=(high)) is done in this macro, for now.
      
      This CLAMP macro is implemented like described in glib
      <http://developer.gnome.org/glib/stable/glib-Standard-Macros.html>
      and does not handle weird uses like CLAMP(a++, low++, high--) .
      6dae8108
  3. 23 Nov, 2015 1 commit
  4. 28 Aug, 2015 1 commit
  5. 25 Aug, 2015 1 commit
  6. 20 Aug, 2015 3 commits
  7. 23 Mar, 2015 2 commits
  8. 24 Nov, 2014 1 commit
  9. 20 Nov, 2014 1 commit
    • Hisham Muhammad's avatar
      Refactored key handlers. · 9faf4938
      Hisham Muhammad authored
      Made the logic more modular, hopefully easier to follow,
      and removed repeated code.
      Plus, some optimization in RichString code.
      9faf4938
  10. 27 Feb, 2014 1 commit
  11. 26 Feb, 2013 1 commit
  12. 10 Nov, 2012 1 commit
  13. 26 Dec, 2011 2 commits
  14. 03 Nov, 2011 1 commit
  15. 08 Sep, 2011 1 commit
  16. 22 Nov, 2010 1 commit
  17. 25 Feb, 2010 1 commit
  18. 08 Jun, 2009 1 commit
  19. 02 Jun, 2009 1 commit
  20. 11 Mar, 2009 1 commit
  21. 09 Mar, 2008 1 commit
  22. 09 Nov, 2007 1 commit
  23. 12 Jul, 2006 1 commit
  24. 06 Jun, 2006 1 commit
  25. 04 Mar, 2006 1 commit