projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Applied patch [ 1407318 ] bitmap clipping / transparency mask (X11 port)
[wxWidgets.git]
/
utils
/
HelpGen
/
src
/
srcparser.h
diff --git
a/utils/HelpGen/src/srcparser.h
b/utils/HelpGen/src/srcparser.h
index 9eb017aafb9f4fa3940699c144291110cd7300ac..fda07320e0933edab9a4335522a7f1b574a652d0 100644
(file)
--- a/
utils/HelpGen/src/srcparser.h
+++ b/
utils/HelpGen/src/srcparser.h
@@
-8,7
+8,7
@@
// Created: 22/09/98
// RCS-ID: $Id$
// Copyright: (c) Aleskandars Gluchovas
// Created: 22/09/98
// RCS-ID: $Id$
// Copyright: (c) Aleskandars Gluchovas
-// Licence:
wxWindows licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef __SRCPARSER_G__
/////////////////////////////////////////////////////////////////////////////
#ifndef __SRCPARSER_G__
@@
-30,10
+30,6
@@
#include "wx/string.h"
#include "wxstlvec.h"
#include "wx/string.h"
#include "wxstlvec.h"
- // FOR NOW:: quick n' dirty:
-
- #define string wxString
-
#endif
#include "markup.h" // markup tags used in spOperator::GetFullName()
#endif
#include "markup.h" // markup tags used in spOperator::GetFullName()
@@
-129,8
+125,8
@@
class spComment;
typedef vector<spComment*> MCommentListT;
// list of parameters
typedef vector<spParameter*> MParamListT;
typedef vector<spComment*> MCommentListT;
// list of parameters
typedef vector<spParameter*> MParamListT;
- //
s
tring list
- typedef vector<
string>
StrListT;
+ //
wxS
tring list
+ typedef vector<
wxString>
StrListT;
#else
#else
@@
-140,9
+136,9
@@
class spComment;
typedef WXSTL_VECTOR_SHALLOW_COPY(spContextPtrT) MMemberListT;
typedef WXSTL_VECTOR_SHALLOW_COPY(spCommentPtrT) MCommentListT;
typedef WXSTL_VECTOR_SHALLOW_COPY(spParameterPtrT) MParamListT;
typedef WXSTL_VECTOR_SHALLOW_COPY(spContextPtrT) MMemberListT;
typedef WXSTL_VECTOR_SHALLOW_COPY(spCommentPtrT) MCommentListT;
typedef WXSTL_VECTOR_SHALLOW_COPY(spParameterPtrT) MParamListT;
- typedef WXSTL_VECTOR_SHALLOW_COPY(
string)
StrListT;
+ typedef WXSTL_VECTOR_SHALLOW_COPY(
wxString)
StrListT;
-#endif
;
+#endif
// base class for all visitors of source code contents
class spVisitor
// base class for all visitors of source code contents
class spVisitor
@@
-163,7
+159,7
@@
public:
// spClass on sorting the class members
void VisitAll( spContext& atContext,
// spClass on sorting the class members
void VisitAll( spContext& atContext,
- bool sortContent =
TRUE
+ bool sortContent =
true
);
// methods invoked by visitor
);
// methods invoked by visitor
@@
-202,25
+198,25
@@
public:
// multiple times by variouse visitors (there can
// be more the one visitor visiting content at a time)
// multiple times by variouse visitors (there can
// be more the one visitor visiting content at a time)
- virtual void VisitFile( spFile&
fl
) {}
+ virtual void VisitFile( spFile&
WXUNUSED(fl)
) {}
- virtual void VisitNameSpace( spNameSpace&
ns
) {}
+ virtual void VisitNameSpace( spNameSpace&
WXUNUSED(ns)
) {}
- virtual void VisitClass( spClass&
cl
) {}
+ virtual void VisitClass( spClass&
WXUNUSED(cl)
) {}
- virtual void VisitEnumeration( spEnumeration&
en
) {}
+ virtual void VisitEnumeration( spEnumeration&
WXUNUSED(en)
) {}
- virtual void VisitTypeDef( spTypeDef&
td
) {}
+ virtual void VisitTypeDef( spTypeDef&
WXUNUSED(td)
) {}
- virtual void VisitPreprocessorLine( spPreprocessorLine&
pd
) {}
+ virtual void VisitPreprocessorLine( spPreprocessorLine&
WXUNUSED(pd)
) {}
- virtual void VisitAttribute( spAttribute&
attr
) {}
+ virtual void VisitAttribute( spAttribute&
WXUNUSED(attr)
) {}
- virtual void VisitOperation( spOperation&
op
) {}
+ virtual void VisitOperation( spOperation&
WXUNUSED(op)
) {}
- virtual void VisitParameter( spParameter&
param
) {}
+ virtual void VisitParameter( spParameter&
WXUNUSED(param)
) {}
- virtual void VisitCustomContext( spContext&
ctx
) {}
+ virtual void VisitCustomContext( spContext&
WXUNUSED(ctx)
) {}
};
// stores one section of comments,
};
// stores one section of comments,
@@
-230,23
+226,23
@@
public:
class spComment
{
public:
class spComment
{
public:
-
string m
Text;
- bool mIsMultiline; // multiline comments ar those with /**/'s
+
wxString m_
Text;
+ bool
mIsMultiline; // multiline comments ar those with /**/'s
- //
TRUE
, if these was an empty empty
+ //
true
, if these was an empty empty
// line above single line comment
// line above single line comment
- bool mStartsPar;
+ bool
mStartsPar;
public:
public:
- bool IsMultiline() const;
- bool StartsParagraph() const;
+ bool
IsMultiline() const;
+ bool
StartsParagraph() const;
-
s
tring& GetText();
+
wxS
tring& GetText();
// contstant version of GetText()
// contstant version of GetText()
-
s
tring GetText() const;
+
wxS
tring GetText() const;
};
// abstract base class for common (to most languages) code
};
// abstract base class for common (to most languages) code
@@
-263,7
+259,7
@@
protected:
MMemberListT mMembers;
// NULL, if this is top-most context
MMemberListT mMembers;
// NULL, if this is top-most context
- spContext* mpParent;
+ spContext* m
_
pParent;
// points to context object, where the this context
// was originally declared, meaning that this object
// points to context object, where the this context
// was originally declared, meaning that this object
@@
-308,15
+304,15
@@
public:
// see SRC_VISIBLITY_TYPES enumeration
int mVisibility;
// see SRC_VISIBLITY_TYPES enumeration
int mVisibility;
- //
TRUE
, if context does not really exist in the source
+ //
true
, if context does not really exist in the source
// but was created by external tools (e.g. forward engineering)
bool mIsVirtualContext;
bool mVirtualContextHasChildren;
// but was created by external tools (e.g. forward engineering)
bool mIsVirtualContext;
bool mVirtualContextHasChildren;
- // body of the context in case (mIsVirtual ==
TRUE
)
-
string
mVirtualContextBody;
-
string
mVittualContextFooter;
+ // body of the context in case (mIsVirtual ==
true
)
+
wxString
mVirtualContextBody;
+
wxString
mVittualContextFooter;
// e.g. can be used by documentation generator to store
// reference to section object
// e.g. can be used by documentation generator to store
// reference to section object
@@
-324,7
+320,7
@@
public:
public:
// universal identifier of the context (e.g. class name)
public:
// universal identifier of the context (e.g. class name)
-
string m
Name;
+
wxString m_
Name;
public:
// default constructor
public:
// default constructor
@@
-356,21
+352,21
@@
public:
bool VitualContextHasChildren();
bool VitualContextHasChildren();
- void SetVirtualContextBody( const
s
tring& body,
- bool hasChildren =
FALSE
,
- const
string& footer = ""
);
+ void SetVirtualContextBody( const
wxS
tring& body,
+ bool hasChildren =
false
,
+ const
wxString& footer = wxEmptyString
);
-
s
tring GetVirtualContextBody();
-
s
tring GetFooterOfVirtualContextBody();
+
wxS
tring GetVirtualContextBody();
+
wxS
tring GetFooterOfVirtualContextBody();
// can be overriden by top-level context classes
// to find-out ot the source-fragment of this
// context using it's position information
// can be overriden by top-level context classes
// to find-out ot the source-fragment of this
// context using it's position information
- virtual
s
tring GetBody( spContext* pCtx = NULL );
+ virtual
wxS
tring GetBody( spContext* pCtx = NULL );
- virtual
s
tring GetHeader( spContext* pCtx = NULL );
+ virtual
wxS
tring GetHeader( spContext* pCtx = NULL );
- //
TRUE
, if there is at least one entry
+ //
true
, if there is at least one entry
// in the comment list of this context
bool HasComments();
MCommentListT& GetCommentList() { return mComments; }
// in the comment list of this context
bool HasComments();
MCommentListT& GetCommentList() { return mComments; }
@@
-381,7
+377,7
@@
public:
virtual void SortMembers() {}
// returns identifier of this context
virtual void SortMembers() {}
// returns identifier of this context
- inline
string& GetName() { return m
Name; }
+ inline
wxString& GetName() { return m_
Name; }
// returns -1, if souce line # is unknow
inline int GetSourceLineNo() { return mSrcLineNo; }
// returns -1, if souce line # is unknow
inline int GetSourceLineNo() { return mSrcLineNo; }
@@
-395,7
+391,7
@@
public:
spContext* GetOutterContext();
// perhaps more intuitive alias for `GetOutterContext()'
spContext* GetOutterContext();
// perhaps more intuitive alias for `GetOutterContext()'
- inline spContext* GetParent() { return mpParent; }
+ inline spContext* GetParent() { return m
_
pParent; }
bool HasOutterContext();
bool HasOutterContext();
@@
-410,11
+406,11
@@
public:
// returns NULL, if the context with the given
// name and type is not contained by this context
// and it's children. Children's children are not
// returns NULL, if the context with the given
// name and type is not contained by this context
// and it's children. Children's children are not
- // searched recursivelly if searchSubMembers is
FALSE
+ // searched recursivelly if searchSubMembers is
false
- spContext* FindContext( const
s
tring& identifier,
+ spContext* FindContext( const
wxS
tring& identifier,
int contextType = SP_CTX_ANY,
int contextType = SP_CTX_ANY,
- bool searchSubMembers =
TRUE
+ bool searchSubMembers =
true
);
// removes this context from it's parent
);
// removes this context from it's parent
@@
-423,19
+419,19
@@
public:
// will result assertion failure)
void RemoveThisContext();
// will result assertion failure)
void RemoveThisContext();
- // returns
TRUE
, if this object is aggregated in the file
+ // returns
true
, if this object is aggregated in the file
bool IsInFile();
bool IsInFile();
- //
TRUE
, if outter context is a namespace
+ //
true
, if outter context is a namespace
bool IsInNameSpace();
bool IsInNameSpace();
- //
TRUE
, if outter context is a class
+ //
true
, if outter context is a class
bool IsInClass();
bool IsInClass();
- //
TRUE, if outter cotext is an operation (TRUE
for "spParameter"s)
+ //
true, if outter cotext is an operation (true
for "spParameter"s)
bool IsInOperation();
bool IsInOperation();
- //
TRUE
if the context is public
+ //
true
if the context is public
bool IsPublic() const { return mVisibility == SP_VIS_PUBLIC; }
// NOTE:: method returns not the type of this object
bool IsPublic() const { return mVisibility == SP_VIS_PUBLIC; }
// NOTE:: method returns not the type of this object
@@
-497,10
+493,10
@@
class spParameter : public spContext
{
public:
// type of argument (parameter)
{
public:
// type of argument (parameter)
-
string m
Type;
+
wxString m_
Type;
// "stringified" initial value
// "stringified" initial value
-
string m
InitVal;
+
wxString m_
InitVal;
public:
virtual int GetContextType() const { return SP_CTX_PARAMETER; }
public:
virtual int GetContextType() const { return SP_CTX_PARAMETER; }
@@
-518,10
+514,10
@@
class spAttribute : public spContext
{
public:
// type of the attribute
{
public:
// type of the attribute
-
string m
Type;
+
wxString m_
Type;
// it's initial value
// it's initial value
-
string m
InitVal;
+
wxString m_
InitVal;
// constantness
bool mIsConstant;
// constantness
bool mIsConstant;
@@
-539,25
+535,25
@@
class spOperation : public spContext
{
public:
// type of return value
{
public:
// type of return value
-
string m
RetType;
+
wxString m_
RetType;
// argument list
//MParamListT mParams;
// argument list
//MParamListT mParams;
- //
TRUE
, if operation does not modify
+ //
true
, if operation does not modify
// the content of the object
bool mIsConstant;
// flag, specific to C++
bool mIsVirtual;
// the content of the object
bool mIsConstant;
// flag, specific to C++
bool mIsVirtual;
- //
TRUE
, if definition follows the declaration immediatelly
+ //
true
, if definition follows the declaration immediatelly
bool mHasDefinition;
// scope if any (e.g. MyClass::MyFunction(), scope stirng is "MyClass" )
// usually found along with implementation of the method, which is now skipped
bool mHasDefinition;
// scope if any (e.g. MyClass::MyFunction(), scope stirng is "MyClass" )
// usually found along with implementation of the method, which is now skipped
-
string
mScope;
+
wxString
mScope;
public:
spOperation();
public:
spOperation();
@@
-577,7
+573,7
@@
public:
// the default implementation outputs name in
// C++/Java syntax
// the default implementation outputs name in
// C++/Java syntax
- virtual
s
tring GetFullName(MarkupTagsT tags);
+ virtual
wxS
tring GetFullName(MarkupTagsT tags);
virtual int GetContextType() const { return SP_CTX_OPERATION; }
virtual int GetContextType() const { return SP_CTX_OPERATION; }
@@
-596,7
+592,7
@@
public:
// prepocessor statement including '#' and
// attached multiple lines with '\' character
// prepocessor statement including '#' and
// attached multiple lines with '\' character
-
string m
Line;
+
wxString m_
Line;
int mDefType; // see SP_PREP_DEFINITION_TYPES enumeration
int mDefType; // see SP_PREP_DEFINITION_TYPES enumeration
@@
-606,7
+602,7
@@
public:
virtual int GetStatementType() const { return mDefType; }
virtual int GetStatementType() const { return mDefType; }
-
s
tring CPP_GetIncludedFileNeme() const;
+
wxS
tring CPP_GetIncludedFileNeme() const;
virtual void AcceptVisitor( spVisitor& visitor )
{ visitor.VisitPreprocessorLine( *this ); }
virtual void AcceptVisitor( spVisitor& visitor )
{ visitor.VisitPreprocessorLine( *this ); }
@@
-620,7
+616,7
@@
class spClass : public spContext
{
public:
// list of superclasses/interfaces
{
public:
// list of superclasses/interfaces
- StrListT mSuperClassNames;
+ StrListT m
_
SuperClassNames;
// see SP_CLASS_TYPES enumeration
int mClassSubType;
// see SP_CLASS_TYPES enumeration
int mClassSubType;
@@
-629,9
+625,9
@@
public:
int mInheritanceType;
// valid if mClassSubType is SP_CLTYPE_TEMPLATE_CLASS
int mInheritanceType;
// valid if mClassSubType is SP_CLTYPE_TEMPLATE_CLASS
-
string
mTemplateTypes;
+
wxString
mTemplateTypes;
- //
TRUE
, if it's and interface of abstract base class
+ //
true
, if it's and interface of abstract base class
bool mIsAbstract;
public:
bool mIsAbstract;
public:
@@
-662,7
+658,7
@@
public:
class spEnumeration : public spContext
{
public:
class spEnumeration : public spContext
{
public:
-
string m
EnumContent; // full-text content of enumeration
+
wxString m_
EnumContent; // full-text content of enumeration
public:
virtual int GetContextType() const { return SP_CTX_ENUMERATION; }
public:
virtual int GetContextType() const { return SP_CTX_ENUMERATION; }
@@
-678,7
+674,7
@@
class spTypeDef : public spContext
public:
// the original type which is redefined
// by this type definition
public:
// the original type which is redefined
// by this type definition
-
string m
OriginalType;
+
wxString m_
OriginalType;
public:
virtual int GetContextType() const { return SP_CTX_TYPEDEF; }
public:
virtual int GetContextType() const { return SP_CTX_TYPEDEF; }
@@
-698,7
+694,7
@@
class spFile : public spContext
public:
// since file name cannot be determined from
// source code, filling in this field is optional
public:
// since file name cannot be determined from
// source code, filling in this field is optional
-
string m
FileName;
+
wxString m_
FileName;
public:
virtual int GetContextType() const { return SP_CTX_FILE; }
public:
virtual int GetContextType() const { return SP_CTX_FILE; }