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>
|
|
|
|
// Description: Server-side BApplication counterpart
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef _SERVERAPP_H_
|
|
|
|
#define _SERVERAPP_H_
|
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
#include <String.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;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
\class ServerApp ServerApp.h
|
|
|
|
\brief Counterpart to BApplication within the app_server
|
|
|
|
*/
|
|
|
|
class ServerApp
|
|
|
|
{
|
|
|
|
public:
|
2003-03-19 04:12:53 +03:00
|
|
|
ServerApp(port_id sendport, port_id rcvport, int32 handlerID, char *signature);
|
2003-01-24 17:36:15 +03:00
|
|
|
~ServerApp(void);
|
|
|
|
|
|
|
|
bool Run(void);
|
|
|
|
static int32 MonitorApp(void *data);
|
|
|
|
void Lock(void);
|
|
|
|
void Unlock(void);
|
|
|
|
bool IsLocked(void);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Determines whether the application is the active one
|
|
|
|
\return true if active, false if not.
|
|
|
|
*/
|
|
|
|
bool IsActive(void) const { return _isactive; }
|
|
|
|
|
2003-09-17 23:28:31 +04:00
|
|
|
void Activate(bool value);
|
2003-01-24 17:36:15 +03:00
|
|
|
bool PingTarget(void);
|
|
|
|
|
2003-02-04 03:20:15 +03:00
|
|
|
void PostMessage(int32 code, size_t size=0, int8 *buffer=NULL);
|
2003-09-17 23:28:31 +04:00
|
|
|
|
|
|
|
void SetAppCursor(void);
|
2003-01-24 17:36:15 +03:00
|
|
|
protected:
|
2003-06-23 06:54:52 +04:00
|
|
|
friend class AppServer;
|
|
|
|
friend class ServerWindow;
|
2003-10-04 23:10:11 +04:00
|
|
|
void _DispatchMessage(PortMessage *msg);
|
2003-03-12 17:29:59 +03:00
|
|
|
ServerBitmap *_FindBitmap(int32 token);
|
2003-01-24 17:36:15 +03:00
|
|
|
|
|
|
|
port_id _sender,_receiver;
|
|
|
|
BString _signature;
|
|
|
|
thread_id _monitor_thread;
|
|
|
|
team_id _target_id;
|
|
|
|
PortLink *_applink;
|
2003-03-21 18:49:28 +03:00
|
|
|
BList *_winlist, *_bmplist, *_piclist;
|
2003-01-24 17:36:15 +03:00
|
|
|
DisplayDriver *_driver;
|
|
|
|
ServerCursor *_appcursor;
|
|
|
|
sem_id _lock;
|
2003-02-24 00:40:44 +03:00
|
|
|
bool _cursorhidden;
|
2003-01-24 17:36:15 +03:00
|
|
|
bool _isactive;
|
2003-03-19 04:12:53 +03:00
|
|
|
int32 _handlertoken;
|
2003-01-24 17:36:15 +03:00
|
|
|
};
|
|
|
|
|
2003-02-07 20:30:17 +03:00
|
|
|
#endif
|