a236aa2058
1. the main function for item insertion is now DoInsertItems() which allows for much more efficient addition of many new items at once 2. the items client data management is done entirely in wxItemContainer itself, the derived classes don't have to distinguish between void and object client data 3. many fixes for sorted controls, in particular implemented wxCB_SORT support in wxGTK combobox git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47730 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
162 lines
5.5 KiB
C++
162 lines
5.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/generic/bmpcbox.h
|
|
// Purpose: wxBitmapComboBox
|
|
// Author: Jaakko Salli
|
|
// Modified by:
|
|
// Created: Aug-30-2006
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) Jaakko Salli
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_GENERIC_BMPCBOX_H_
|
|
#define _WX_GENERIC_BMPCBOX_H_
|
|
|
|
|
|
#define wxGENERIC_BITMAPCOMBOBOX 1
|
|
|
|
#include "wx/odcombo.h"
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// wxBitmapComboBox: a wxComboBox that allows images to be shown
|
|
// in front of string items.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_ADV wxBitmapComboBox : public wxOwnerDrawnComboBox,
|
|
public wxBitmapComboBoxBase
|
|
{
|
|
public:
|
|
|
|
// ctors and such
|
|
wxBitmapComboBox() : wxOwnerDrawnComboBox(), wxBitmapComboBoxBase()
|
|
{
|
|
Init();
|
|
}
|
|
|
|
wxBitmapComboBox(wxWindow *parent,
|
|
wxWindowID id = wxID_ANY,
|
|
const wxString& value = wxEmptyString,
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
const wxSize& size = wxDefaultSize,
|
|
int n = 0,
|
|
const wxString choices[] = NULL,
|
|
long style = 0,
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
const wxString& name = wxBitmapComboBoxNameStr)
|
|
: wxOwnerDrawnComboBox(),
|
|
wxBitmapComboBoxBase()
|
|
{
|
|
Init();
|
|
|
|
(void)Create(parent, id, value, pos, size, n,
|
|
choices, style, validator, name);
|
|
}
|
|
|
|
wxBitmapComboBox(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxString& value,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
const wxArrayString& choices,
|
|
long style,
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
const wxString& name = wxBitmapComboBoxNameStr);
|
|
|
|
bool Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxString& value,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
int n,
|
|
const wxString choices[],
|
|
long style = 0,
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
const wxString& name = wxBitmapComboBoxNameStr);
|
|
|
|
bool Create(wxWindow *parent,
|
|
wxWindowID id,
|
|
const wxString& value,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
const wxArrayString& choices,
|
|
long style = 0,
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
const wxString& name = wxBitmapComboBoxNameStr);
|
|
|
|
virtual ~wxBitmapComboBox();
|
|
|
|
// Adds item with image to the end of the combo box.
|
|
int Append(const wxString& item, const wxBitmap& bitmap = wxNullBitmap);
|
|
int Append(const wxString& item, const wxBitmap& bitmap, void *clientData);
|
|
int Append(const wxString& item, const wxBitmap& bitmap, wxClientData *clientData);
|
|
|
|
// Inserts item with image into the list before pos. Not valid for wxCB_SORT
|
|
// styles, use Append instead.
|
|
int Insert(const wxString& item, const wxBitmap& bitmap, unsigned int pos);
|
|
int Insert(const wxString& item, const wxBitmap& bitmap,
|
|
unsigned int pos, void *clientData);
|
|
int Insert(const wxString& item, const wxBitmap& bitmap,
|
|
unsigned int pos, wxClientData *clientData);
|
|
|
|
// Returns size of image used in list.
|
|
virtual wxSize GetBitmapSize() const
|
|
{
|
|
return m_usedImgSize;
|
|
}
|
|
|
|
// Returns the image of the item with the given index.
|
|
virtual wxBitmap GetItemBitmap(unsigned int n) const;
|
|
|
|
// Sets the image for the given item.
|
|
virtual void SetItemBitmap(unsigned int n, const wxBitmap& bitmap);
|
|
|
|
virtual void DoClear();
|
|
virtual void DoDeleteOneItem(unsigned int n);
|
|
|
|
protected:
|
|
|
|
virtual void OnDrawBackground(wxDC& dc, const wxRect& rect, int item, int flags) const;
|
|
virtual void OnDrawItem(wxDC& dc, const wxRect& rect, int item, int flags) const;
|
|
virtual wxCoord OnMeasureItem(size_t item) const;
|
|
virtual wxCoord OnMeasureItemWidth(size_t item) const;
|
|
|
|
virtual int DoInsertItems(const wxArrayStringsAdapter & items,
|
|
unsigned int pos,
|
|
void **clientData, wxClientDataType type);
|
|
|
|
virtual bool SetFont(const wxFont& font);
|
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
// Event handlers
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
// Recalculates amount of empty space needed in front of
|
|
// text in control itself.
|
|
void DetermineIndent();
|
|
|
|
bool OnAddBitmap(const wxBitmap& bitmap);
|
|
|
|
// Adds image to position - called in Append/Insert before
|
|
// string is added.
|
|
bool DoInsertBitmap(const wxBitmap& image, unsigned int pos);
|
|
|
|
|
|
wxArrayPtrVoid m_bitmaps; // Images associated with items
|
|
wxSize m_usedImgSize; // Size of bitmaps
|
|
|
|
private:
|
|
int m_imgAreaWidth; // Width and height of area next to text field
|
|
int m_fontHeight;
|
|
bool m_inResize;
|
|
|
|
void Init();
|
|
void PostCreate();
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBitmapComboBox)
|
|
};
|
|
|
|
#endif // _WX_GENERIC_BMPCBOX_H_
|