00001
00002
00003 #ifndef __AOLABBUBBLESORTAPPUI_h__
00004 #define __AOLABBUBBLESORTAPPUI_h__
00005
00006 #include <aknappui.h>
00007
00008 class CAOLabBubbleSortContainer;
00009
00010
00011 class CAOLabBubbleSortAppUi : public CAknAppUi
00012 {
00013 public:
00014
00015 void ConstructL();
00016 CAOLabBubbleSortAppUi();
00017 virtual ~CAOLabBubbleSortAppUi();
00018
00019 private:
00020
00021
00022 void HandleCommandL( TInt aCommand );
00023
00024
00025 void HandleStatusPaneSizeChange();
00026
00027 void DynInitMenuPaneL(TInt aResourceId, CEikMenuPane* aMenuPane);
00028
00029 private:
00030
00031 CAOLabBubbleSortContainer* iAppContainer;
00032 };
00033
00034 #endif // __AOLABBUBBLESORTAPPUI_h__
00035
00036