[tuhopuu-cvs] CVS commit: tuhopuu3/source/blender/include BIF_resources.h butspace.h tuhopuu3/source/blender/makesdna DNA_userdef_types.h tuhopuu3/source/blender/python/api2_2x windowTheme.c tuhopuu3/source/blender/src buttons_object.c drawobject.c editobject.c interface.c interface_draw.c resources.c ...

Matt Ebb matt at mke3.net
Tue Jan 4 07:01:29 CET 2005


broken (Matt Ebb) 2005/01/04 07:01:29 CET

  Modified files:
    tuhopuu3/source/blender/include BIF_resources.h butspace.h 
    tuhopuu3/source/blender/makesdna DNA_userdef_types.h 
    tuhopuu3/source/blender/python/api2_2x windowTheme.c 
    tuhopuu3/source/blender/src buttons_object.c drawobject.c 
                                editobject.c interface.c 
                                interface_draw.c resources.c 
                                space.c usiblender.c 
  
  Log:
  Fun and games! Hope this goes ok. :)
  
  This commit is the first of a much larger work in progress. Don't
  expect things to be perfect and complete, but constructive feedback
  on how to *make* things perfect and complete can be nice.
  Note: This is not all my work. More info about the project in
  general here:
  http://wiki.blender.org/bin/view.pl/Blenderdev/ButtonsInformationArchitecture
  
  * New default button and colour theme. Info here:
  http://wiki.blender.org/bin/view.pl/Blenderdev/235UIControlsDesign
  
  Not much has been written about colours so far, so a few notes:
   - The looks-like-a-dogs-breakfast colours are gone
     the buttons. The new UI controls are sufficiently different
     from each other in appearance and shade to make the colours
     unnecessary. Less visual distraction now, easier to concentrate
     on the work itself.
   - Selection colours have been consistentified to shades of orange.
     This creates a stronger and clearer visual language - much
     easier to see the state of the app at a glance, in whatever
     window space.
  Stodgy conservatives ;) can load up the old 2.36 default with this
  script: http://mke3.net/blender/etc/236_default_theme.py
  
  * Added a theme colour for lamps in the 3D View
  
  * New Object Buttons layout, info here:
  http://wiki.blender.org/bin/view.pl/Blenderdev/ObjectIA
  http://wiki.blender.org/bin/view.pl/Blenderdev/ObjectButtonsDP
  
  The 'Transform' panel is a bit experimental, though it makes sense
  and adheres more strictly to the unwritten idea that floating
  panels should be for data relevant to the window space itself, not
  the objects represented in it. It also provides a more logical
  place for the "Center *' buttons, pre-empting new edit buttons.
  
  Revision  Changes    Path
  1.2       +2 -1      tuhopuu3/source/blender/include/BIF_resources.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/include/BIF_resources.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +6 -1      tuhopuu3/source/blender/include/butspace.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/include/butspace.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +3 -2      tuhopuu3/source/blender/makesdna/DNA_userdef_types.h
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/makesdna/DNA_userdef_types.h.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +5 -3      tuhopuu3/source/blender/python/api2_2x/windowTheme.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/python/api2_2x/windowTheme.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +530 -242  tuhopuu3/source/blender/src/buttons_object.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/buttons_object.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.6       +4 -2      tuhopuu3/source/blender/src/drawobject.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/drawobject.c.diff?r1=1.5&r2=1.6&cvsroot=tuhopuu>
  1.4       +4 -5      tuhopuu3/source/blender/src/editobject.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/editobject.c.diff?r1=1.3&r2=1.4&cvsroot=tuhopuu>
  1.2       +12 -7     tuhopuu3/source/blender/src/interface.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/interface.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +834 -162  tuhopuu3/source/blender/src/interface_draw.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/interface_draw.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.2       +50 -44    tuhopuu3/source/blender/src/resources.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/resources.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>
  1.10      +24 -13    tuhopuu3/source/blender/src/space.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/space.c.diff?r1=1.9&r2=1.10&cvsroot=tuhopuu>
  1.2       +20 -4     tuhopuu3/source/blender/src/usiblender.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/usiblender.c.diff?r1=1.1&r2=1.2&cvsroot=tuhopuu>



More information about the tuhopuu-cvs mailing list