mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 23:58:04 -04:00
initial import
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@2 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
2cadbd5e56
commit
cc68a136aa
341 changed files with 180839 additions and 0 deletions
94
platform/uiq3/Dialogs.h
Normal file
94
platform/uiq3/Dialogs.h
Normal file
|
@ -0,0 +1,94 @@
|
|||
/*******************************************************************
|
||||
*
|
||||
* File: Dialogs.h
|
||||
*
|
||||
* Author: Peter van Sebille (peter@yipton.net)
|
||||
*
|
||||
* Modified/adapted for picodriveN by notaz, 2006
|
||||
*
|
||||
* (c) Copyright 2006, notaz
|
||||
* (c) Copyright 2002, Peter van Sebille
|
||||
* All Rights Reserved
|
||||
*
|
||||
*******************************************************************/
|
||||
|
||||
#ifndef __DIALOGS_H
|
||||
#define __DIALOGS_H
|
||||
|
||||
#include <eikenv.h>
|
||||
#include <eikdialg.h>
|
||||
#include <eiktxlbx.h>
|
||||
#include <eiktxlbm.h>
|
||||
#include <eikdlgtb.h>
|
||||
#include <eiklabel.h>
|
||||
#include <eikchlst.h>
|
||||
#include <eikchkbx.h>
|
||||
#include <eikedwob.h>
|
||||
|
||||
#include <QikSimpleDialog.h>
|
||||
|
||||
|
||||
/************************************************
|
||||
*
|
||||
* config Dialog
|
||||
*
|
||||
************************************************/
|
||||
|
||||
class TPicoConfig;
|
||||
|
||||
class CPicoConfigDialog : public CEikDialog
|
||||
{
|
||||
public:
|
||||
CPicoConfigDialog(TPicoConfig &cfg);
|
||||
|
||||
protected: // framework
|
||||
void PostLayoutDynInitL();
|
||||
void HandleControlStateChangeL(TInt aControlId);
|
||||
TBool OkToExitL(TInt aButtonId);
|
||||
|
||||
TPicoConfig &config;
|
||||
};
|
||||
|
||||
|
||||
/************************************************
|
||||
*
|
||||
* About Dialog
|
||||
*
|
||||
************************************************/
|
||||
|
||||
class CAboutDialog : public CQikSimpleDialog
|
||||
{
|
||||
protected: // from CQikSimpleDialog
|
||||
void PostLayoutDynInitL();
|
||||
};
|
||||
|
||||
/*************************************************************
|
||||
*
|
||||
* Credits dialog
|
||||
*
|
||||
**************************************************************/
|
||||
|
||||
class CCreditsDialog : public CQikSimpleDialog
|
||||
{
|
||||
protected: // from CQikSimpleDialog
|
||||
void PreLayoutDynInitL();
|
||||
TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
|
||||
};
|
||||
|
||||
/*************************************************************
|
||||
*
|
||||
* Debug dialog
|
||||
*
|
||||
**************************************************************/
|
||||
|
||||
class CDebugDialog : public CCreditsDialog
|
||||
{
|
||||
public:
|
||||
CDebugDialog(char *t);
|
||||
|
||||
protected:
|
||||
char iText[1024];
|
||||
void PreLayoutDynInitL();
|
||||
};
|
||||
|
||||
#endif // __DIALOGS_H
|
Loading…
Add table
Add a link
Reference in a new issue