Commit 8d567953 authored by Wayne Stambaugh's avatar Wayne Stambaugh
Browse files

More schematic component object encapsulation and Doxygen comment warning fixes.

parent 7cb34aec
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -5,6 +5,7 @@ eeschema/cmp_library_lexer.h
eeschema/cmp_library_keywords.*
eeschema/cmp_library_keywords.*
eeschema/template_fieldnames_keywords.*
eeschema/template_fieldnames_keywords.*
eeschema/template_fieldnames_lexer.h
eeschema/template_fieldnames_lexer.h
new/html
pcbnew/dialogs/dialog_freeroute_exchange_help_html.h
pcbnew/dialogs/dialog_freeroute_exchange_help_html.h
Makefile
Makefile
CMakeFiles
CMakeFiles
+9 −0
Original line number Original line Diff line number Diff line
@@ -4,6 +4,15 @@ KiCad ChangeLog 2010
Please add newer entries at the top, list the date and your name with
Please add newer entries at the top, list the date and your name with
email address.
email address.


2010-dec-13 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
  * Remove deprecated options and quoted project name option in Doxygen file.
  * Make Bazaar ignore the files generated by Doxygen in the new folder.
++EESchema
  * More schematic component encapsulation work.
  * Doxygen comment fixes.


2010-Dec-13 UPDATE Dick Hollenbeck <dick@softplc.com>
2010-Dec-13 UPDATE Dick Hollenbeck <dick@softplc.com>
================================================================================
================================================================================
++eeschema:
++eeschema:
+1 −3
Original line number Original line Diff line number Diff line
@@ -4,7 +4,7 @@
# Project related configuration options
# Project related configuration options
#---------------------------------------------------------------------------
#---------------------------------------------------------------------------
DOXYFILE_ENCODING      = UTF-8
DOXYFILE_ENCODING      = UTF-8
PROJECT_NAME           = KiCad PCB EDA Suite
PROJECT_NAME           = "KiCad PCB EDA Suite"
PROJECT_NUMBER         =
PROJECT_NUMBER         =
OUTPUT_DIRECTORY       = Documentation/doxygen
OUTPUT_DIRECTORY       = Documentation/doxygen
CREATE_SUBDIRS         = NO
CREATE_SUBDIRS         = NO
@@ -21,13 +21,11 @@ SHORT_NAMES = NO
JAVADOC_AUTOBRIEF      = YES
JAVADOC_AUTOBRIEF      = YES
QT_AUTOBRIEF           = NO
QT_AUTOBRIEF           = NO
MULTILINE_CPP_IS_BRIEF = NO
MULTILINE_CPP_IS_BRIEF = NO
DETAILS_AT_TOP         = YES
INHERIT_DOCS           = YES
INHERIT_DOCS           = YES
SEPARATE_MEMBER_PAGES  = NO
SEPARATE_MEMBER_PAGES  = NO
TAB_SIZE               = 4
TAB_SIZE               = 4
ALIASES                =
ALIASES                =
OPTIMIZE_OUTPUT_FOR_C  = NO
OPTIMIZE_OUTPUT_FOR_C  = NO
OPTIMIZE_OUTPUT_FOR_CPP = YES
OPTIMIZE_OUTPUT_JAVA   = NO
OPTIMIZE_OUTPUT_JAVA   = NO
BUILTIN_STL_SUPPORT    = NO
BUILTIN_STL_SUPPORT    = NO
CPP_CLI_SUPPORT        = NO
CPP_CLI_SUPPORT        = NO
+1 −1
Original line number Original line Diff line number Diff line
@@ -883,7 +883,7 @@ static LIB_PIN* GetNextPinPosition( SCH_COMPONENT* aDrawLibItem,
        Multi       = aDrawLibItem->GetUnit();
        Multi       = aDrawLibItem->GetUnit();
        convert     = aDrawLibItem->GetConvert();
        convert     = aDrawLibItem->GetConvert();
        CmpPosition = aDrawLibItem->m_Pos;
        CmpPosition = aDrawLibItem->m_Pos;
        transform   = aDrawLibItem->m_Transform;
        transform   = aDrawLibItem->GetTransform();
    }
    }
    else
    else
        Pin = Entry->GetNextPin( Pin );
        Pin = Entry->GetNextPin( Pin );
+1 −1
Original line number Original line Diff line number Diff line
@@ -76,7 +76,7 @@ LIB_PIN* SCH_EDIT_FRAME::LocatePinEnd( SCH_ITEM* DrawList, const wxPoint& pos )
                                // and in schematic Y axis is top to bottom
                                // and in schematic Y axis is top to bottom


    else                        // calculate the pin position in schematic
    else                        // calculate the pin position in schematic
        pinpos = DrawLibItem->m_Transform.TransformCoordinate( pinpos ) + DrawLibItem->m_Pos;
        pinpos = DrawLibItem->GetTransform().TransformCoordinate( pinpos ) + DrawLibItem->m_Pos;


    if( pos == pinpos )
    if( pos == pinpos )
        return Pin;
        return Pin;
Loading