Cleaner BeIDE project

This commit is contained in:
ocoursiere
2002-09-27 23:30:07 +00:00
parent 1f0f41cc39
commit d6f571719b
14 changed files with 742 additions and 0 deletions

View File

@@ -0,0 +1,273 @@
#ifndef _CLIPBOARD_CPP_
#define _CLIPBOARD_CPP_
/***********************************************************************
* AUTHOR: nobody <baron>
* FILE: Clipboard.cpp
* DATE: Fri Sep 27 23:26:07 2002
* DESCR:
***********************************************************************/
#include "Clipboard.h"
#include <beobj.h>
#if defined(__cplusplus)
extern "C" {
#endif
/*
* Method: BClipboard::BClipboard()
* Descr:
*/
TCPlusObject BClipboard_Create(const char *name,
bool transient)
{
return new BClipboard(name,
transient);
}
/*
* Method: BClipboard::~BClipboard()
* Descr:
*/
void BClipboard_Free(BClipboard *Clipboard)
{
delete Clipboard;
}
/*
* Method: BClipboard::Name()
* Descr:
*/
const char *
BClipboard_Name(BClipboard *Clipboard)
{
return Clipboard->Name();
}
/*
* Method: BClipboard::LocalCount()
* Descr:
*/
uint32
BClipboard_LocalCount(BClipboard *Clipboard)
{
return Clipboard->LocalCount();
}
/*
* Method: BClipboard::SystemCount()
* Descr:
*/
uint32
BClipboard_SystemCount(BClipboard *Clipboard)
{
return Clipboard->SystemCount();
}
/*
* Method: BClipboard::StartWatching()
* Descr:
*/
status_t
BClipboard_StartWatching(BClipboard *Clipboard, BMessenger target)
{
return Clipboard->StartWatching(target);
}
/*
* Method: BClipboard::StopWatching()
* Descr:
*/
status_t
BClipboard_StopWatching(BClipboard *Clipboard, BMessenger target)
{
return Clipboard->StopWatching(target);
}
/*
* Method: BClipboard::Lock()
* Descr:
*/
bool
BClipboard_Lock(BClipboard *Clipboard)
{
return Clipboard->Lock();
}
/*
* Method: BClipboard::Unlock()
* Descr:
*/
void
BClipboard_Unlock(BClipboard *Clipboard)
{
Clipboard->Unlock();
}
/*
* Method: BClipboard::IsLocked()
* Descr:
*/
bool
BClipboard_IsLocked(BClipboard *Clipboard)
{
return Clipboard->IsLocked();
}
/*
* Method: BClipboard::Clear()
* Descr:
*/
status_t
BClipboard_Clear(BClipboard *Clipboard)
{
return Clipboard->Clear();
}
/*
* Method: BClipboard::Commit()
* Descr:
*/
status_t
BClipboard_Commit(BClipboard *Clipboard)
{
return Clipboard->Commit();
}
/*
* Method: BClipboard::Revert()
* Descr:
*/
status_t
BClipboard_Revert(BClipboard *Clipboard)
{
return Clipboard->Revert();
}
/*
* Method: BClipboard::DataSource()
* Descr:
*/
BMessenger
BClipboard_DataSource(BClipboard *Clipboard)
{
return Clipboard->DataSource();
}
/*
* Method: BClipboard::Data()
* Descr:
*/
BMessage *
BClipboard_Data(BClipboard *Clipboard)
{
return Clipboard->Data();
}
/*
* Method: BClipboard::BClipboard()
* Descr:
*/
/*TCPlusObject BClipboard_Create(TPasObject PasObject, const BClipboard &)
{
return new BPClipboard(PasObject, );
}*/
/*
* Method: BClipboard::operator=()
* Descr:
*/
/*BClipboard &
BClipboard_operator=(BClipboard *Clipboard, const BClipboard &)
{
return Clipboard->operator=();
}*/
/*
* Method: BClipboard::_ReservedClipboard1()
* Descr:
*/
/*void
BClipboard__ReservedClipboard1(BClipboard *Clipboard)
{
Clipboard->_ReservedClipboard1();
}*/
/*
* Method: BClipboard::_ReservedClipboard2()
* Descr:
*/
/*void
BClipboard__ReservedClipboard2(BClipboard *Clipboard)
{
Clipboard->_ReservedClipboard2();
}*/
/*
* Method: BClipboard::_ReservedClipboard3()
* Descr:
*/
/*void
BClipboard__ReservedClipboard3(BClipboard *Clipboard)
{
Clipboard->_ReservedClipboard3();
}*/
/*
* Method: BClipboard::AssertLocked()
* Descr:
*/
/*bool
BClipboard_AssertLocked(BClipboard *Clipboard)
{
return Clipboard->AssertLocked();
}*/
/*
* Method: BClipboard::DownloadFromSystem()
* Descr:
*/
/*status_t
BClipboard_DownloadFromSystem(BClipboard *Clipboard, bool force)
{
return Clipboard->DownloadFromSystem(force);
}*/
/*
* Method: BClipboard::UploadToSystem()
* Descr:
*/
/*status_t
BClipboard_UploadToSystem(BClipboard *Clipboard)
{
return Clipboard->UploadToSystem();
}*/
#if defined(__cplusplus)
}
#endif
#endif /* _CLIPBOARD_CPP_ */

View File

@@ -0,0 +1,53 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _APPLICATION_H_
#define _APPLICATION_H_
#include <Application.h>
#include <Archivable.h>
#include <Message.h>
// #include <Control.cpp>
#include <window.h>
#include <view.h>
#include <point.h>
#include <rect.h>
#include <roster.h>
#include <looper.h>
#include <handler.h>
#include <archivable.h>
#include <message.h>
#include <beobj.h>
class BPApplication : public BApplication, public virtual BPLooper
{
public:
BPApplication(TPasObject PasObject, const char *signature);
BPApplication(TPasObject PasObject, const char *signature,
status_t *error);
virtual void AppActivated(bool active);
virtual void ReadyToRun(void);
virtual bool QuitRequested(void);
virtual void MessageReceived(BMessage *message);
private:
};
#endif /* _APPLICATION_H_ */

View File

@@ -0,0 +1,36 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _HANDLER_H_
#define _HANDLER_H_
#include <Handler.h>
#include <beobj.h>
class BPHandler : public BHandler, public virtual BPasObject
{
public:
BPHandler(TPasObject PasObject, const char *name = NULL);
BPHandler(TPasObject PasObject, BMessage *archive);
virtual ~BPHandler(void);
virtual void MessageReceived(BMessage *message);
private:
};
#endif /* _HANDLER_H_ */

View File

@@ -0,0 +1,43 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _LOOPER_H_
#define _LOOPER_H_
#include <Looper.h>
#include <Message.h>
#include <OS.h>
#include <beobj.h>
#include <handler.h>
class BPLooper : public BLooper, public virtual BPHandler
{
public:
BPLooper(TPasObject PasObject, const char *name = NULL,
int32 priority = B_NORMAL_PRIORITY,
int32 portCapacity = B_LOOPER_PORT_DEFAULT_CAPACITY);
virtual ~BPLooper();
virtual void DispatchMessage(BMessage *message, BHandler *target);
virtual bool QuitRequested(void);
private:
};
#endif /* _LOOPER_H_ */

View File

@@ -0,0 +1,38 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _MESSAGE_H_
#define _MESSAGE_H_
#include <Application.h>
#include <Message.h>
#include <SupportDefs.h>
#include <beobj.h>
class BPMessage : public BMessage, private BPasObject
{
public:
BPMessage(TPasObject PasObject);
BPMessage(TPasObject PasObject, uint32 what);
BPMessage(TPasObject PasObject, TCPlusObject message);
private:
};
#endif /* _MESSAGE_H_ */

View File

@@ -0,0 +1,24 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _ROSTER_H_
#define _ROSTER_H_
#include <Roster.h>
#endif /* _ROSTER_H_ */

View File

@@ -0,0 +1,38 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _BEOBJ_H_
#define _BEOBJ_H_
typedef void* TPasObject;
typedef void* TCPlusObject;
typedef char *(*BPasObject_GetPasClassName_hook)(TPasObject PasObject);
class BPasObject
{
public:
BPasObject(TPasObject PasObject);
TPasObject GetPasObject(void) const;
virtual ~BPasObject(void);
char *GetPasClassName(void);
private:
TPasObject FPasObject;
};
#endif /* _BEOBJ_H_ */

