758b1d0e05
categories: * Missing includes (like <stdlib.h> and <string.h>). * Linking against $(TARGET_LIBSTDC++) instead of libstdc++.r4.so. * Local variables shadowing parameters. * Default parameters in function definitions (as opposed to function declarations). * All C++ stuff (nothrow, map, set, vector, min, max,...) must be imported explicitly from the std:: namespace now. * "new (sometype)[...]" must read "new sometype[...]", even if sometype is something like "const char *". * __FUNCTION__ is no longer a string literal (but a string expression), i.e. 'printf(__FUNCTION__ ": ...\n")' is invalid code. * A type cast results in a non-lvalue. E.g. "(char *)buffer += bytes" is an invalid expression. * "friend class SomeClass" only works when SomeClass is known before. Otherwise the an inner class with that name is considered as friend. gcc 4 is much pickier about scopes. * gcc 4 is generally stricter with respect to type conversions in C. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14878 a95241bf-73f2-0310-859d-f6bbb57e9c96
117 lines
3.4 KiB
C++
117 lines
3.4 KiB
C++
/*
|
|
* Copyright 2001-2005, Haiku Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SHELF_H
|
|
#define _SHELF_H
|
|
|
|
|
|
#include <Handler.h>
|
|
#include <List.h>
|
|
|
|
class BDataIO;
|
|
class BView;
|
|
class BEntry;
|
|
struct entry_ref;
|
|
|
|
class _rep_data_;
|
|
class _TContainerViewFilter_;
|
|
|
|
class BShelf : public BHandler {
|
|
public:
|
|
BShelf(BView* view, bool allowDrags = true, const char* shelfType = NULL);
|
|
BShelf(const entry_ref* ref, BView* view, bool allowDrags = true,
|
|
const char* shelfType = NULL);
|
|
BShelf(BDataIO* stream, BView* view, bool allowDrags = true,
|
|
const char* shelfType = NULL);
|
|
BShelf(BMessage *data);
|
|
virtual ~BShelf();
|
|
|
|
virtual status_t Archive(BMessage* data, bool deep = true) const;
|
|
static BArchivable* Instantiate(BMessage* archive);
|
|
|
|
virtual void MessageReceived(BMessage *msg);
|
|
status_t Save();
|
|
virtual void SetDirty(bool state);
|
|
bool IsDirty() const;
|
|
|
|
virtual BHandler* ResolveSpecifier(BMessage *msg,
|
|
int32 index, BMessage *specifier,
|
|
int32 form, const char *property);
|
|
virtual status_t GetSupportedSuites(BMessage* data);
|
|
|
|
virtual status_t Perform(perform_code d, void *arg);
|
|
bool AllowsDragging() const;
|
|
void SetAllowsDragging(bool state);
|
|
bool AllowsZombies() const;
|
|
void SetAllowsZombies(bool state);
|
|
bool DisplaysZombies() const;
|
|
void SetDisplaysZombies(bool state);
|
|
bool IsTypeEnforced() const;
|
|
void SetTypeEnforced(bool state);
|
|
|
|
status_t SetSaveLocation(BDataIO *data_io);
|
|
status_t SetSaveLocation(const entry_ref *ref);
|
|
BDataIO* SaveLocation(entry_ref *ref) const;
|
|
|
|
status_t AddReplicant(BMessage *data, BPoint location);
|
|
status_t DeleteReplicant(BView *replicant);
|
|
status_t DeleteReplicant(BMessage *data);
|
|
status_t DeleteReplicant(int32 index);
|
|
int32 CountReplicants() const;
|
|
BMessage* ReplicantAt(int32 index,
|
|
BView **view = NULL,
|
|
uint32 *uid = NULL,
|
|
status_t *perr = NULL) const;
|
|
int32 IndexOf(const BView *replicantView) const;
|
|
int32 IndexOf(const BMessage *archive) const;
|
|
int32 IndexOf(uint32 id) const;
|
|
|
|
protected:
|
|
virtual bool CanAcceptReplicantMessage(BMessage*) const;
|
|
virtual bool CanAcceptReplicantView(BRect, BView*, BMessage*) const;
|
|
virtual BPoint AdjustReplicantBy(BRect, BMessage*) const;
|
|
|
|
virtual void ReplicantDeleted(int32 index, const BMessage *archive,
|
|
const BView *replicant);
|
|
|
|
private:
|
|
friend class _TContainerViewFilter_;
|
|
|
|
virtual void _ReservedShelf2();
|
|
virtual void _ReservedShelf3();
|
|
virtual void _ReservedShelf4();
|
|
virtual void _ReservedShelf5();
|
|
virtual void _ReservedShelf6();
|
|
virtual void _ReservedShelf7();
|
|
virtual void _ReservedShelf8();
|
|
|
|
BShelf(const BShelf& other);
|
|
BShelf& operator=(const BShelf& other);
|
|
|
|
status_t _Archive(BMessage* data) const;
|
|
void _InitData(BEntry* entry, BDataIO* stream,
|
|
BView* view, bool allowDrags);
|
|
status_t _DeleteReplicant(_rep_data_* replicant);
|
|
status_t _RealAddReplicant(BMessage* data,
|
|
BPoint* location, uint32 uniqueID);
|
|
status_t _GetProperty(BMessage* message, BMessage* reply);
|
|
|
|
private:
|
|
BView* fContainerView;
|
|
BDataIO* fStream;
|
|
BEntry* fEntry;
|
|
BList fReplicants;
|
|
_TContainerViewFilter_* fFilter;
|
|
uint32 fGenCount;
|
|
bool fAllowDragging;
|
|
bool fDirty;
|
|
bool fDisplayZombies;
|
|
bool fAllowZombies;
|
|
bool fTypeEnforced;
|
|
|
|
uint32 _reserved[8];
|
|
};
|
|
|
|
#endif /* _SHELF_H */
|