equal
deleted
inserted
replaced
64 // --------------------------------------------------------------------------- |
64 // --------------------------------------------------------------------------- |
65 // ConstructL |
65 // ConstructL |
66 // --------------------------------------------------------------------------- |
66 // --------------------------------------------------------------------------- |
67 // |
67 // |
68 void CAlfHintGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, |
68 void CAlfHintGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, |
69 MWsClient& aOwner, const TDesC8& aData) |
69 MWsClient& aOwner, const TDesC8& /*aData*/) |
70 { |
70 { |
71 iEnv = &aEnv; |
71 iEnv = &aEnv; |
72 BaseConstructL(aEnv, aId, aOwner); |
72 BaseConstructL(aEnv, aId, aOwner); |
73 iHintApi = static_cast<MAlfHintObserver*>(aEnv.Screen(0)->ResolveObjectInterface( KAlfHintObjectInterface ) ); |
73 iHintApi = static_cast<MAlfHintObserver*>(aEnv.Screen(0)->ResolveObjectInterface( KAlfHintObjectInterface ) ); |
74 /*RDesReadStream in(aData); |
74 /*RDesReadStream in(aData); |
92 |
92 |
93 // --------------------------------------------------------------------------- |
93 // --------------------------------------------------------------------------- |
94 // DoDraw |
94 // DoDraw |
95 // --------------------------------------------------------------------------- |
95 // --------------------------------------------------------------------------- |
96 // |
96 // |
97 void CAlfHintGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& aData) const |
97 void CAlfHintGraphicDrawer::DoDraw(MWsGc& /*aGc*/, const TRect& /*aRect*/, const TDesC8& aData) const |
98 { |
98 { |
99 // read data |
99 // read data |
100 TInt err = 0; |
100 TInt err = 0; |
101 TInt tag = KErrNotFound; |
101 TInt tag = KErrNotFound; |
102 TRect boundingRectangle(0,0,360,240); |
102 TRect boundingRectangle(0,0,360,240); |
125 |
125 |
126 // --------------------------------------------------------------------------- |
126 // --------------------------------------------------------------------------- |
127 // HandleMessage |
127 // HandleMessage |
128 // --------------------------------------------------------------------------- |
128 // --------------------------------------------------------------------------- |
129 // |
129 // |
130 void CAlfHintGraphicDrawer::HandleMessage(const TDesC8& aData) |
130 void CAlfHintGraphicDrawer::HandleMessage(const TDesC8& /*aData*/) |
131 { |
131 { |
132 } |
132 } |
133 |
133 |