User Documentation
RAVL, Recognition And Vision Library
DEVELOP HOME PAGE CLASS LIST CONTENTS
Ravl - GUI - Control - StatusBarC
 

  PUBLIC
StatusBarC::StatusBarC(void)
StatusBarC::StatusBarC(const StringC &)
StatusBarC::StatusBarC(const StatusBarC &)
StatusBarC::StatusBarC(const StatusBarC &,const char *)
StatusBarC::GUIChangeContext(const char *)
StatusBarC::ChangeContext(const char *)
StatusBarC::Push(const StringC &)
StatusBarC::PushTimed(RealT,const StringC &)
StatusBarC::PushTimedF(RealT &,StringC &)
StatusBarC::PushF(StringC &)
StatusBarC::Pop(void)
StatusBarC::Next(const StringC &)
StatusBarC::GUIPush(IntT &,StringC &)
StatusBarC::GUIPop(IntT &)
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::References(void) const
RCHandleC::operator <<(ostream &,const RCHandleC &)
RCHandleC::operator >>(istream &,RCHandleC &)

   StatusBarC   
 
Status bar.
 
include "Ravl/GUI/StatusBar.hh"
Created:25/06/99 
User Level:Normal
Library:RavlGUI
In Scope:RavlGUIN

Comments:
Note: Messages sent to an invalid StatusBar are redirected to cerr.

Parent Classes: Variables:
Methods:
StatusBarC()
Default constructor.
Creates an invalid handle.

StatusBarC(const StringC & initMsg)
Constructor.

StatusBarC(const StatusBarC & oth)
Copy constructor.
New handle inherits parent handles context.

StatusBarC(const StatusBarC & oth,const char * name)
Copy, but with new context.
GUI Thread only.

bool GUIChangeContext(const char * name)
Change context.
Call with GUI thread only! 'Default' if none set.

void ChangeContext(const char * name)
Change context.
Thread safe.

NB: This can ONLY be called AFTER the GUI thread has been started, and MUST NOT be called from the GUI thread itself. (Use GUIChangeContext if this is the case.)

Note: This call locks until the context is set, this may be delayed by other GUI activity.


bool Push(const StringC & str)
Push message.
Thread safe.

bool PushTimed(RealT t,const StringC & str)
Display a message for 't' seconds.
Does Push, wait t, Pop.

bool PushTimedF(RealT & t,StringC & str)
Display a message for 't' seconds.
Does Push, wait t, Pop.

bool PushF(StringC & str)
Push message.
Included for signal funcs. Thread safe.

bool Pop()
Pop message.
Thread safe.

void Next(const StringC & str)
Replace current message with next one.
Thread safe.

bool GUIPush(IntT & context,StringC & str)
Push message.
GUI Thread only.

bool GUIPop(IntT & context)
Pop message.
GUI Thread only.

#include "Ravl/GUI/Widget.hh"
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.

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: 25/06/99, Documentation by CxxDoc: Tue Aug 13 09:59:02 2002