SophiaFramework UNIVERSE 5.3 |
BREW 2.0 | BREW 2.1 | BREW 3.1 | BREW 4.0 |
---|---|---|---|
× | × | ○ | ○ |
パブリック関数 | |
---|---|
SFCError |
BrowseFile(
ACharConstPtr file
, UInt32 reason
)
( 拡張子で ) 指定されたファイルタイプに関連付けられたアプレットを起動します。
|
SFCError |
BrowseFile(
SFXAnsiStringConstRef file
, UInt32 reason
)
( 拡張子で ) 指定されたファイルタイプに関連付けられたアプレットを起動します。
|
SFCError |
BrowseURL(
ACharConstPtr url
, UInt32 reason
)
指定された URL スキームに関連付けられたアプレットを起動します。
|
SFCError |
BrowseURL(
SFXAnsiStringConstRef url
, UInt32 reason
)
指定された URL スキームに関連付けられたアプレットを起動します。
|
SFCError |
CanStart(
AEECLSID clsid
, VoidPtr buf
, SInt32Ptr size
)
起動情報を与えた指定のアプレットが起動できるか判断します。
|
SFCError |
CanStart(
AEECLSID clsid
, SFXBufferPtr buf
)
起動情報を与えた指定のアプレットが起動できるか判断します。
|
SFCError |
Control(
AEECLSID clsid
, SInt32 operation
, VoidPtr buf
, SInt32Ptr size
)
アプレットをコントロールします。
|
SFCError |
Control(
AEECLSID clsid
, SInt32 operation
, SFXBufferPtr buf
)
アプレットをコントロールします。
|
SFCError |
GetRunningInfo(
AEECLSID clsid
, AEEAppItem item
, VoidPtr buf
, SInt32Ptr size
)
現在実行中のアプリケーションに関する特定の情報を取得します。
|
SFCError |
GetRunningInfo(
AEECLSID clsid
, AEEAppItem item
, SFXBufferPtr buf
)
現在実行中のアプリケーションに関する特定の情報を取得します。
|
SFCError |
GetRunningList(
VoidPtr buf
, SInt32Ptr size
)
現在実行中のアプレットの ID のリストを取得します。
|
SFCError |
GetRunningList(
SFXBufferPtr buf
)
現在実行中のアプレットの ID のリストを取得します。
|
static SFBAppletCtlSmp |
NewInstance(
SFCErrorPtr exception = null
)
SFBAppletCtl インスタンスを生成します。
|
static SFBAppletCtlSmp |
NewInstance(
AEECLSID id
, SFCErrorPtr exception = null
)
SFBAppletCtl インスタンスを生成します。
|
SFCError |
Start(
AEECLSID clsid
, VoidPtr buf
, SInt32Ptr size
)
指定したアプレット クラスを起動します。
|
SFCError |
Start(
AEECLSID clsid
, SFXBufferPtr buf
)
指定したアプレット クラスを起動します。
|
SFCError |
Stop(
AEECLSID clsid
)
現在実行中のアプレットを停止します。
|
SFCError |
QueryInterface(
AEECLSID clsid
, VoidHandle handle
)
(SFBQuery から継承)
このオブジェクトからの別の API を問い合わせます。
|
SFCError |
QueryInterface(
AEECLSID clsid
, SFBBaseSmpPtr handle
)
(SFBQuery から継承)
このオブジェクトからの別の API を問い合わせます。
|
SFBBaseSmp |
QueryInterface(
AEECLSID clsid
)
(SFBQuery から継承)
このオブジェクトからの別の API を問い合わせます。
|
Void |
Self(
AEECLSID clsidReq
, SFBQuerySmpPtr clone
, AEECLSID clsidImp
)
(SFBQuery から継承)
オブジェクトを単一インターフェースで実装するときに使います。
|
SFBQuerySmp |
Self(
AEECLSID clsidReq
, AEECLSID clsidImp
)
(SFBQuery から継承)
オブジェクトを単一インターフェースで実装するときに使います。
|
プロテクト関数 | |
---|---|
static SFBBaseSmp |
FactoryByCreate(
AEECLSID id
, SFCErrorPtr exception = null
)
(SFBBase から継承)
指定したクラス ID のインターフェースのインスタンスを生成します。
|
static SFBBaseSmp |
FactoryByQuery(
SFBQuerySmpConstRef query
, AEECLSID id
, SFCErrorPtr exception = null
)
(SFBBase から継承)
指定したクラス ID のインターフェースのインスタンスを指定した SFBQuery インスタンスを使用して生成します。
|
[ public ] SFCError BrowseFile( ACharConstPtr file // ファイル名 UInt32 reason // アプレットの起動理由 );
[ public ] SFCError BrowseFile( SFXAnsiStringConstRef file // ファイル名 UInt32 reason // アプレットの起動理由 );
アプレットが起動され、EVT_BROWSE_FILE イベントを受け取ります。
BREW API IAPPLETCTL_BrowseFile | SFBShell::BrowseFile | SFBShell::BrowseURL | SFBAppletCtl::BrowseURL | SFBAppletCtl::Start | SFBAppletCtl::Stop
[ public ] SFCError BrowseURL( ACharConstPtr url // アプレットの起動に使用する URL へのポインタ UInt32 reason // アプレットの起動理由 );
[ public ] SFCError BrowseURL( SFXAnsiStringConstRef url // アプレットの起動に使用する URL へのポインタ UInt32 reason // アプレットの起動理由 );
アプレットが起動され、EVT_BROWSE_URL イベントを受け取ります。
BREW API IAPPLETCTL_BrowseURL | SFBShell::BrowseFile | SFBShell::BrowseURL | SFBAppletCtl::BrowseFile | SFBAppletCtl::Start | SFBAppletCtl::Stop
[ public ] SFCError CanStart( AEECLSID clsid // アプレットの ClassID VoidPtr buf // AppStartInfo 型の構造体への有効なポインタ SInt32Ptr size // buf のサイズ ( バイト数 ) );
[ public ] SFCError CanStart( AEECLSID clsid // アプレットの ClassID SFXBufferPtr buf // AppStartInfo 型の構造体への有効なポインタ );
起動中のアプレットがスクリーンセーバーアプレットである ( SSA_SSAVER フラグが設定されている ) 場合、最前面のアプレットに EVT_APP_NO_CLOSE( EVT_BUSY ) が送られます。
[ public ] SFCError Control( AEECLSID clsid // アプレットの ClassID SInt32 operation // 指定されたアプレットクラスに対して実行する操作 VoidPtr buf // リターン時に、対応する情報 SInt32Ptr size // buf のサイズ ( バイト数 ) );
[ public ] SFCError Control( AEECLSID clsid // アプレットの ClassID SInt32 operation // 指定されたアプレットクラスに対して実行する操作 SFXBufferPtr buf // リターン時に、対応する情報 );
[ public ] SFCError GetRunningInfo( AEECLSID clsid // アプレットの ClassID AEEAppItem item // 情報が必要な項目 VoidPtr buf // 値が返されたときに、対応する情報が格納される SInt32Ptr size // buf のサイズ ( バイト数 ) );
[ public ] SFCError GetRunningInfo( AEECLSID clsid // アプレットの ClassID AEEAppItem item // 情報が必要な項目 SFXBufferPtr buf // 値が返されたときに、対応する情報が格納される );
[ public ] SFCError GetRunningList( VoidPtr buf // 現在実行中のアプリケーション ID のリストが格納される SInt32Ptr size // buf のサイズ ( バイト数 ) );
[ public ] SFCError GetRunningList( SFXBufferPtr buf // 現在実行中のアプリケーション ID のリストが格納される );
[ public, static ] SFBAppletCtlSmp NewInstance( SFCErrorPtr exception = null // エラー値 );
[ public, static ] SFBAppletCtlSmp NewInstance( AEECLSID id // クラスID SFCErrorPtr exception = null // エラー値 );
[ public ] SFCError Start( AEECLSID clsid // 起動するアプレットの ClassID VoidPtr buf // AppStartInfo 型の構造体への有効なポインタ SInt32Ptr size // buf のサイズ ( バイト数 ) );
[ public ] SFCError Start( AEECLSID clsid // 起動するアプレットの ClassID SFXBufferPtr buf // AppStartInfo 型の構造体への有効なポインタ );
Copyright(c) 2002 - 2024 Sophia Cradle Incorporated All Rights Reserved. |