13
0
livetrax/libs/gtkmm2/gtk/gtkmm/statusbar.h
David Robillard 35fc31a1de Remove ancient/unused flowcanvas and libglademm from repository.
Update libraries to latest stable released version (except gnomecanvasmm, which is strangely packaged...).
Fixes building (at least here).


git-svn-id: svn://localhost/ardour2/trunk@2790 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-12-18 06:05:55 +00:00

210 lines
6.0 KiB
C++

// -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GTKMM_STATUSBAR_H
#define _GTKMM_STATUSBAR_H
#include <glibmm.h>
/* $Id$ */
/* statusbar.h
*
* Copyright (C) 1998-2002 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <gtkmm/box.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkStatusbar GtkStatusbar;
typedef struct _GtkStatusbarClass GtkStatusbarClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gtk
{ class Statusbar_Class; } // namespace Gtk
namespace Gtk
{
/** Text status indicator
* This widget is used to display status information.
* Messages are pushed and poped onto a message stack.
* When text is pushed it replaces the old contents.
* The old text is restored when popped.
*
* It derives from Gtk::HBox so that additional information can be added
* easily.
*
* @ingroup Widgets
*/
class Statusbar : public HBox
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef Statusbar CppObjectType;
typedef Statusbar_Class CppClassType;
typedef GtkStatusbar BaseObjectType;
typedef GtkStatusbarClass BaseClassType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
virtual ~Statusbar();
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
friend class Statusbar_Class;
static CppClassType statusbar_class_;
// noncopyable
Statusbar(const Statusbar&);
Statusbar& operator=(const Statusbar&);
protected:
explicit Statusbar(const Glib::ConstructParams& construct_params);
explicit Statusbar(GtkStatusbar* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_type() G_GNUC_CONST;
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GtkObject.
GtkStatusbar* gobj() { return reinterpret_cast<GtkStatusbar*>(gobject_); }
///Provides access to the underlying C GtkObject.
const GtkStatusbar* gobj() const { return reinterpret_cast<GtkStatusbar*>(gobject_); }
public:
//C++ methods used to invoke GTK+ virtual functions:
#ifdef GLIBMM_VFUNCS_ENABLED
#endif //GLIBMM_VFUNCS_ENABLED
protected:
//GTK+ Virtual Functions (override these to change behaviour):
#ifdef GLIBMM_VFUNCS_ENABLED
#endif //GLIBMM_VFUNCS_ENABLED
//Default Signal Handlers::
#ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
virtual void on_text_pushed(guint context_id, const Glib::ustring& text);
virtual void on_text_popped(guint context_id, const Glib::ustring& text);
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
private:
public:
Statusbar();
/** Returns: an integer id
* @param context_description Textual description of what context
* the new message is being used in.
* @return An integer id.
*/
guint get_context_id(const Glib::ustring& context_description);
guint push(const Glib::ustring& text, guint context_id = 0);
/** Removes the first message in the Gtk::StatusBar's stack
* with the given context id.
*
* Note that this may not change the displayed message, if
* the message at the top of the stack has a different
* context id.
* @param context_id A context identifier.
*/
void pop(guint context_id = 0);
void remove_message(guint message_id, guint context_id = 0);
/** Sets whether the statusbar has a resize grip.
* <tt>true</tt> by default.
* @param setting <tt>true</tt> to have a resize grip.
*/
void set_has_resize_grip(bool setting = true);
/** Returns: <tt>true</tt> if the statusbar has a resize grip.
* @return <tt>true</tt> if the statusbar has a resize grip.
*/
bool get_has_resize_grip() const;
/**
* @par Prototype:
* <tt>void on_my_%text_pushed(guint context_id, const Glib::ustring& text)</tt>
*/
Glib::SignalProxy2< void,guint,const Glib::ustring& > signal_text_pushed();
/**
* @par Prototype:
* <tt>void on_my_%text_popped(guint context_id, const Glib::ustring& text)</tt>
*/
Glib::SignalProxy2< void,guint,const Glib::ustring& > signal_text_popped();
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the statusbar has a grip for resizing the toplevel.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy<bool> property_has_resize_grip() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the statusbar has a grip for resizing the toplevel.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly<bool> property_has_resize_grip() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
};
} /* namespace Gtk */
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gtk::Statusbar
*/
Gtk::Statusbar* wrap(GtkStatusbar* object, bool take_copy = false);
} //namespace Glib
#endif /* _GTKMM_STATUSBAR_H */