Developer Documentation
RAVL, Recognition And Vision Library
USER HOME PAGE CLASS LIST CONTENTS
Ravl - GUI - Control - SliderC
 

  PUBLIC
SliderC::SliderC(void)
SliderC::SliderC(RealT,RealT,RealT,RealT,RealT,RealT)
SliderC::SliderC(bool,RealT,RealT,RealT,RealT,RealT,RealT)
SliderC::SliderC(SliderBodyC &)
SliderC::Body(void)
SliderC::Body(void) const
SliderC::GUIUpdateValue(RealT &)
SliderC::GUIUpdateRange(RealT &,RealT &)
SliderC::GUIUpdate(RealT &,RealT &,RealT &,RealT &)
SliderC::SetValuePosition(GtkPositionType)
SliderC::SetDrawValue(bool)
SliderC::UpdateValue(RealT)
SliderC::UpdateRange(RealT,RealT)
SliderC::Update(RealT,RealT,RealT,RealT)
SliderC::Upper(void) const
SliderC::Lower(void) const
SliderC::SigChanged(void)
WidgetC::Body(void)
WidgetC::Body(void) const
WidgetC::GUISetState(GtkStateType &)
WidgetC::Destroy(void)
WidgetC::Widget(void)
WidgetC::WidgetName(void) const
WidgetC::Name(void) const
WidgetC::WidgetID(void) const
WidgetC::Create(void)
WidgetC::GUIShow(void)
WidgetC::GUIHide(void)
WidgetC::Show(void)
WidgetC::Hide(void)
WidgetC::Position(void) const
WidgetC::Size(void) const
WidgetC::GUISetUSize(IntT,IntT)
WidgetC::SetState(GtkStateType)
WidgetC::Rectangle(void) const
WidgetC::operator +(const WidgetC &) const
WidgetC::Signal(const char *)
WidgetC::SetToolTip(const char *,const char *)
WidgetC::AddEventMask(IntT)
WidgetC::DelEventMask(IntT)
WidgetC::ShapeCombineMask(GdkBitmap *,int,int)
WidgetC::GUIGrabFocus(void)
WidgetC::GUIDNDSource(ModifierTypeT,const SArray1dC &,DragActionT)
WidgetC::GUIDNDSourceDisable(void)
WidgetC::GUIDNDTarget(DestDefaultsT,const SArray1dC &,DragActionT)
WidgetC::GUIDNDTargetDisable(void)
RCHandleC::operator =(const RCHandleC &)
RCHandleC::DeepCopy(UIntT) const
RCHandleC::operator ==(const RCHandleC &) const
RCHandleC::operator !=(const RCHandleC &) const
RCHandleC::Hash(void) const
RCHandleC::IsValid(void) const
RCHandleC::Invalidate(void)
RCHandleC::IsHandleType(const DT &) const
RCHandleC::CheckHandleType(const DT &) const
RCHandleC::Body(void)
RCHandleC::Body(void) const
RCHandleC::References(void) const
RCHandleC::operator <<(ostream &,const RCHandleC &)
RCHandleC::operator >>(istream &,RCHandleC &)

   SliderC   
 
Slider
 
include "Ravl/GUI/Slider.hh"
Created:23/03/99 
Source file:Ravl/GUI/GTK/Slider.hh
User Level:Normal
Library:RavlGUI
Example:exSlider.cc
In Scope:RavlGUIN

Parent Classes: Methods:
SliderC()
Default constructor.

SliderC(RealT nvalue,RealT nlower,RealT nupper,RealT nstep_increment = 1,RealT npage_increment = 1,RealT npage_size = 1)
Constructor

SliderC(bool nvert,RealT nvalue,RealT nlower,RealT nupper,RealT nstep_increment = 1,RealT npage_increment = 1,RealT npage_size = 1)
Constructor

SliderC(SliderBodyC & bod)
Body Constructor.

SliderBodyC & Body()
Access body.

const SliderBodyC & Body() const
Access body.

bool GUIUpdateValue(RealT & val)
Update the slider value.

bool GUIUpdateRange(RealT & lower,RealT & upper)
Update the slider value.

bool GUIUpdate(RealT & val,RealT & lower,RealT & upper,RealT & inc)
Update the slider value.

void SetValuePosition(GtkPositionType pos)
Set number position.
Only has effect BEFORE Create() is called.

void SetDrawValue(bool ndrawValue)
Set draw value.

bool UpdateValue(RealT val)
Update the slider value.

