Fix a few doxygen warnings
This commit is contained in:
parent
70226ecdeb
commit
e5137f4eb4
|
@ -281,8 +281,8 @@ bool BOM_TABLE_GROUP::SetFieldValue( unsigned int aFieldId, const wxString aValu
|
|||
* - Tests each field in turn; all fields must match
|
||||
* - Some fields require special checking
|
||||
*
|
||||
* @aFieldId - The ID of the field
|
||||
* @aCmp - The component being tested
|
||||
* @param aField - The field to test
|
||||
* @param aComponent - The component being tested
|
||||
*/
|
||||
bool BOM_TABLE_GROUP::TestField( BOM_COLUMN* aField, BOM_TABLE_COMPONENT* aComponent ) const
|
||||
{
|
||||
|
@ -413,7 +413,7 @@ bool BOM_TABLE_GROUP::HasValueChanged( BOM_COLUMN* aField ) const
|
|||
* Return a list of (ordered) references
|
||||
* for all the components in this group
|
||||
*
|
||||
* @aSort - Sort the references
|
||||
* @param aSort - Sort the references
|
||||
*/
|
||||
wxArrayString BOM_TABLE_GROUP::GetReferences( bool aSort ) const
|
||||
{
|
||||
|
|
|
@ -172,9 +172,9 @@ public:
|
|||
* Add the given list of components by alias. To be called in the setup
|
||||
* phase.
|
||||
*
|
||||
* @param aNodeName the parent node the components will appear under
|
||||
* @param aAliasNameList list of aliases
|
||||
* @param aOptionalLib library to look up names in (null = global)
|
||||
* @param aNodeName the parent node the components will appear under
|
||||
* @param aAliasList list of aliases
|
||||
* @param aOptionalLib library to look up names in (null = global)
|
||||
*/
|
||||
void AddAliasList(
|
||||
wxString const& aNodeName,
|
||||
|
@ -323,7 +323,7 @@ private:
|
|||
* Compute the width required for the given column of a node and its
|
||||
* children.
|
||||
*
|
||||
* @param aNode - root node of the tree
|
||||
* @param aTree - root node of the tree
|
||||
* @param aCol - column number
|
||||
* @param aHeading - heading text, to set the minimum width
|
||||
*/
|
||||
|
|
|
@ -56,7 +56,7 @@ public:
|
|||
|
||||
/**
|
||||
* Function AppendToList
|
||||
* @param aItem The SCH_MARKER* to add to the current list which will be
|
||||
* @param aMarker is the SCH_MARKER* to add to the current list which will be
|
||||
* later displayed in the wxHtmlWindow
|
||||
*/
|
||||
void AppendToList( SCH_MARKER* aMarker )
|
||||
|
|
|
@ -141,6 +141,12 @@ static bool insert_library( PROJECT *aProject, PART_LIB *aLibrary, size_t aIndex
|
|||
}
|
||||
|
||||
|
||||
// Helper sort function, used in get_components, to sort a component list by lib_id
|
||||
static bool sort_by_libid( const SCH_COMPONENT* ref, SCH_COMPONENT* cmp )
|
||||
{
|
||||
return ref->GetLibId() < cmp->GetLibId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Function get_components
|
||||
* Fills a vector with all of the project's components, to ease iterating over them.
|
||||
|
@ -150,12 +156,6 @@ static bool insert_library( PROJECT *aProject, PART_LIB *aLibrary, size_t aIndex
|
|||
*
|
||||
* @param aComponents - a vector that will take the components
|
||||
*/
|
||||
// Helper sort function, used in get_components, to sort a component list by lib_id
|
||||
static bool sort_by_libid( const SCH_COMPONENT* ref, SCH_COMPONENT* cmp )
|
||||
{
|
||||
return ref->GetLibId() < cmp->GetLibId();
|
||||
}
|
||||
|
||||
static void get_components( std::vector<SCH_COMPONENT*>& aComponents )
|
||||
{
|
||||
SCH_SCREENS screens;
|
||||
|
|
|
@ -299,8 +299,11 @@ public:
|
|||
SCH_FIELD* GetField( int aFieldNdx ) const;
|
||||
|
||||
/**
|
||||
* Returns text associated with a given field (if such a field exists)
|
||||
* @aFieldName is the name of the field
|
||||
* Search for a field named aFieldName and returns text associated with this field
|
||||
* (if such a field exists)
|
||||
* @param aFieldName is the name of the field
|
||||
* @param aIncludeDefaultFields = true (default) to include default fields in search
|
||||
* (default fields are the mandatory fields ref, value, fooprint and doc)
|
||||
*/
|
||||
wxString GetFieldText( wxString aFieldName, bool aIncludeDefaultFields = true ) const;
|
||||
|
||||
|
|
|
@ -142,7 +142,7 @@ public:
|
|||
*
|
||||
* @param aFileName is the name of a file to save to on disk.
|
||||
*
|
||||
* @param aSchematic is the #SCH_SCREN document (data tree) to save or export to disk.
|
||||
* @param aSchematic is the #SCH_SCREEN document (data tree) to save or export to disk.
|
||||
*
|
||||
* @param aKiway is the #KIWAY object used to access the component libraries loaded
|
||||
* by the project.
|
||||
|
|
|
@ -206,7 +206,7 @@ public:
|
|||
*
|
||||
* @throw IO_ERROR if there is a problem finding the footprint or the library, or deleting it.
|
||||
*/
|
||||
void DeleteSymbol( const wxString& aNickname, const wxString& aSymboltName );
|
||||
void DeleteSymbol( const wxString& aNickname, const wxString& aSymbolName );
|
||||
|
||||
/**
|
||||
* Function DeleteAlias
|
||||
|
|
|
@ -71,7 +71,7 @@ public:
|
|||
};
|
||||
|
||||
/**
|
||||
* @param the client to pass the results onto
|
||||
* @param aClient is the client to pass the results onto
|
||||
*/
|
||||
POLYGON_GEOM_MANAGER( CLIENT& aClient );
|
||||
|
||||
|
|
|
@ -57,8 +57,8 @@ public:
|
|||
/**
|
||||
* Set the polygon points
|
||||
*
|
||||
* @param locked in points - the "fixed point" of the outline
|
||||
* @param leader line points - the lines from the last fixed point to
|
||||
* @param aLockedInPts - the "fixed points" of the outline
|
||||
* @param aLeaderPts - the lines from the last fixed point to
|
||||
* another point, eg the cursor.
|
||||
*/
|
||||
void SetPoints( const std::vector<VECTOR2I>& aLockedInPts,
|
||||
|
|
|
@ -136,8 +136,8 @@ public:
|
|||
* @param aItem: the item to update.
|
||||
* @param aUpdateFlags: how much the object has changed.
|
||||
*/
|
||||
void Update( VIEW_ITEM* aItem );
|
||||
void Update( VIEW_ITEM* aItem, int aUpdateFlags );
|
||||
void Update( VIEW_ITEM* aItem );
|
||||
|
||||
/**
|
||||
* Function SetRequired()
|
||||
|
|
|
@ -247,7 +247,7 @@ public:
|
|||
/**
|
||||
* Function EnableCursorWarping()
|
||||
* Enables or disables warping the cursor.
|
||||
* @param aEnabled is true if the cursor is allowed to be warped.
|
||||
* @param aEnable is true if the cursor is allowed to be warped.
|
||||
*/
|
||||
void EnableCursorWarping( bool aEnable )
|
||||
{
|
||||
|
@ -256,7 +256,7 @@ public:
|
|||
|
||||
/**
|
||||
* Function IsCursorWarpingEnabled()
|
||||
* Returns the current setting for cursor warping.
|
||||
* @return the current setting for cursor warping.
|
||||
*/
|
||||
bool IsCursorWarpingEnabled() const
|
||||
{
|
||||
|
@ -266,7 +266,7 @@ public:
|
|||
/**
|
||||
* Function EnableMousewheelPan()
|
||||
* Enables or disables mousewheel panning.
|
||||
* @param aEnabled is true if mouse-wheel panning is enabled.
|
||||
* @param aEnable is true if mouse-wheel panning is enabled.
|
||||
*/
|
||||
virtual void EnableMousewheelPan( bool aEnable )
|
||||
{
|
||||
|
@ -275,7 +275,7 @@ public:
|
|||
|
||||
/**
|
||||
* Function IsMousewheelPanEnabled()
|
||||
* Returns the current setting for mousewheel panning
|
||||
* @return the current setting for mousewheel panning
|
||||
*/
|
||||
virtual bool IsMousewheelPanEnabled() const
|
||||
{
|
||||
|
|
|
@ -93,7 +93,7 @@ public:
|
|||
* Draws all the stored items in the group on the given layer.
|
||||
*
|
||||
* @param aLayer is the layer which should be drawn.
|
||||
* @param aGal is the GAL that should be used for drawing.
|
||||
* @param aView is the VIEW that should be used for drawing.
|
||||
*/
|
||||
virtual void ViewDraw( int aLayer, VIEW* aView ) const override;
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ public:
|
|||
* for quick hacks and debugging purposes.
|
||||
*
|
||||
* @param aLayer: current drawing layer
|
||||
* @param aGal: pointer to the GAL device we are drawing on
|
||||
* @param aView: pointer to the VIEW device we are drawing on
|
||||
*/
|
||||
virtual void ViewDraw( int aLayer, VIEW* aView ) const
|
||||
{}
|
||||
|
|
|
@ -70,13 +70,6 @@ public:
|
|||
*/
|
||||
void SetGrabMouse( bool aEnabled ) override;
|
||||
|
||||
/**
|
||||
* Function SetAutoPan()
|
||||
* Enables/disables autopanning (panning when mouse cursor reaches the panel border).
|
||||
*
|
||||
* @param aEnabled says whether the option should enabled or disabled.
|
||||
*/
|
||||
|
||||
/// @copydoc VIEW_CONTROLS::GetMousePosition()
|
||||
VECTOR2D GetMousePosition( bool aWorldCoordinates = true ) const override;
|
||||
|
||||
|
|
Loading…
Reference in New Issue