1 /*******************************************************************
\r
5 * Author: Peter van Sebille (peter@yipton.net)
\r
7 * Modified/adapted for picodriveN by notaz, 2006
\r
9 * (c) Copyright 2006, notaz
\r
10 * (c) Copyright 2002, Peter van Sebille
\r
11 * All Rights Reserved
\r
13 *******************************************************************/
\r
19 #include <eikdialg.h>
\r
20 #include <eiktxlbx.h>
\r
21 #include <eiktxlbm.h>
\r
22 #include <eikdlgtb.h>
\r
23 #include <eiklabel.h>
\r
24 #include <eikchlst.h>
\r
25 #include <eikchkbx.h>
\r
26 #include <eikedwob.h>
\r
28 #include <QikSimpleDialog.h>
\r
31 /************************************************
\r
35 ************************************************/
\r
39 class CPicoConfigDialog : public CEikDialog
\r
42 CPicoConfigDialog(TPicoConfig &cfg);
\r
44 protected: // framework
\r
45 void PostLayoutDynInitL();
\r
46 void HandleControlStateChangeL(TInt aControlId);
\r
47 TBool OkToExitL(TInt aButtonId);
\r
49 TPicoConfig &config;
\r
53 /************************************************
\r
57 ************************************************/
\r
59 class CAboutDialog : public CQikSimpleDialog
\r
61 protected: // from CQikSimpleDialog
\r
62 void PostLayoutDynInitL();
\r
65 /*************************************************************
\r
69 **************************************************************/
\r
71 class CCreditsDialog : public CQikSimpleDialog
\r
73 protected: // from CQikSimpleDialog
\r
74 void PreLayoutDynInitL();
\r
75 TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
\r
78 /*************************************************************
\r
82 **************************************************************/
\r
84 class CDebugDialog : public CCreditsDialog
\r
87 CDebugDialog(char *t);
\r
91 void PreLayoutDynInitL();
\r
94 #endif // __DIALOGS_H
\r