1. 18 Oct, 2012 1 commit
  2. 04 Oct, 2012 1 commit
  3. 11 Jul, 2012 1 commit
  4. 08 Jun, 2012 1 commit
  5. 27 May, 2012 1 commit
  6. 25 Apr, 2012 1 commit
  7. 19 Apr, 2012 1 commit
    • Dick Hollenbeck's avatar
      // Dick Hollenbeck's KiROUND R&D · c24863c0
      Dick Hollenbeck authored
      // This provides better project control over rounding to int from double
      // than wxRound() did.  This scheme provides better logging in Debug builds
      // and it provides for compile time calculation of constants.
      
      
      #include <stdio.h>
      #include <assert.h>
      #include <limits.h>
      
      //-----<KiROUND KIT>------------------------------------------------------------
      
      /**
       * KiROUND
       * rounds a floating point number to an int using
       * "round halfway cases away from zero".
       * In Debug build an assert fires if will not fit into an int.
       */
      
      #if defined( DEBUG )
      
      // DEBUG: a macro to capture line and file, then calls this inline
      
      static inline int KiRound( double v, int line, const char* filename )
      {
          v = v < 0 ? v - 0.5 : v + 0.5;
          if( v > INT_MAX + 0.5 )
          {
              printf( "%s: in file %s on line %d, val: %.16g too ' > 0 ' for int\n", __FUNCTION__, filename, line, v );
          }
          else if( v < INT_MIN - 0.5 )
          {
              printf( "%s: in file %s on line %d, val: %.16g too ' < 0 ' for int\n", __FUNCTION__, filename, line, v );
          }
          return int( v );
      }
      
      #define KiROUND( v )    KiRound( v, __LINE__, __FILE__ )
      
      #else
      
      // RELEASE: a macro so compile can pre-compute constants.
      
      #define KiROUND( v )  int( (v) < 0 ? (v) - 0.5 : (v) + 0.5 )
      
      #endif
      
      
      //-----</KiROUND KIT>-----------------------------------------------------------
      
      // Only a macro is compile time calculated, an inline function causes a static constructor
      // in a situation like this.
      // Therefore the Release build is best done with a MACRO not an inline function.
      int Computed = KiROUND( 14.3 * 8 );
      
      
      int main( int argc, char** argv )
      {
          for( double d = double(INT_MAX)-1;  d < double(INT_MAX)+8;  d += 2.0 )
          {
              int i = KiROUND( d );
      
              printf( "t: %d  %.16g\n", i, d );
          }
      
          return 0;
      }
      c24863c0
  8. 16 Apr, 2012 1 commit
    • Wayne Stambaugh's avatar
      Removal of internal units. · bf5802f1
      Wayne Stambaugh authored
      * Remove internal units from BASE_SCREEN and it's derivatives.
      * Remove internal units from EDA_DRAW_FRAME and it's derivatives.
      * Use build time code to replace internal units conversions.
      * Fix scaling bug in page layout sample window that I created in my
        last commit.
      bf5802f1
  9. 05 Apr, 2012 1 commit
  10. 02 Apr, 2012 1 commit
    • jean-pierre charras's avatar
      pcb_calculator: enhancement in Regulators page dialog: · 7ce97878
      jean-pierre charras authored
      * support for 3 terminal regulators
      * add a data file management to store parameters for regulators ( name, vref value, Iadj value, type)
      Needs some refinements, but it is already very useable.
      
       Commit dialog page setting patch from Alexander Zakamaldin
      7ce97878
  11. 27 Mar, 2012 1 commit
    • jean-pierre charras's avatar
      Fix issues about translations: · e356e6dc
      jean-pierre charras authored
      Eeschema: one string with a bad char (\a, not useable in internationalized strings).
      Dialog_page_settings: use not translated strings in code, so strings can be freely translated for the UI.
      (Initial code was not working with existing translations)
      Update 2 icons.
      e356e6dc
  12. 26 Mar, 2012 1 commit
  13. 08 Mar, 2012 1 commit
  14. 19 Feb, 2012 1 commit
  15. 23 Jan, 2012 2 commits
  16. 22 Jan, 2012 1 commit
  17. 17 Jan, 2012 1 commit
  18. 16 Jan, 2012 3 commits
  19. 15 Jan, 2012 1 commit
  20. 09 Jan, 2012 1 commit
  21. 05 Jan, 2012 1 commit
  22. 31 Dec, 2011 1 commit
  23. 29 Dec, 2011 1 commit
  24. 22 Dec, 2011 2 commits
  25. 30 Sep, 2011 1 commit
    • Wayne Stambaugh's avatar
      Application name capitalization fixes. · 4b853ded
      Wayne Stambaugh authored
      * Correct all user strings and comments for the correct capitalization of
        application names according to JP.  They are KiCad, Pcbnew, CvPcb,
        Eeschema, and GerbView.
      * Add a note the the user interface policy about the correct capitalization.
      4b853ded
  26. 29 Sep, 2011 1 commit
    • Wayne Stambaugh's avatar
      Minor PCBNew code fixes. · c09bc26d
      Wayne Stambaugh authored
      * Translate French code names and comments.
      * Dead code removal.
      * Hot key object and structure coding style policy fixes.
      * Doxygen comment warning fixes.
      c09bc26d
  27. 04 Sep, 2011 1 commit
  28. 02 Sep, 2011 1 commit
  29. 31 Aug, 2011 1 commit
  30. 26 Jun, 2011 1 commit
  31. 14 Mar, 2011 2 commits
    • Wayne Stambaugh's avatar
      Dialog escape key termination and default button fixes. · fe6890a9
      Wayne Stambaugh authored
      * Fix about dialog escape key termination bug.
      * Fix edit hot keys dialog escape key termination bug.
      * Set schematic editor component properties dialog default button.
      * Fix schematic editor plot DXF dialog escape key termination bug.
      * Set PCB editor layers setup dialog default button.
      * Set PCB editor swap layers dialog default button.
      * Set PCB editor net list dialog default button.
      * Add comment to UIPolicy.txt about escape key termination requiring proper
        dialog button IDs.
      fe6890a9
    • Wayne Stambaugh's avatar
      Set default button on all dialogs. Fixes lp:665703 · 283cfa67
      Wayne Stambaugh authored
      * Set default button on all dialogs that do not already have a defined
        default button.  The only exception is the EESchema net list dialog
        which needs converted over to wxFormBuilder and due to it's design makes
        setting the default button in any tab other than the default tab
        problematic.
      * Fix escape key dialog handling bug in EESchema print post script
        dialog.
      283cfa67
  32. 21 Feb, 2011 1 commit
    • Wayne Stambaugh's avatar
      Use wxUpdateUIEvent in CVPcb and other minor changes. · c02d90e9
      Wayne Stambaugh authored
      * CVPcb now uses wxUpdateUIEvent instead of set toolbars.
      * Removed duplicate event handlers in CVPcb that were factored into
        EDA_DRAW_FRAME.
      * Fix definition of GeneralControle() in CVPcb that prevented it from being
        called.
      * Remove rarely used and scary refresh code GeneralControle() method in all
        main frame windows.
      * Factor zoom menu and tool bar command IDs down to EDA_DRAW_FRAME.
      c02d90e9
  33. 15 Feb, 2011 1 commit
  34. 05 Feb, 2011 1 commit
    • Wayne Stambaugh's avatar
      EESchema improvements and other minor fixes. · 0d8cb9b5
      Wayne Stambaugh authored
      * Remove base screen methods from draw frame object and correct current
        screen methods in derived objects.
      * Move restore old wires function code into schematic screen object.
      * Make add junction method use current screen position instead of store
        position.
      * Move poly line ghosting function into the delete current segment method
        as that was the only place is was being used.
      * Add method to base schematic object of testing if object has a label
        that can be incremented.
      * Simplified the schematic hierarchy traversing code.
      * PCBNew Doxygen warning fixes.
      0d8cb9b5
  35. 23 Jan, 2011 1 commit