?? oandxdefs.h
字號:
// Copyright (c) 2004 - 2006, Symbian Software Ltd. All rights reserved.
#ifndef OANDXDEFS_H
#define OANDXDEFS_H
// Generic board data
static const TInt KTilesPerRow = 3;
static const TInt KTilesPerCol = 3;
static const TInt KNumberOfTiles = (KTilesPerRow*KTilesPerCol);
// OandX-specific data
static const TInt KTilesPerSide = 3;
enum TTileState
{
ETileBlank = 0, // Values chosen so that:
ETileNought = 1, // KTilesPerRow*ETileNought < ETileCross
ETileCross = 4, // KTilesPerCol*ETileNought < ETileCross
ETileDraw = 16 // Added for History view (> KTilesPerCol*ETileCross)
};
static const TInt KStatusWinHeight = 20; // in pixels
static const TInt KStatsBufSize = 30;
static const TInt KFormatBufSize = 40;
static const TInt KNumHistoryRecords = 6;
/**
Identifies the hello world application抯 view.
Each view need an unique UID in the application.
@since UIQ 3.0
*/
const TUid KUidOandXView = {0x00000001};
const TUid KUidOandXHistoryView = {0x00000002};
// Message IDs for use when activating history view
enum { EHistoryViewDisplayHistory, EHistoryViewDisplayStats } ;
#endif // OANDXDEFS_H
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -