2f6b64a90b
These commas are not allowed by standard C++ and Sun CC warns about them (and some other compilers, e.g. HP aCC, even give errors for them). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69559 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
131 lines
4.2 KiB
C++
131 lines
4.2 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/ribbon/panel.h
|
|
// Purpose: Ribbon-style container for a group of related tools / controls
|
|
// Author: Peter Cawley
|
|
// Modified by:
|
|
// Created: 2009-05-25
|
|
// RCS-ID: $Id$
|
|
// Copyright: (C) Peter Cawley
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _WX_RIBBON_PANEL_H_
|
|
#define _WX_RIBBON_PANEL_H_
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#if wxUSE_RIBBON
|
|
|
|
#include "wx/bitmap.h"
|
|
#include "wx/ribbon/control.h"
|
|
|
|
enum wxRibbonPanelOption
|
|
{
|
|
wxRIBBON_PANEL_NO_AUTO_MINIMISE = 1 << 0,
|
|
wxRIBBON_PANEL_EXT_BUTTON = 1 << 3,
|
|
wxRIBBON_PANEL_MINIMISE_BUTTON = 1 << 4,
|
|
|
|
wxRIBBON_PANEL_DEFAULT_STYLE = 0
|
|
};
|
|
|
|
class WXDLLIMPEXP_RIBBON wxRibbonPanel : public wxRibbonControl
|
|
{
|
|
public:
|
|
wxRibbonPanel();
|
|
|
|
wxRibbonPanel(wxWindow* parent,
|
|
wxWindowID id = wxID_ANY,
|
|
const wxString& label = wxEmptyString,
|
|
const wxBitmap& minimised_icon = wxNullBitmap,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxRIBBON_PANEL_DEFAULT_STYLE);
|
|
|
|
virtual ~wxRibbonPanel();
|
|
|
|
bool Create(wxWindow* parent,
|
|
wxWindowID id = wxID_ANY,
|
|
const wxString& label = wxEmptyString,
|
|
const wxBitmap& icon = wxNullBitmap,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
long style = wxRIBBON_PANEL_DEFAULT_STYLE);
|
|
|
|
wxBitmap& GetMinimisedIcon() {return m_minimised_icon;}
|
|
const wxBitmap& GetMinimisedIcon() const {return m_minimised_icon;}
|
|
bool IsMinimised() const;
|
|
bool IsMinimised(wxSize at_size) const;
|
|
bool IsHovered() const;
|
|
bool CanAutoMinimise() const;
|
|
|
|
bool ShowExpanded();
|
|
bool HideExpanded();
|
|
|
|
void SetArtProvider(wxRibbonArtProvider* art);
|
|
|
|
virtual bool Realize();
|
|
virtual bool Layout();
|
|
virtual wxSize GetMinSize() const;
|
|
|
|
virtual bool IsSizingContinuous() const;
|
|
|
|
virtual void AddChild(wxWindowBase *child);
|
|
virtual void RemoveChild(wxWindowBase *child);
|
|
|
|
wxRibbonPanel* GetExpandedDummy();
|
|
wxRibbonPanel* GetExpandedPanel();
|
|
|
|
protected:
|
|
virtual wxSize DoGetBestSize() const;
|
|
virtual wxSize GetPanelSizerBestSize() const;
|
|
wxSize GetPanelSizerMinSize() const;
|
|
wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
|
|
wxSize GetMinNotMinimisedSize() const;
|
|
|
|
virtual wxSize DoGetNextSmallerSize(wxOrientation direction,
|
|
wxSize relative_to) const;
|
|
virtual wxSize DoGetNextLargerSize(wxOrientation direction,
|
|
wxSize relative_to) const;
|
|
|
|
void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
|
void OnSize(wxSizeEvent& evt);
|
|
void OnEraseBackground(wxEraseEvent& evt);
|
|
void OnPaint(wxPaintEvent& evt);
|
|
void OnMouseEnter(wxMouseEvent& evt);
|
|
void OnMouseEnterChild(wxMouseEvent& evt);
|
|
void OnMouseLeave(wxMouseEvent& evt);
|
|
void OnMouseLeaveChild(wxMouseEvent& evt);
|
|
void OnMouseClick(wxMouseEvent& evt);
|
|
void OnKillFocus(wxFocusEvent& evt);
|
|
void OnChildKillFocus(wxFocusEvent& evt);
|
|
|
|
void TestPositionForHover(const wxPoint& pos);
|
|
bool ShouldSendEventToDummy(wxEvent& evt);
|
|
virtual bool TryAfter(wxEvent& evt);
|
|
|
|
void CommonInit(const wxString& label, const wxBitmap& icon, long style);
|
|
static wxRect GetExpandedPosition(wxRect panel,
|
|
wxSize expanded_size,
|
|
wxDirection direction);
|
|
|
|
wxBitmap m_minimised_icon;
|
|
wxBitmap m_minimised_icon_resized;
|
|
wxSize m_smallest_unminimised_size;
|
|
wxSize m_minimised_size;
|
|
wxDirection m_preferred_expand_direction;
|
|
wxRibbonPanel* m_expanded_dummy;
|
|
wxRibbonPanel* m_expanded_panel;
|
|
wxWindow* m_child_with_focus;
|
|
long m_flags;
|
|
bool m_minimised;
|
|
bool m_hovered;
|
|
|
|
#ifndef SWIG
|
|
DECLARE_CLASS(wxRibbonPanel)
|
|
DECLARE_EVENT_TABLE()
|
|
#endif
|
|
};
|
|
|
|
#endif // wxUSE_RIBBON
|
|
|
|
#endif // _WX_RIBBON_PANEL_H_
|