2000-02-05 01:57:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/statusbr.h
|
|
|
|
// Purpose: wxStatusBar class interface
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 05.02.00
|
|
|
|
// RCS-ID: $Id$
|
2005-05-04 18:57:50 +00:00
|
|
|
// Copyright: (c) Vadim Zeitlin
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2000-02-05 01:57:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_STATUSBR_H_BASE_
|
|
|
|
#define _WX_STATUSBR_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2006-06-09 09:51:39 +00:00
|
|
|
#include "wx/defs.h"
|
2000-02-05 01:57:38 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_STATUSBAR
|
|
|
|
|
2006-06-09 09:51:39 +00:00
|
|
|
#include "wx/window.h"
|
2002-05-02 20:07:10 +00:00
|
|
|
#include "wx/list.h"
|
2003-02-10 21:07:36 +00:00
|
|
|
#include "wx/dynarray.h"
|
2002-05-02 20:07:10 +00:00
|
|
|
|
2008-11-02 22:16:14 +00:00
|
|
|
extern WXDLLIMPEXP_DATA_CORE(const char) wxStatusBarNameStr[];
|
2006-09-06 17:36:22 +00:00
|
|
|
|
2004-07-25 16:13:52 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStatusBar constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-04-21 11:10:44 +00:00
|
|
|
// wxStatusBar styles
|
2009-04-25 12:59:09 +00:00
|
|
|
#define wxSTB_SIZEGRIP 0x0010
|
|
|
|
#define wxSTB_SHOW_TIPS 0x0020
|
2009-04-21 11:10:44 +00:00
|
|
|
|
2009-04-25 12:59:09 +00:00
|
|
|
#define wxSTB_ELLIPSIZE_START 0x0040
|
|
|
|
#define wxSTB_ELLIPSIZE_MIDDLE 0x0080
|
|
|
|
#define wxSTB_ELLIPSIZE_END 0x0100
|
2009-04-21 11:10:44 +00:00
|
|
|
|
2009-04-25 12:59:09 +00:00
|
|
|
#define wxSTB_DEFAULT_STYLE (wxSTB_SIZEGRIP|wxSTB_ELLIPSIZE_END|wxSTB_SHOW_TIPS|wxFULL_REPAINT_ON_RESIZE)
|
|
|
|
|
|
|
|
|
|
|
|
// old compat style name:
|
|
|
|
#define wxST_SIZEGRIP wxSTB_SIZEGRIP
|
|
|
|
|
|
|
|
|
|
|
|
// style flags for wxStatusBar fields
|
2004-07-25 16:13:52 +00:00
|
|
|
#define wxSB_NORMAL 0x0000
|
|
|
|
#define wxSB_FLAT 0x0001
|
|
|
|
#define wxSB_RAISED 0x0002
|
|
|
|
|
2008-12-31 12:28:05 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStatusBarPane: an helper for wxStatusBar
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-03-15 19:45:34 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxStatusBarPane
|
2008-12-31 12:28:05 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStatusBarPane(int style = wxSB_NORMAL, size_t width = 0)
|
2009-08-06 00:00:32 +00:00
|
|
|
: m_nStyle(style), m_nWidth(width)
|
2009-08-06 00:01:43 +00:00
|
|
|
{ m_bEllipsized = false; }
|
|
|
|
|
|
|
|
int GetWidth() const { return m_nWidth; }
|
|
|
|
int GetStyle() const { return m_nStyle; }
|
|
|
|
wxString GetText() const { return m_text; }
|
2009-08-06 00:00:32 +00:00
|
|
|
|
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
// implementation-only from now on
|
|
|
|
// -------------------------------
|
2009-03-15 17:54:05 +00:00
|
|
|
|
2009-04-21 11:10:44 +00:00
|
|
|
bool IsEllipsized() const
|
|
|
|
{ return m_bEllipsized; }
|
2009-08-06 00:01:43 +00:00
|
|
|
void SetIsEllipsized(bool isEllipsized) { m_bEllipsized = isEllipsized; }
|
2009-04-21 11:10:44 +00:00
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
void SetWidth(int width) { m_nWidth = width; }
|
|
|
|
void SetStyle(int style) { m_nStyle = style; }
|
2008-12-31 12:28:05 +00:00
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
// set text, return true if it changed or false if it was already set to
|
|
|
|
// this value
|
|
|
|
bool SetText(const wxString& text);
|
|
|
|
|
|
|
|
// save the existing text on top of our stack and make the new text
|
|
|
|
// current; return true if the text really changed
|
|
|
|
bool PushText(const wxString& text);
|
|
|
|
|
|
|
|
// restore the message saved by the last call to Push() (unless it was
|
|
|
|
// changed by an intervening call to SetText()) and return true if we
|
|
|
|
// really restored anything
|
|
|
|
bool PopText();
|
|
|
|
|
|
|
|
private:
|
2009-03-15 17:54:05 +00:00
|
|
|
int m_nStyle;
|
2009-08-06 00:01:43 +00:00
|
|
|
int m_nWidth; // may be negative, indicating a variable-width field
|
|
|
|
wxString m_text;
|
2008-12-31 12:28:05 +00:00
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
// the array used to keep the previous values of this pane after a
|
|
|
|
// PushStatusText() call, its top element is the value to restore after the
|
|
|
|
// next PopStatusText() call while the currently shown value is always in
|
|
|
|
// m_text
|
2009-03-15 17:54:05 +00:00
|
|
|
wxArrayString m_arrStack;
|
2009-04-21 11:10:44 +00:00
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
// is the currently shown value shown with ellipsis in the status bar?
|
2009-04-21 11:10:44 +00:00
|
|
|
bool m_bEllipsized;
|
2008-12-31 12:28:05 +00:00
|
|
|
};
|
|
|
|
|
2009-06-06 12:01:46 +00:00
|
|
|
WX_DECLARE_EXPORTED_OBJARRAY(wxStatusBarPane, wxStatusBarPaneArray);
|
2008-12-31 12:28:05 +00:00
|
|
|
|
2000-02-05 01:57:38 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStatusBar: a window near the bottom of the frame used for status info
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxStatusBarBase : public wxWindow
|
2000-02-05 01:57:38 +00:00
|
|
|
{
|
|
|
|
public:
|
2001-10-14 21:38:58 +00:00
|
|
|
wxStatusBarBase();
|
|
|
|
|
|
|
|
virtual ~wxStatusBarBase();
|
|
|
|
|
|
|
|
// field count
|
|
|
|
// -----------
|
2000-02-05 01:57:38 +00:00
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
// set the number of fields and call SetStatusWidths(widths) if widths are
|
|
|
|
// given
|
|
|
|
virtual void SetFieldsCount(int number = 1, const int *widths = NULL);
|
2008-12-31 12:28:05 +00:00
|
|
|
int GetFieldsCount() const { return m_panes.GetCount(); }
|
2000-02-05 01:57:38 +00:00
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
// field text
|
|
|
|
// ----------
|
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
// just change or get the currently shown text
|
|
|
|
void SetStatusText(const wxString& text, int number = 0);
|
|
|
|
wxString GetStatusText(int number = 0) const;
|
2000-02-05 01:57:38 +00:00
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
// change the currently shown text to the new one and save the current
|
|
|
|
// value to be restored by the next call to PopStatusText()
|
2002-05-02 20:07:10 +00:00
|
|
|
void PushStatusText(const wxString& text, int number = 0);
|
|
|
|
void PopStatusText(int number = 0);
|
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
// fields widths
|
|
|
|
// -------------
|
|
|
|
|
|
|
|
// set status field widths as absolute numbers: positive widths mean that
|
|
|
|
// the field has the specified absolute width, negative widths are
|
|
|
|
// interpreted as the sizer options, i.e. the extra space (total space
|
|
|
|
// minus the sum of fixed width fields) is divided between the fields with
|
|
|
|
// negative width according to the abs value of the width (field with width
|
|
|
|
// -2 grows twice as much as one with width -1 &c)
|
|
|
|
virtual void SetStatusWidths(int n, const int widths[]);
|
2009-08-06 00:00:32 +00:00
|
|
|
|
2009-03-15 17:54:05 +00:00
|
|
|
int GetStatusWidth(int n) const
|
|
|
|
{ return m_panes[n].GetWidth(); }
|
2001-10-14 21:38:58 +00:00
|
|
|
|
2004-07-25 16:13:52 +00:00
|
|
|
// field styles
|
|
|
|
// ------------
|
|
|
|
|
2004-09-22 14:38:52 +00:00
|
|
|
// Set the field style. Use either wxSB_NORMAL (default) for a standard 3D
|
|
|
|
// border around a field, wxSB_FLAT for no border around a field, so that it
|
2004-07-25 16:13:52 +00:00
|
|
|
// appears flat or wxSB_POPOUT to make the field appear raised.
|
|
|
|
// Setting field styles only works on wxMSW
|
|
|
|
virtual void SetStatusStyles(int n, const int styles[]);
|
2009-08-06 00:00:32 +00:00
|
|
|
|
2009-03-15 17:54:05 +00:00
|
|
|
int GetStatusStyle(int n) const
|
|
|
|
{ return m_panes[n].GetStyle(); }
|
2004-07-25 16:13:52 +00:00
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
// geometry
|
|
|
|
// --------
|
2000-02-05 01:57:38 +00:00
|
|
|
|
|
|
|
// Get the position and size of the field's internal bounding rectangle
|
|
|
|
virtual bool GetFieldRect(int i, wxRect& rect) const = 0;
|
|
|
|
|
|
|
|
// sets the minimal vertical size of the status bar
|
|
|
|
virtual void SetMinHeight(int height) = 0;
|
|
|
|
|
|
|
|
// get the dimensions of the horizontal and vertical borders
|
|
|
|
virtual int GetBorderX() const = 0;
|
|
|
|
virtual int GetBorderY() const = 0;
|
2009-08-06 00:00:32 +00:00
|
|
|
|
2009-04-21 11:10:44 +00:00
|
|
|
wxSize GetBorders() const
|
|
|
|
{ return wxSize(GetBorderX(), GetBorderY()); }
|
2000-02-05 01:57:38 +00:00
|
|
|
|
2009-03-15 17:54:05 +00:00
|
|
|
// miscellaneous
|
|
|
|
// -------------
|
2009-08-06 00:00:32 +00:00
|
|
|
|
2009-03-15 17:54:05 +00:00
|
|
|
const wxStatusBarPane& GetField(int n) const
|
|
|
|
{ return m_panes[n]; }
|
2009-08-06 00:00:32 +00:00
|
|
|
|
2009-03-15 17:54:05 +00:00
|
|
|
// wxWindow overrides:
|
2009-08-06 00:00:32 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// don't want status bars to accept the focus at all
|
2004-09-22 14:38:52 +00:00
|
|
|
virtual bool AcceptsFocus() const { return false; }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2009-03-15 17:54:05 +00:00
|
|
|
// the client size of a toplevel window doesn't include the status bar
|
2007-01-22 15:10:26 +00:00
|
|
|
virtual bool CanBeOutsideClientArea() const { return true; }
|
|
|
|
|
2000-02-05 01:57:38 +00:00
|
|
|
protected:
|
2009-08-06 00:01:43 +00:00
|
|
|
// called after the status bar pane text changed and should update its
|
|
|
|
// display
|
|
|
|
virtual void DoUpdateStatusText(int number) = 0;
|
|
|
|
|
2009-04-26 13:37:16 +00:00
|
|
|
|
|
|
|
// wxWindow overrides:
|
|
|
|
|
2009-04-28 11:13:11 +00:00
|
|
|
#if wxUSE_TOOLTIPS
|
|
|
|
virtual void DoSetToolTip( wxToolTip *tip )
|
2009-04-26 14:38:55 +00:00
|
|
|
{
|
2009-04-26 13:37:16 +00:00
|
|
|
wxASSERT_MSG(!HasFlag(wxSTB_SHOW_TIPS),
|
|
|
|
"Do not set tooltip(s) manually when using wxSTB_SHOW_TIPS!");
|
2009-04-26 14:38:55 +00:00
|
|
|
wxWindow::DoSetToolTip(tip);
|
2009-04-26 13:37:16 +00:00
|
|
|
}
|
2009-08-06 00:01:43 +00:00
|
|
|
#endif // wxUSE_TOOLTIPS
|
2007-10-26 06:20:23 +00:00
|
|
|
virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
|
|
|
|
|
2009-04-26 13:37:16 +00:00
|
|
|
|
|
|
|
// internal helpers & data:
|
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
// calculate the real field widths for the given total available size
|
|
|
|
wxArrayInt CalculateAbsWidths(wxCoord widthTotal) const;
|
2009-08-06 00:00:32 +00:00
|
|
|
|
2009-08-06 00:01:43 +00:00
|
|
|
// should be called to remember if the pane text is currently being show
|
|
|
|
// ellipsized or not
|
|
|
|
void SetEllipsizedFlag(int n, bool isEllipsized);
|
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
|
2008-12-31 12:28:05 +00:00
|
|
|
// the array with the pane infos:
|
|
|
|
wxStatusBarPaneArray m_panes;
|
2002-05-02 20:07:10 +00:00
|
|
|
|
2008-12-31 12:28:05 +00:00
|
|
|
// if true overrides the width info of the wxStatusBarPanes
|
|
|
|
bool m_bSameWidthForAllPanes;
|
2003-01-02 23:38:11 +00:00
|
|
|
|
2009-02-08 11:45:59 +00:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxStatusBarBase);
|
2000-02-05 01:57:38 +00:00
|
|
|
};
|
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// include the actual wxStatusBar class declaration
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#define wxStatusBarUniv wxStatusBar
|
|
|
|
#include "wx/univ/statusbr.h"
|
2004-12-20 12:44:22 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
2004-10-19 13:40:30 +00:00
|
|
|
#define wxStatusBarPalm wxStatusBar
|
2004-10-19 23:17:30 +00:00
|
|
|
#include "wx/palmos/statusbr.h"
|
2001-10-14 21:38:58 +00:00
|
|
|
#elif defined(__WIN32__) && wxUSE_NATIVE_STATUSBAR
|
2008-03-15 16:53:06 +00:00
|
|
|
#include "wx/msw/statusbar.h"
|
2001-04-19 19:06:42 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2001-10-14 21:38:58 +00:00
|
|
|
#define wxStatusBarMac wxStatusBar
|
2001-04-01 20:42:05 +00:00
|
|
|
#include "wx/generic/statusbr.h"
|
2008-06-11 19:17:41 +00:00
|
|
|
#include "wx/osx/statusbr.h"
|
2000-02-05 01:57:38 +00:00
|
|
|
#else
|
2001-10-14 21:38:58 +00:00
|
|
|
#define wxStatusBarGeneric wxStatusBar
|
|
|
|
#include "wx/generic/statusbr.h"
|
2000-02-05 01:57:38 +00:00
|
|
|
#endif
|
|
|
|
|
2001-10-14 21:38:58 +00:00
|
|
|
#endif // wxUSE_STATUSBAR
|
2001-06-26 20:59:19 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_STATUSBR_H_BASE_
|