playpref.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:11k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: playpref.h,v 1.1.1.1.50.1 2004/07/09 02:07:18 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #ifndef _PLAYPREF
  50. #define  _PLAYPREF
  51. #include "pref.h"
  52. #include "plprefk.h"
  53. #if 0
  54. // list of player's preferences
  55. static CPrefTableEntry PlayPrefTable[] =
  56. {
  57. #ifdef _MACINTOSH
  58. { Pref_CapiBrowserName, PrefType_Text, 0, "MOSS",          ""     }, // topic names for DDE to Web browsers
  59. #else
  60. { Pref_CapiBrowserName, PrefType_Text, 0, "Browser",          ""     }, // topic names for DDE to Web browsers
  61. #endif
  62.     { Pref_LastUsedURL,     PrefType_Text, 0, "LastURL",          ""     }, // Last URL played :  str
  63.     { Pref_Volume,          PrefType_Text, 0, "Volume",           "49"   }, // Volume setting  :  float 0 - 100
  64. { Pref_DefPort,         PrefType_Text, 0, "DefPort",          "7070" }, // Default port  :  int   7070
  65.     { Pref_AlwaysOnTop,     PrefType_Text, 0, "OnTop",            "0"    },         // Make Player a top most window :  bool true or false 
  66.     { Pref_WindowPositionX, PrefType_Text, 0, "x",                "0"    }, // x pos on root window: platform dep
  67.     { Pref_WindowPositionY, PrefType_Text, 0, "y",                "0"    }, // y pos on root window: platform dep
  68.     { Pref_ShowStatusBar,   PrefType_Text, 0, "StatusBar",        "1"    }, // show status bar :  bool true or false
  69.     { Pref_ShowInfoVolume,  PrefType_Text, 0, "InfoandVolume",   "1"    }, // show info and vol: bool true or false
  70.     { Pref_SamplingRate,    PrefType_Text, 0, "SamplingRate",     "8000" }, // sampling rate : ??
  71.     { Pref_BitsPerSample,   PrefType_Text, 0, "BitsPerSample",    "16"   }, // bits per sample: int ( 8 or 16 )
  72.     { Pref_LossCorrection,  PrefType_Text, 0, "LossCorrection",   "1"    }, // do deinterleaving : bool ( T or F )
  73.     { Pref_SendStatistics,  PrefType_Text, 0, "SendStatistics",   "1"    }, // send stats to server: bool ( T or F )
  74.     { Pref_ServerTimeOut,   PrefType_Text, 0, "ServerTimeOut",    "90"   }, // ??? in secs : int ( 0 to ? )
  75. { Pref_AcceptableLoss,  PrefType_Text, 0, "AcceptableLoss",   ""     }, // ???
  76. { Pref_RampBlocks,      PrefType_Text, 0, "RampBlocks",    ""     }, // ???
  77. { Pref_SeekPage,        PrefType_Text, 0, "SeekPage",       ""     }, // ???
  78. { Pref_SeekLine,        PrefType_Text, 0, "SeekLine",       "20"   }, // ???
  79. { Pref_NetPeriod,       PrefType_Text, 0, "NetPeriod",    ""     }, // ???
  80. { Pref_FilePeriod,      PrefType_Text, 0, "FilePeriod",    ""     }, // ???
  81. { Pref_CyclesPerPeriod, PrefType_Text, 0, "CyclesPerPeriod",  ""     }, // ???
  82.     { Pref_UseProxy,        PrefType_Text, 0, "ProxySupport",     "0"    }, // ??? : bool ( T or F )
  83.     { Pref_ProxyHost,       PrefType_Text, 0, "HttpHost",         ""     }, // proxy hostname: char *
  84.     { Pref_ProxyPort,       PrefType_Text, 0, "HttpPort",         "1090" },     // proxy port: int
  85.     { Pref_NotProxyHost,    PrefType_Text, 0, "NotProxy",         ""     }, // ???
  86.     { Pref_AudioQuality,    PrefType_Text, 0, "AudioQuality",     "0"    }, // decoder quality : int ( 0 to 100 )
  87.     { Pref_ReceiveTCP,      PrefType_Text, 0, "ReceiveTCP",       "0"    }, // get audio via TCP : bool ( T or F )
  88.     { Pref_UseUDPPort,      PrefType_Text, 0, "UseUDPPort",       "0"    }, // ???
  89.     { Pref_UDPPort,         PrefType_Text, 0, "UDPPort",          "7070" },     // UDP port: int ( ?? to ?? )
  90.     { Pref_UseSplitter,     PrefType_Text, 0, "UseSplitter",      "0"    }, // use splitter: bool ( T or F )
  91. { Pref_SplitterHost,    PrefType_Text, 0, "SplitterHost",   " "    }, // splitter hostname: char *
  92. { Pref_SplitterPort,    PrefType_Text, 0, "SplitterPort",   " "    }, // splitter port: int ( ?? to ?? )
  93.   { Pref_SyncMultimedia,  PrefType_Text, 0, "SyncMultimedia",   "1"    }, // do URL events: bool ( T or F )
  94.     { Pref_License,         PrefType_Text, 0, "License",          "0"    }, // show PN license: bool ( T or F )
  95.     { Pref_MultiplePlayer,  PrefType_Text, 0, "MultiplePlayer",   "0"    }, // allow multiple players: bool ( T or F )
  96.     { Pref_Bandwidth,       PrefType_Text, 0, "Bandwidth",        "28800"},     // default bandwidth for BW
  97.     { Pref_Sites,           PrefType_Text, 0, "Sites",   ""     }, // defaults for sites menu
  98.     { Pref_Clips,           PrefType_Text, 0, "Clips",           ""     }, // iterator for clips menu
  99.     { Pref_MaxClipCount,    PrefType_Text, 0, "MaxClipCount",     "4"    }, // number of items to remember for clips menu
  100.     { Pref_ShowPresets,     PrefType_Text, 0, "ShowPresets",   "1"    }, // show presets: bool true or false
  101. { Pref_Presets,         PrefType_Text, 0, "Presets",    ""     }, // iterator for Presets
  102. { Pref_Scan,            PrefType_Text, 0, "Scan",       ""     }, // scan iterator
  103. { Pref_ScanTime,        PrefType_Text, 0, "EndScan",   "10000"},   // endtime for scan ram file items
  104. { Pref_HTTPProxyHost,   PrefType_Text, 0, "HTTPProxyHost",    ""     }, // http proxy for http get
  105. { Pref_HTTPProxyPort,   PrefType_Text, 0, "HTTPProxyPort",    "80"   }, // http proxy port
  106. { Pref_ClientLicense,   PrefType_Text, 0, "ClientLicenseKey", "0"    }, // encoded license key
  107. { Pref_URLtoHurl,       PrefType_Text, 0, "URLtoHurl",   ""     }, // The user's timecast URL: http://www.timecast.com/config.cgi?uid=fff3456...
  108. { Pref_HurledURL,       PrefType_Text, 0, "HurledURL",   "0"    }, // 0 or 1 indicates that we Hurled it...
  109. { Pref_PerfectPlayTime, PrefType_Text, 0, "PerfectPlayTime",  "60"   }, // PerfectPlay default time - 30 secs.
  110. { Pref_PerfectPlayMode, PrefType_Text, 0, "PerfectPlayMode",  "0"    }, // 0 or 1 indicates that we are in perfect play mode in player
  111.     { Pref_NetworkLatency,  PrefType_Text, 0, "NetworkLatency",   "3000" }, // default network latency is 3000 ms. used for resend buffer depth
  112.     { Pref_AutoTransport,   PrefType_Text, 0, "AutoTransport",   "1"    }, // 0 or 1 indicates that we will auto find the best transport
  113.     { Pref_AttemptMulticast,PrefType_Text, 0, "AttemptMulticast", "1"    }, // 0 or 1 indicates that in user transport mode we will attempt Multicast
  114.     { Pref_AttemptUDP,      PrefType_Text, 0, "AttemptUDP",   "1"    }, // 0 or 1 indicates that in user transport mode we will attempt UDP
  115.     { Pref_AttemptTCP,      PrefType_Text, 0, "AttemptTCP",   "1"    }, // 0 or 1 indicates that in user transport mode we will attempt TCP
  116.     { Pref_MulticastTimeout,PrefType_Text, 0, "MulticastTimeout", "2000" }, // time in ms to give up on Multicast.
  117.     { Pref_UDPTimeout,      PrefType_Text, 0, "UDPTimeout",   "2000" }, // time in ms to give up on UDP.
  118.     { Pref_ClipID,          PrefType_Text, 0, "ClipID",   "0"    }, // Clip number played - acts as a unique ID to write log files...
  119. { Pref_MusicChoice,     PrefType_Text, 0, "MusicChoice",      "0"    }, // ???
  120.     { Pref_HomeURL,         PrefType_Text, 0, "HomeURL",   "http://www.realaudio.com/"},// URL to hurl when user clicks on Home button
  121.     { Pref_CustomCaption,   PrefType_Text, 0, "CustomCaption",   NULL   }, // This caption overwrites the caption of the main Player's window
  122.     { Pref_UserName,        PrefType_Text, 0, "UserName",   "0"    }, // ???
  123.     { Pref_UserCompany,     PrefType_Text, 0, "UserCompany",   "0"    }, // ???
  124.     { Pref_UserEmail,       PrefType_Text, 0, "UserEmail",   "0"    }, // ???
  125.     { Pref_PerfPlayEntireClip, PrefType_Text, 0, "PerfPlayEntireClip",  "0"  } // 1 indicates that in perfect play mode Player will buffer entire clip
  126. };
  127. #endif // 0
  128. class CPlayerPref : public CPref
  129. {
  130. public:
  131. /*  call open_pref() to automatically create the correct platform specific Player's 
  132.     preference object. If open_pref() returns NULL, an error occurred and the 
  133.     CPlayerPref object was not created. Call last_error to get the error */
  134. #ifndef _CARBON
  135. static CPref * open_pref(const char* pCompanyName, const char* pProductName, UINT32 nProdMajorVer,  UINT32 nProdMinorVer, BOOL bCommon = TRUE);
  136. #else
  137. // for the Mac, we default to bCommon=FALSE since we want non-admin users to be able to run a new install, so by default
  138. // prefs get written per-user
  139. static CPref * open_pref(const char* pCompanyName, const char* pProductName, UINT32 nProdMajorVer,  UINT32 nProdMinorVer, BOOL bCommon = FALSE);
  140. #endif // _CARBON
  141. /*    class destructor */  
  142.    virtual              ~CPlayerPref         (void);
  143. };              
  144. #endif // _PLAYPREF