diff -r f345bda72bc4 -r 43e37759235e Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/cssyncappui_8h_source.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/cssyncappui_8h_source.html Tue Mar 30 16:16:55 2010 +0100 @@ -0,0 +1,75 @@ + + +
+ +00001 /* +00002 * ============================================================================== +00003 * Name : cssyncappui.h +00004 * Part of : CSSync +00005 * Interface : +00006 * Description : +00007 * Version : +00008 * +00009 * Copyright (c) 2006 Nokia Corporation. +00010 * This material, including documentation and any related +00011 * computer programs, is protected by copyright controlled by +00012 * Nokia Corporation. +00013 * ============================================================================== +00014 */ +00015 +00016 +00017 #ifndef __CSSYNCAPPUI_H__ +00018 #define __CSSYNCAPPUI_H__ +00019 +00020 // INCLUDE FILES +00021 #include <aknappui.h> +00022 +00023 // FORWARD DECLARATIONS +00024 class CCSSyncAppView; +00025 class CCSSyncDocument; +00026 +00027 // CLASS DECLARATION +00033 class CCSSyncAppUi : public CAknAppUi +00034 { +00035 public: // Constructors and destructors +00036 +00042 CCSSyncAppUi(); +00043 +00048 virtual ~CCSSyncAppUi(); +00049 +00050 public: // Functions from base classes +00051 +00057 void HandleCommandL( TInt aCommand ); +00058 +00064 virtual void HandleResourceChangeL( TInt aType ); +00065 +00066 private: // Constructors and destructors +00067 +00072 void ConstructL(); +00073 +00074 private: // New functions +00075 +00080 CCSSyncDocument* SyncDocument() const; +00081 +00082 private: // Data +00083 +00088 CCSSyncAppView* iAppView; +00089 }; +00090 +00091 +00092 #endif // __CSSYNCAPPUI_H__ +00093 +00094 +00095 // End of File +