1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: scrolbar.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 13:03:18 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-25 08:59:28 -04:00
|
|
|
#ifndef _WX_GTK_SCROLLBAR_H_
|
|
|
|
#define _WX_GTK_SCROLLBAR_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
#include "wx/defs.h"
|
1999-06-14 19:04:05 -04:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxScrollBar;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxScrollBar
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 18:58:06 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxScrollBar: public wxScrollBarBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-11-22 14:44:25 -05:00
|
|
|
public:
|
2006-05-17 00:54:13 -04:00
|
|
|
wxScrollBar();
|
1998-08-14 06:07:38 -04:00
|
|
|
inline wxScrollBar( wxWindow *parent, wxWindowID id,
|
1998-05-20 10:01:55 -04:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 11:17:59 -04:00
|
|
|
long style = wxSB_HORIZONTAL,
|
1998-08-14 06:07:38 -04:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxScrollBarNameStr )
|
|
|
|
{
|
1999-11-27 11:42:26 -05:00
|
|
|
Create( parent, id, pos, size, style, validator, name );
|
1998-08-14 06:07:38 -04:00
|
|
|
}
|
|
|
|
bool Create( wxWindow *parent, wxWindowID id,
|
1998-05-20 10:01:55 -04:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 11:17:59 -04:00
|
|
|
long style = wxSB_HORIZONTAL,
|
1998-08-14 06:07:38 -04:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxScrollBarNameStr );
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxScrollBar();
|
1999-11-27 11:42:26 -05:00
|
|
|
int GetThumbPosition() const;
|
1998-05-20 10:01:55 -04:00
|
|
|
int GetThumbSize() const;
|
|
|
|
int GetPageSize() const;
|
|
|
|
int GetRange() const;
|
1998-11-28 08:38:40 -05:00
|
|
|
virtual void SetThumbPosition( int viewStart );
|
1998-07-04 11:17:59 -04:00
|
|
|
virtual void SetScrollbar( int position, int thumbSize, int range, int pageSize,
|
2006-05-17 00:54:13 -04:00
|
|
|
bool refresh = true );
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2006-05-17 00:54:13 -04:00
|
|
|
void SetThumbSize(int thumbSize);
|
1998-07-04 11:17:59 -04:00
|
|
|
void SetPageSize( int pageLength );
|
2006-05-17 00:54:13 -04:00
|
|
|
void SetRange(int range);
|
1998-07-04 11:17:59 -04:00
|
|
|
|
2004-05-06 13:26:25 -04:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
|
|
|
|
2006-08-25 08:59:28 -04:00
|
|
|
protected:
|
|
|
|
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxScrollBar)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2006-08-25 08:59:28 -04:00
|
|
|
#endif // _WX_GTK_SCROLLBAR_H_
|