2005-01-04 15:34:36 +01:00
|
|
|
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
|
|
|
/*
|
2006-01-08 02:25:02 +01:00
|
|
|
* Copyright 2005 by Eric House (xwords@eehouse.org). (based on sample
|
2005-01-04 15:34:36 +01:00
|
|
|
* app helloworldbasic "Copyright (c) 2002, Nokia. All rights
|
|
|
|
* reserved.")
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XWORDS_HRH__
|
|
|
|
#define __XWORDS_HRH__
|
|
|
|
|
|
|
|
// HelloWorldBasic enumerate command codes
|
|
|
|
enum TXWordsIds {
|
|
|
|
XW_TIMEREQ_COMMAND = 0x6000 // convention is for >= 0x6000 -- they say
|
|
|
|
,XW_NEWGAME_COMMAND
|
|
|
|
,XW_SAVEDGAMES_COMMAND
|
|
|
|
,XW_PREFS_COMMAND
|
|
|
|
,XW_ABOUT_COMMAND
|
|
|
|
|
|
|
|
,XW_VALUES_COMMAND
|
|
|
|
,XW_REMAIN_COMMAND
|
|
|
|
,XW_CURINFO_COMMAND
|
|
|
|
,XW_HISTORY_COMMAND
|
|
|
|
,XW_FINALSCORES_COMMAND
|
|
|
|
|
|
|
|
,XW_HINT_COMMAND
|
|
|
|
/* #ifdef XWFEATURE_SEARCHLIMIT */
|
|
|
|
/* ,XW_LIMHINT_COMMAND */
|
|
|
|
/* #endif */
|
|
|
|
,XW_NEXTHINT_COMMAND
|
|
|
|
,XW_UNDOCUR_COMMAND
|
|
|
|
,XW_UNDOLAST_COMMAND
|
|
|
|
,XW_DONE_COMMAND
|
|
|
|
,XW_JUGGLE_COMMAND
|
|
|
|
,XW_TRADE_COMMAND
|
|
|
|
,XW_HIDETRAY_COMMAND
|
|
|
|
,XW_FLIP_COMMAND
|
|
|
|
,XW_TOGGLEVALS_COMMAND
|
|
|
|
|
2005-01-18 16:00:49 +01:00
|
|
|
,XW_SGAMES_DELETE_COMMAND
|
|
|
|
,XW_SGAMES_RENAME_COMMAND
|
|
|
|
,XW_SGAMES_OPEN_COMMAND
|
|
|
|
|
2005-01-04 15:34:36 +01:00
|
|
|
,EAskContents /* edit control in generic ask dlg */
|
2005-01-07 12:06:54 +01:00
|
|
|
|
2005-01-09 19:45:36 +01:00
|
|
|
,EPlayerLocationChoice
|
|
|
|
,EPlayerName
|
|
|
|
,EPlayerSpeciesChoice
|
|
|
|
,EDecryptPassword
|
2005-01-08 19:13:30 +01:00
|
|
|
|
2005-01-31 04:19:11 +01:00
|
|
|
#ifndef XWFEATURE_STANDALONE_ONLY
|
2005-03-20 20:47:47 +01:00
|
|
|
,XW_RESEND_COMMAND /* out of place for a menu command... */
|
2005-01-08 19:13:30 +01:00
|
|
|
,EConnectionRole
|
|
|
|
,EConnectionType
|
2005-03-19 23:20:16 +01:00
|
|
|
,ECookie
|
2005-01-31 04:19:11 +01:00
|
|
|
,ERelayName
|
|
|
|
,ERelayPort
|
|
|
|
,EPageConn
|
|
|
|
#endif
|
|
|
|
,EPagePlayers
|
|
|
|
,EPageDict
|
2005-01-08 19:13:30 +01:00
|
|
|
|
|
|
|
,ESelDictName
|
2005-01-09 19:45:36 +01:00
|
|
|
,ESelDictChoice
|
2005-01-08 19:13:30 +01:00
|
|
|
,EPlayerSpecies
|
2005-01-09 19:45:36 +01:00
|
|
|
|
|
|
|
,ENPlayersList
|
|
|
|
,ENPlayersWhichList
|
2005-01-09 22:37:38 +01:00
|
|
|
|
|
|
|
,ESelBlankChoice
|
2005-01-18 16:00:49 +01:00
|
|
|
,ESelGameChoice
|
2005-01-21 08:59:16 +01:00
|
|
|
|
|
|
|
,EEditNameEdwin
|
2005-01-31 04:19:11 +01:00
|
|
|
|
2005-02-08 08:01:50 +01:00
|
|
|
#if defined SERIES_60
|
|
|
|
,EDictBrowseButton
|
|
|
|
#endif
|
2005-01-04 15:34:36 +01:00
|
|
|
};
|
|
|
|
|
2005-01-18 16:00:49 +01:00
|
|
|
#define XW_UID3 0x10206D64
|
|
|
|
|
2005-01-04 15:34:36 +01:00
|
|
|
#endif // __XWORDS_HRH__
|
2005-01-18 16:00:49 +01:00
|
|
|
|