View File

@@ -0,0 +1,19 @@
unit graphicdefs;
interface
{$PACKRECORDS C}
type
TRGB_color = record
red : byte;
green : byte;
blue : byte;
alpha : byte;
end;
implementation
initialization
end.

View File

@@ -0,0 +1,34 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _POINT_H_
#define _POINT_H_
#include <Point.h>
#include <beobj.h>
class BPPoint : public BPoint, public BPasObject
{
public:
BPPoint(TPasObject PasObject, float x, float y);
BPPoint(TPasObject PasObject, const BPoint& point);
BPPoint(TPasObject PasObject);
};
#endif _POINT_H_ /* _POINT_H_ */

View File

@@ -0,0 +1,37 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _RECT_H_
#define _RECT_H_
#include <Point.h>
#include <Rect.h>
#include <rect.h>
#include <beobj.h>
class BPRect : public BRect, public BPasObject
{
public:
BPRect(TPasObject PasObject);
BPRect(TPasObject PasObject, const BRect & rect);
BPRect(TPasObject PasObject, float l, float t, float r, float b);
BPRect(TPasObject PasObject, BPoint leftTop, BPoint rightBottom);
};
#endif _RECT_H_ /* _RECT_H_ */

View File

@@ -0,0 +1,61 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _VIEW_H_
#define _VIEW_H_
#include <View.h>
#include <OS.h>
#include <handler.h>
#include <beobj.h>
class BPView : public BView, public virtual BPHandler
{
public:
BPView(TPasObject PasObject,
BRect frame,
const char *name,
uint32 resizingMode,
uint32 flags);
BPView(TPasObject PasObject, BMessage *archive);
// virtual void DispatchMessage(BMessage *message, BHandler *target);
// virtual bool QuitRequested(void);
virtual void AllAttached(void);
virtual void AttachedToWindow(void);
virtual void AllDetached(void);
virtual void DetachedFromWindow(void);
virtual void Draw(BRect updateRect);
virtual void DrawAfterChildren(BRect updateRect);
virtual void FrameMoved(BPoint parentPoint);
virtual void FrameResized(float width, float height);
virtual void GetPreferredSize(float *width, float *height);
virtual void ResizeToPreferred(void);
virtual void KeyDown(const char *bytes, int32 numBytes);
virtual void KeyUp(const char *bytes, int32 numBytes);
virtual void MouseDown(BPoint point);
virtual void MouseMoved(BPoint point, uint32 transit, const BMessage *message);
virtual void MouseUp(BPoint point);
virtual void Pulse(void);
// virtual void TargetedByScrollView(BScrollView *scroller);
virtual void WindowActivated(bool active);
private:
};
#endif /* _VIEW_H_ */

View File

@@ -0,0 +1,44 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _WINDOW_H_
#define _WINDOW_H_
#include <Window.h>
#include <OS.h>
#include <looper.h>
#include <window.h>
#include <beobj.h>
class BPWindow : public BWindow, public BPLooper
{
public:
BPWindow(TPasObject PasObject,
BRect frame,
const char *title,
window_type type,
uint32 flags,
uint32 workspaces = B_CURRENT_WORKSPACE);
// virtual void DispatchMessage(BMessage *message, BHandler *target);
// virtual bool QuitRequested(void);
private:
};
#endif /* _WINDOW_H_ */

View File

@@ -0,0 +1,42 @@
/* BePascal - A pascal wrapper around the BeOS API
Copyright (C) 2002 Olivier Coursiere
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef _ARCHIVABLE_H_
#define _ARCHIVABLE_H_
#include <Archivable.h>
#include <message.h>
#include <beobj.h>
class _EXPORT BPArchivable : public BArchivable, private BPasObject
{
public:
BPArchivable(TPasObject PasObject);
BPArchivable(TPasObject PasObject, BMessage *from);
~BPArchivable(void);
virtual status_t Archive(BMessage *into, bool deep = true) const;
virtual status_t ArchiveFromPascal(BMessage *into, bool deep = true);
static BArchivable *Instantiate(BMessage *from);
private:
};
#endif /* _ARCHIVABLE_H_ */