Skip to content
Snippets Groups Projects
  1. Jun 19, 2013
  2. Apr 05, 2013
    • jsiegle's avatar
      Run astyle to make code format more consistent · ea8c1c90
      jsiegle authored
      To run this in the future, install astyle (sudo apt-get install astyle),
      then enter the following from the top-level project directory:
      
      astyle --options=astyle.options --recursive "./Source/*.cpp" "./Source/*.h"
      
      This will convert tabs to 4 spaces and ensure that brackets are on
      their own lines.
      ea8c1c90
  3. Mar 21, 2013
    • jsiegle's avatar
      Change copyright year to 2013 · e36119a1
      jsiegle authored
      Use the following command to update the copyright year in all files,
      starting in the Source/ directory:
      
      find . -type f -print0 | xargs -0
         sed -i 's/Copyright (C) 2012/Copyright (C) 2013/g'
      
      Works like a charm!
      e36119a1
    • jsiegle's avatar
      Switch pointers to ScopedPointers · 34ccc510
      jsiegle authored
      The main UI components now use ScopedPointers for their children,
      alleviating the need to call "deleteAllChildren" or "deleteAndZero"
      in the destructor.
      34ccc510
  4. Oct 06, 2012
  5. Feb 19, 2012
  6. Feb 14, 2012
    • jsiegle's avatar
      FilterViewport can now be hidden · b5154bf5
      jsiegle authored
      - Added a FilterViewportButton class to the UIComponent file, which shows/hides
      the FilterViewport whenever it's clicked
      - Thus, the DataViewport can now fill up almost the entire window
      b5154bf5
  7. Feb 11, 2012
Loading