1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/gtk/scrolbar.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-25 12:59:28 +00:00
|
|
|
#ifndef _WX_GTK_SCROLLBAR_H_
|
|
|
|
#define _WX_GTK_SCROLLBAR_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxScrollBar
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxScrollBar: public wxScrollBarBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-11-22 19:44:25 +00:00
|
|
|
public:
|
2006-05-17 04:54:13 +00:00
|
|
|
wxScrollBar();
|
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 )
|
|
|
|
{
|
1999-11-27 16:42:26 +00:00
|
|
|
Create( parent, id, pos, size, style, validator, name );
|
1998-08-14 10:07:38 +00:00
|
|
|
}
|
|
|
|
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 );
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxScrollBar();
|
2014-03-30 00:02:23 +00:00
|
|
|
int GetThumbPosition() const wxOVERRIDE;
|
|
|
|
int GetThumbSize() const wxOVERRIDE;
|
|
|
|
int GetPageSize() const wxOVERRIDE;
|
|
|
|
int GetRange() const wxOVERRIDE;
|
|
|
|
virtual void SetThumbPosition( int viewStart ) wxOVERRIDE;
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetScrollbar( int position, int thumbSize, int range, int pageSize,
|
2014-03-30 00:02:23 +00:00
|
|
|
bool refresh = true ) wxOVERRIDE;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2006-05-17 04:54:13 +00:00
|
|
|
void SetThumbSize(int thumbSize);
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetPageSize( int pageLength );
|
2006-05-17 04:54:13 +00:00
|
|
|
void SetRange(int range);
|
1998-07-04 15:17:59 +00:00
|
|
|
|
2004-05-06 17:26:25 +00:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2009-08-21 10:41:26 +00:00
|
|
|
|
1999-11-22 19:44:25 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxScrollBar)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2006-08-25 12:59:28 +00:00
|
|
|
#endif // _WX_GTK_SCROLLBAR_H_
|