00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include <aknutils.h>
00032 #include <w32std.h>
00033 #include "AudioStreamView.h"
00034
00035 #include <TXTRICH.H>
00036
00037
00038 const TUint KNumberOfLines = 0;
00039 const TUint KTextLimit = 0;
00040
00041
00042 CAudioStreamView* CAudioStreamView::NewL(const TRect & aRect,
00043 CAudioStreamEngine* aEngine)
00044 {
00045 CAudioStreamView* self = NewLC(aRect, aEngine);
00046 CleanupStack::Pop(self);
00047 return self;
00048 }
00049
00050 CAudioStreamView* CAudioStreamView::NewLC(const TRect & aRect,
00051 CAudioStreamEngine* aEngine)
00052 {
00053 CAudioStreamView* self = new (ELeave) CAudioStreamView();
00054 CleanupStack::PushL(self);
00055 self->ConstructL(aRect, aEngine);
00056 return self;
00057 }
00058
00059
00060
00061
00062
00063
00064
00065 void CAudioStreamView::ConstructL(const TRect& aRect,
00066 CAudioStreamEngine* aEngine)
00067 {
00068 iEngine = aEngine;
00069
00070 CreateWindowL();
00071
00072
00073 iLogComponent = new(ELeave) CEikRichTextEditor;
00074 iLogComponent->ConstructL(this, KNumberOfLines, KTextLimit,
00075 CEikEdwin::EReadOnly | CEikEdwin::EAvkonDisableCursor);
00076 iLogComponent->CreateScrollBarFrameL()->SetScrollBarVisibilityL(
00077 CEikScrollBarFrame::EOff, CEikScrollBarFrame::EOn);
00078
00079
00080 #ifdef __WINS__
00081 _LIT(KFontArial,"Arial");
00082 TFontSpec MyeFontSpec (KFontArial, 8*10);
00083 MyeFontSpec.iTypeface.SetIsProportional(ETrue);
00084
00085 TCharFormatMask charFormatMask;
00086 charFormatMask.SetAttrib(EAttFontHeight);
00087 TCharFormat charFormat(MyeFontSpec.iTypeface.iName, MyeFontSpec.iHeight);
00088 charFormat.iFontPresentation.iTextColor=KRgbBlack;
00089 charFormat.iFontSpec.iHeight=100;
00090
00091 CRichText* text = iLogComponent->RichText();
00092 text->ApplyCharFormatL(charFormat,charFormatMask,0,1);
00093 #endif
00094
00095 SetRect(aRect);
00096 _LIT(KInfo, "Audio streaming example");
00097 ShowMessageL(KInfo);
00098
00099
00100 ActivateL();
00101
00102
00103
00104 SetRect(aRect);
00105 }
00106
00107
00108
00109
00110
00111
00112 CAudioStreamView::CAudioStreamView()
00113 {
00114 }
00115
00116
00117
00118
00119
00120
00121 CAudioStreamView::~CAudioStreamView()
00122 {
00123 delete iLogComponent;
00124 }
00125
00126
00127
00128
00129
00130
00131 void CAudioStreamView::SizeChanged()
00132 {
00133 TRect rect = Rect();
00134
00135 TInt scrollbarWidth = iLogComponent->ScrollBarFrame()->ScrollBarBreadth(CEikScrollBar::EVertical);
00136
00137
00138 if (scrollbarWidth == 0)
00139 {
00140 scrollbarWidth = 8;
00141 }
00142 iLogComponent->SetExtent(TPoint(0, 0),
00143 TSize(rect.Width() - scrollbarWidth, rect.Height()));
00144 DrawNow();
00145 }
00146
00147
00148
00149
00150
00151
00152 void CAudioStreamView::HandleResourceChange(TInt aType)
00153 {
00154 CCoeControl::HandleResourceChange(aType);
00155 if ( aType==KEikDynamicLayoutVariantSwitch )
00156 {
00157 TRect rect;
00158 AknLayoutUtils::LayoutMetricsRect(AknLayoutUtils::EMainPane, rect);
00159 SetRect(rect);
00160 }
00161 }
00162
00163
00164
00165
00166
00167 TInt CAudioStreamView::CountComponentControls() const
00168 {
00169 return 1;
00170 }
00171
00172
00173
00174
00175 CCoeControl* CAudioStreamView::ComponentControl(TInt aIndex) const
00176 {
00177 switch ( aIndex )
00178 {
00179 case 0:
00180 return iLogComponent;
00181 default:
00182 return NULL;
00183 }
00184 }
00185
00186
00187
00188
00189
00190 void CAudioStreamView::Draw( const TRect& aRect ) const
00191 {
00192 CWindowGc& gc = SystemGc();
00193 gc.SetPenStyle( CGraphicsContext::ENullPen );
00194 gc.SetBrushColor( KRgbWhite );
00195 gc.SetBrushStyle( CGraphicsContext::ESolidBrush );
00196 gc.DrawRect( aRect );
00197 }
00198
00199
00200
00201
00202
00203
00204 void CAudioStreamView::ShowMessageL(const TDesC& aMsg)
00205 {
00206 CPlainText* text = iLogComponent->Text();
00207 text->InsertL(text->DocumentLength(), aMsg);
00208 text->InsertL(text->DocumentLength(), CEditableText::ELineBreak);
00209 iLogComponent->HandleTextChangedL();
00210
00211 iLogComponent->MoveCursorL(TCursorPosition::EFPageDown, EFalse);
00212 DrawNow();
00213 }
00214
00215
00216
00217
00218