123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #ifndef __CELESTIALSPHEREAPPUI_h__
- #define __CELESTIALSPHEREAPPUI_h__
- #include <aknappui.h>
- #include "PosReader.h"
- #include "SimpleTimer.h"
- class CCelestialSphereAppView;
- class CCelestialSphereAppUi : public CAknAppUi,
- public MPositionReaderObserver,
- public MSimpleTimerNotify
- {
- public:
-
-
- void ConstructL();
-
- CCelestialSphereAppUi();
-
- virtual ~CCelestialSphereAppUi();
- public:
- void ReadingComplete( TPositionInfoBase& aPosInfo );
- void ReadingError( TInt aErrorNo );
- public:
- void TimerExpired( TAny* aTimer,TInt aError );
-
- private:
-
-
- void HandleCommandL(TInt aCommand);
-
- void HandleStatusPaneSizeChange();
- void HandleResourceChangeL(TInt aType);
-
- void HandleForegroundEventL( TBool aForeground );
- private:
-
-
- CCelestialSphereAppView* iAppView;
-
- private:
- TBool iInBackground;
- CPositionReader* iReader;
- CSimpleTimer* iTimer;
- };
- #endif
|