1. 23 Feb, 2012 3 commits
  2. 22 Feb, 2012 4 commits
  3. 21 Feb, 2012 3 commits
  4. 20 Feb, 2012 5 commits
    • jean-pierre charras's avatar
      Fix 2 minor bugs: · 477e98dc
      jean-pierre charras authored
      * Pcbnew: in hight contrast mode the 'V' hotkey did not always refresh the screen.
      * Eeschema: incorrect print scale when the option 'Show page limits' is disable.
      477e98dc
    • Dick Hollenbeck's avatar
      update TODO.txt with personal items · aaa62cdd
      Dick Hollenbeck authored
      aaa62cdd
    • Dick Hollenbeck's avatar
      Miguel's changes · b6cae6fe
      Dick Hollenbeck authored
      b6cae6fe
    • Dick Hollenbeck's avatar
      * Remove virtual BOARD_ITEM::{Get,Set}Position() which in turn means all · c2fa1b88
      Dick Hollenbeck authored
          derived classes' implementations of these functions become non virtual and
          can be truly _inlined_ for speed!  All GetPosition() in derived classes were also
          changed to return const wxPoint&, that is, a reference rather than a
          full copy of the position wxPoint. There was no need for polymorphism in
          {Get,Set}Position() since we never call these functions via generic pointer.
        * Remove BOARD::{Get,Set}Position() since they were only there to satisfy
          the pure virtuals established in BOARD_ITEM, which are now gone.
        * Added const wxPoint& CPolyLine::GetPos(), made CPolyLine::Get{X,Y}() inline.
        * Derive CPolyPt from wxPoint so we can return "const wxPoint&" fromt
          CPolyLine::GetPos().
      c2fa1b88
    • Dick Hollenbeck's avatar
      see CHANGELOG.txt · 107ef8f1
      Dick Hollenbeck authored
      107ef8f1
  5. 19 Feb, 2012 5 commits
  6. 17 Feb, 2012 1 commit
  7. 16 Feb, 2012 2 commits
  8. 15 Feb, 2012 3 commits
  9. 13 Feb, 2012 1 commit
  10. 12 Feb, 2012 1 commit
  11. 11 Feb, 2012 2 commits
  12. 10 Feb, 2012 3 commits
  13. 09 Feb, 2012 2 commits
  14. 08 Feb, 2012 1 commit
  15. 07 Feb, 2012 1 commit
  16. 06 Feb, 2012 3 commits
    • Dick Hollenbeck's avatar
      typos · be57e57e
      Dick Hollenbeck authored
      be57e57e
    • jean-pierre charras's avatar
    • Dick Hollenbeck's avatar
      * move globals into BOARD: · 398607a6
      Dick Hollenbeck authored
          bool g_Zone_45_Only, is now in BOARD::m_zoneSettings.m_Zone_45_Only
          ZONE_SETTINGS g_Zone_Default_Setting is now in BOARD::m_zoneSettings
        * Changed classs ZONE_SETTING to class ZONE_SETTINGS.
        * Changed ZONE_SETTINGS::Import() to operator << ( ZONE_CONTAINER )
        * Added BOARD::{Get,Set}ZoneSettings().
        * Added PCB_BASE_FRAME::{Get,Set}ZoneSettings().
        * Save/load BOARD::m_zoneSettings.m_Zone_45_Only to/from BOARD file.
        * Removed PCB_EDIT_FRAME::InstallDialogNonCopperZonesEditor() in favor of
          ::InvokeNonCopperZonesEditor() declared in zones.h
        * Added ::InvokeCopperZonesEditor() declared in zones.h
        * Removed dialog_copper_zones.h since DIALOG class is now declared in *.cpp.
        * Renamed to enum ZONE_EDIT_T in zones.h
        * SetVisibleAlls() is not called as it was in two previous cases for several
          reasons.  BOARD_DESIGN_SETTINGS constructor controls what is visible initially.
          and in the near future so will the *.brd file.  I believe the user should
          have visibility setting rentention accross editing sessions of zones,
          fields, etc.
        * BOARD_DESIGN_SETTINGS constructor initializes hidden text as not visible.
        * Added PCB_EDIT_FRAME::SyncRenderStates() and PCB_LAYER_WIDGET::syncRenderStates()
          so the checkboxes can be set after loading a BOARD file containing previous
          visibility settings.
      398607a6