diff options
Diffstat (limited to '')
-rw-r--r-- | src/viewdefault.cpp | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/src/viewdefault.cpp b/src/viewdefault.cpp index 25082ac..df7be13 100644 --- a/src/viewdefault.cpp +++ b/src/viewdefault.cpp | |||
@@ -61,7 +61,7 @@ void ViewDefault::skipTarget( const Bu::FString &/*sProfile*/, | |||
61 | iCurrent++; | 61 | iCurrent++; |
62 | } | 62 | } |
63 | 63 | ||
64 | void ViewDefault::beginTarget( const Bu::FString &/*sProfile*/, | 64 | void ViewDefault::beginTarget( const Bu::FString &sProfile, |
65 | const Target &rTarget ) | 65 | const Target &rTarget ) |
66 | { | 66 | { |
67 | if( iDepth == 0 ) | 67 | if( iDepth == 0 ) |
@@ -69,25 +69,33 @@ void ViewDefault::beginTarget( const Bu::FString &/*sProfile*/, | |||
69 | bDispedTrg = false; | 69 | bDispedTrg = false; |
70 | iTotal = rTarget.getDepCount(); | 70 | iTotal = rTarget.getDepCount(); |
71 | iCurrent = 0; | 71 | iCurrent = 0; |
72 | if( bFirst == false ) | ||
73 | { | ||
74 | sio << sio.nl; | ||
75 | } | ||
76 | bFirst = false; | ||
77 | } | 72 | } |
78 | iDepth++; | 73 | iDepth++; |
74 | |||
75 | sCurProfile = sProfile; | ||
79 | } | 76 | } |
80 | 77 | ||
81 | void ViewDefault::processTarget( const Bu::FString &sProfile, | 78 | void ViewDefault::drawTargetHdr( const Bu::FString &sProfile, |
82 | const Target &rTarget ) | 79 | const Target &rTarget ) |
83 | { | 80 | { |
84 | if( bDispedTrg == false ) | 81 | if( bDispedTrg == false ) |
85 | { | 82 | { |
86 | bDispedTrg = true; | 83 | bDispedTrg = true; |
84 | if( bFirst == false ) | ||
85 | { | ||
86 | sio << sio.nl; | ||
87 | } | ||
88 | bFirst = false; | ||
87 | sio << C_BR_WHITE << " --- " << C_BR_CYAN << sProfile << " " | 89 | sio << C_BR_WHITE << " --- " << C_BR_CYAN << sProfile << " " |
88 | << rTarget.getOutputList().first() << C_BR_WHITE << " --- " | 90 | << rTarget.getOutputList().first() << C_BR_WHITE << " --- " |
89 | << C_RESET << sio.nl; | 91 | << C_RESET << sio.nl; |
90 | } | 92 | } |
93 | } | ||
94 | |||
95 | void ViewDefault::processTarget( const Bu::FString &sProfile, | ||
96 | const Target &rTarget ) | ||
97 | { | ||
98 | drawTargetHdr( sProfile, rTarget ); | ||
91 | iCurrent++; | 99 | iCurrent++; |
92 | 100 | ||
93 | int iPct = (iTotal>0)?(iCurrent*100/iTotal):(100); | 101 | int iPct = (iTotal>0)?(iCurrent*100/iTotal):(100); |
@@ -106,6 +114,8 @@ void ViewDefault::endTarget() | |||
106 | 114 | ||
107 | void ViewDefault::buildRequires( const Target &rTarget ) | 115 | void ViewDefault::buildRequires( const Target &rTarget ) |
108 | { | 116 | { |
117 | drawTargetHdr( sCurProfile, rTarget ); | ||
118 | |||
109 | int iPct = (iTotal>0)?(iCurrent*100/iTotal):(100); | 119 | int iPct = (iTotal>0)?(iCurrent*100/iTotal):(100); |
110 | sio << C_BR_WHITE << "[" << C_BR_GREEN << Fmt(3) << iPct | 120 | sio << C_BR_WHITE << "[" << C_BR_GREEN << Fmt(3) << iPct |
111 | << "%" << C_BR_WHITE << "] " << C_BR_MAGENTA | 121 | << "%" << C_BR_WHITE << "] " << C_BR_MAGENTA |