1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: scrolbar.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-05-20 14:01:55 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKSCROLLBARH__
|
|
|
|
#define __GTKSCROLLBARH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
1999-06-14 23:04:05 +00:00
|
|
|
|
|
|
|
#if wxUSE_SCROLLBAR
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxScrollBar;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
extern const char *wxScrollBarNameStr;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxScrollBar
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxScrollBar: public wxControl
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxScrollBar)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
1998-08-23 03:22:56 +00:00
|
|
|
wxScrollBar(void) { m_adjust = (GtkAdjustment *) NULL; m_oldPos = 0.0; };
|
1998-08-14 10:07:38 +00:00
|
|
|
inline wxScrollBar( wxWindow *parent, wxWindowID id,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
long style = wxSB_HORIZONTAL,
|
1998-08-14 10:07:38 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxScrollBarNameStr )
|
|
|
|
{
|
|
|
|
Create( parent, id, pos, size, style, validator, name );
|
|
|
|
}
|
|
|
|
bool Create( wxWindow *parent, wxWindowID id,
|
1998-05-20 14:01:55 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
long style = wxSB_HORIZONTAL,
|
1998-08-14 10:07:38 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxScrollBarNameStr );
|
|
|
|
~wxScrollBar(void);
|
1998-11-28 13:38:40 +00:00
|
|
|
int GetThumbPosition(void) const;
|
1998-05-20 14:01:55 +00:00
|
|
|
int GetThumbSize() const;
|
|
|
|
int GetPageSize() const;
|
|
|
|
int GetRange() const;
|
1998-11-28 13:38:40 +00:00
|
|
|
virtual void SetThumbPosition( int viewStart );
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetScrollbar( int position, int thumbSize, int range, int pageSize,
|
|
|
|
bool refresh = TRUE );
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-10-29 18:03:18 +00:00
|
|
|
// Backward compatibility
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
int GetValue(void) const;
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetValue( int viewStart );
|
1998-05-20 14:01:55 +00:00
|
|
|
void GetValues( int *viewStart, int *viewLength, int *objectLength, int *pageLength) const;
|
|
|
|
int GetViewLength() const;
|
|
|
|
int GetObjectLength() const;
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetPageSize( int pageLength );
|
|
|
|
void SetObjectLength( int objectLength );
|
|
|
|
void SetViewLength( int viewLength );
|
|
|
|
|
1998-09-07 12:29:07 +00:00
|
|
|
// implementation
|
|
|
|
|
|
|
|
bool IsOwnGtkWindow( GdkWindow *window );
|
1998-10-29 18:03:18 +00:00
|
|
|
void ApplyWidgetStyle();
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
GtkAdjustment *m_adjust;
|
|
|
|
float m_oldPos;
|
|
|
|
};
|
|
|
|
|
1999-06-14 23:04:05 +00:00
|
|
|
#endif
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
// __GTKSCROLLBARH__
|