2003-01-24 17:36:15 +03:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2001-2002, OpenBeOS
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
// File Name: ServerApp.h
|
|
|
|
// Author: DarkWyrm <bpmagic@columbus.rr.com>
|
2004-01-20 01:18:37 +03:00
|
|
|
// Adi Oanca <adioanca@myrealbox.com>
|
2003-01-24 17:36:15 +03:00
|
|
|
// Description: Server-side BApplication counterpart
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef _SERVERAPP_H_
|
|
|
|
#define _SERVERAPP_H_
|
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
#include <String.h>
|
2004-01-12 01:12:55 +03:00
|
|
|
#include "FMWList.h"
|
2003-08-31 21:38:34 +04:00
|
|
|
|
2003-01-27 22:43:15 +03:00
|
|
|
class AppServer;
|
2003-01-24 17:36:15 +03:00
|
|
|
class BMessage;
|
|
|
|
class PortLink;
|
2003-10-04 23:10:11 +04:00
|
|
|
class PortMessage;
|
2003-01-24 17:36:15 +03:00
|
|
|
class BList;
|
|
|
|
class DisplayDriver;
|
2003-01-27 22:43:15 +03:00
|
|
|
class ServerCursor;
|
2004-02-24 14:58:25 +03:00
|
|
|
class ServerBitmap;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
\class ServerApp ServerApp.h
|
|
|
|
\brief Counterpart to BApplication within the app_server
|
|
|
|
*/
|
|
|
|
class ServerApp
|
|
|
|
{
|
|
|
|
public:
|
2004-01-20 01:18:37 +03:00
|
|
|
ServerApp(port_id sendport, port_id rcvport, port_id clientLooperPort,
|
|
|
|
team_id clientTeamID, int32 handlerID, char *signature);
|
2004-01-13 03:56:36 +03:00
|
|
|
virtual ~ServerApp(void);
|
2004-01-20 01:18:37 +03:00
|
|
|
|
|
|
|
bool Run(void);
|
|
|
|
static int32 MonitorApp(void *data);
|
|
|
|
void Lock(void);
|
|
|
|
void Unlock(void);
|
|
|
|
bool IsLocked(void);
|
2003-01-24 17:36:15 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Determines whether the application is the active one
|
|
|
|
\return true if active, false if not.
|
|
|
|
*/
|
2004-01-20 01:18:37 +03:00
|
|
|
bool IsActive(void) const { return fIsActive; }
|
|
|
|
|
|
|
|
void Activate(bool value);
|
|
|
|
bool PingTarget(void);
|
|
|
|
|
|
|
|
void PostMessage(int32 code, size_t size=0,int8 *buffer=NULL);
|
2004-06-19 17:04:50 +04:00
|
|
|
/* void WindowBroadcast(int32 code); */
|
2004-01-20 01:18:37 +03:00
|
|
|
|
|
|
|
void SendMessageToClient( const BMessage* msg ) const;
|
|
|
|
void SetAppCursor(void);
|
2004-04-16 21:52:31 +04:00
|
|
|
ServerBitmap *FindBitmap(int32 token);
|
2004-01-20 01:18:37 +03:00
|
|
|
|
|
|
|
team_id ClientTeamID();
|
|
|
|
|
|
|
|
FMWList fAppFMWList;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
|
|
|
protected:
|
2003-06-23 06:54:52 +04:00
|
|
|
friend class AppServer;
|
|
|
|
friend class ServerWindow;
|
2004-01-20 01:18:37 +03:00
|
|
|
|
|
|
|
void _DispatchMessage(PortMessage *msg);
|
2004-02-24 14:58:25 +03:00
|
|
|
ServerBitmap* _FindBitmap(int32 token);
|
2004-01-20 01:18:37 +03:00
|
|
|
|
|
|
|
port_id fClientAppPort,
|
|
|
|
fMessagePort,
|
|
|
|
fClientLooperPort;
|
|
|
|
|
|
|
|
BString fSignature;
|
|
|
|
thread_id fMonitorThreadID;
|
|
|
|
|
|
|
|
team_id fClientTeamID;
|
|
|
|
|
|
|
|
PortLink *fAppLink;
|
|
|
|
BList *fSWindowList,
|
|
|
|
*fBitmapList,
|
|
|
|
*fPictureList;
|
|
|
|
ServerCursor *fAppCursor;
|
|
|
|
sem_id fLockSem;
|
|
|
|
bool fCursorHidden;
|
|
|
|
bool fIsActive;
|
|
|
|
int32 fHandlerToken;
|
2003-01-24 17:36:15 +03:00
|
|
|
};
|
|
|
|
|
2003-02-07 20:30:17 +03:00
|
|
|
#endif
|