89208c77f1
* Fixed copyrights (puncuation and capitalization, removed authors from headers) * Updated indentation style * Unified pointer/reference style * Re-ordered some methods for better grouping where it could be done (abd adopted source accordingly) * Small coding style fixes here and there No functional change intended. +alphabranch git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32745 a95241bf-73f2-0310-859d-f6bbb57e9c96
80 lines
2.0 KiB
C++
80 lines
2.0 KiB
C++
/*
|
|
* Copyright 2006, Haiku, Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _SPLIT_VIEW_H
|
|
#define _SPLIT_VIEW_H
|
|
|
|
#include <View.h>
|
|
|
|
class BSplitLayout;
|
|
|
|
|
|
class BSplitView : public BView {
|
|
public:
|
|
BSplitView(
|
|
enum orientation orientation
|
|
= B_HORIZONTAL,
|
|
float spacing = 0.0f);
|
|
virtual ~BSplitView();
|
|
|
|
void SetInsets(float left, float top, float right,
|
|
float bottom);
|
|
void GetInsets(float* left, float* top,
|
|
float* right, float* bottom) const;
|
|
|
|
float Spacing() const;
|
|
void SetSpacing(float spacing);
|
|
|
|
orientation Orientation() const;
|
|
void SetOrientation(enum orientation orientation);
|
|
|
|
float SplitterSize() const;
|
|
void SetSplitterSize(float size);
|
|
|
|
|
|
void SetCollapsible(bool collapsible);
|
|
void SetCollapsible(int32 index, bool collapsible);
|
|
void SetCollapsible(int32 first, int32 last,
|
|
bool collapsible);
|
|
|
|
// void AddChild(BView* child);
|
|
void AddChild(BView* child, BView* sibling = NULL);
|
|
bool AddChild(BView* child, float weight);
|
|
bool AddChild(int32 index, BView* child,
|
|
float weight);
|
|
|
|
bool AddChild(BLayoutItem* child);
|
|
bool AddChild(BLayoutItem* child, float weight);
|
|
bool AddChild(int32 index, BLayoutItem* child,
|
|
float weight);
|
|
|
|
virtual void Draw(BRect updateRect);
|
|
virtual void MouseDown(BPoint where);
|
|
virtual void MouseUp(BPoint where);
|
|
virtual void MouseMoved(BPoint where, uint32 transit,
|
|
const BMessage* message);
|
|
|
|
|
|
virtual void SetLayout(BLayout* layout);
|
|
// overridden to avoid use
|
|
|
|
protected:
|
|
virtual void DrawSplitter(BRect frame,
|
|
const BRect& updateRect,
|
|
enum orientation orientation,
|
|
bool pressed);
|
|
|
|
private:
|
|
static void _DrawDefaultSplitter(BView* view, BRect frame,
|
|
const BRect& updateRect,
|
|
enum orientation orientation,
|
|
bool pressed);
|
|
|
|
private:
|
|
BSplitLayout* fSplitLayout;
|
|
};
|
|
|
|
|
|
#endif // _SPLIT_VIEW_H
|