bool UpdateRange(RealT lower,RealT upper)
Update the slider value.

bool Update(RealT val,RealT lower,RealT upper,RealT inc = 1)
Update the slider value.

RealT Upper() const
Read upper limit

RealT Lower() const
Read lower limit

Signal1C<RealT> & SigChanged()
Access changed signal.

#include "Ravl/GUI/Widget.hh"
WidgetBodyC & Body()
Access body.

const WidgetBodyC & Body() const
Access body.

bool GUISetState(GtkStateType & state)
Set state of widget.

void Destroy()
See body class for details.

GtkWidget * Widget()
Access widget.

StringC WidgetName() const
Get widget's name.
Call only from GUI thread.

StringC Name() const
Get name of widget.
Defaults to WidgetName(), but may be differnt for Lables etc.

int WidgetID() const
Get widget id.

bool Create()
Create the widget.

bool GUIShow()
Show widget on the display.
Call only from GUI thread.

bool GUIHide()
Hide widget on the display.
Call only from GUI thread.

bool Show()
Show widget on the display.
Thread safe.

bool Hide()
Hide widget on the display.
Thread safe.

Index2dC Position() const
Widget position.

Index2dC Size() const
Size of wiget in pixels

bool GUISetUSize(IntT x,IntT y)
Set size of widget.
GUI thread only.

void SetState(GtkStateType state)
Set state
One of: GTK_STATE_NORMAL GTK_STATE_ACTIVE GTK_STATE_PRELIGHT, GTK_STATE_SELECTED GTK_STATE_INSENSITIVE

IndexRange2dC Rectangle() const
Widget position and extent within its parent window.

DListC<WidgetC> operator +(const WidgetC & widge) const
Add a widget into a list.

Signal0C & Signal(const char * nm)
Get handle for named signal.
Signal is created and connected when this function is first called. There after the same signal is returned.

If the signal is unrecognised an invalid handle is returned.

The exact signal type depends on the signal requested, if not otherwise specified it is a Signal1C.


void SetToolTip(const char * text,const char * ctxt = 0)
Set the tool tip for the widget.
NB. Not all widgets can display tooltips.

void AddEventMask(IntT event)
Add to the event mask.

void DelEventMask(IntT event)
Remove from the event mask.

void ShapeCombineMask(GdkBitmap * mask,int off_x = 0,int off_y = 0)
Make a shape mask for the widget.
GUI thread only.

void GUIGrabFocus()
Grab keyboard focus.

bool GUIDNDSource(ModifierTypeT flags,const SArray1dC<GtkTargetEntry> & entries,DragActionT actions)
Setup widget as drag and drop source.
e.g. GDK_BUTTON1_MASK GDK_BUTTON2_MASK or GDK_BUTTON3_MASK

bool GUIDNDSourceDisable()
Disable widget as a drag and drop source.

bool GUIDNDTarget(DestDefaultsT flags,const SArray1dC<GtkTargetEntry> & entries,DragActionT actions)
Setup widget as drag and drop target.

bool GUIDNDTargetDisable()
Disable widget as a drag and drop source.

#include "Ravl/RefCounter.hh"
const RCHandleC<WidgetBodyC> & operator =(const RCHandleC<WidgetBodyC> & oth)
Assign handle.

RCHandleC<WidgetBodyC> DeepCopy(UIntT levels = ((UIntT))) const
Do a deep copy of the object.

bool operator ==(const RCHandleC<WidgetBodyC> & oth) const
Are handles to the same object ?

bool operator !=(const RCHandleC<WidgetBodyC> & oth) const
Are handles to different objects ?

UIntT Hash() const
Default hash function.
This hashes on the address of the body.

bool IsValid() const
Test if this is a valid handle.

void Invalidate()
Invalidate this handle.
Unattaches the body from the handle.

bool IsHandleType(const DT &) const
Is handle of given type ?

void CheckHandleType(const DT & dummy) const
Check handle type. Throw an expception if not.

WidgetBodyC & Body()
Access body of object.

const WidgetBodyC & Body() const
Constant access to body of object.

UIntT References() const
Find the number of references to the body of this object.

ostream & operator <<(ostream & strm,const RCHandleC<WidgetBodyC> & obj)

istream & operator >>(istream & strm,RCHandleC<WidgetBodyC> & obj)


Maintainer:Charles Galambos, Created: 23/03/99, Documentation by CxxDoc: Tue Aug 13 09:59:30 2002