95a4630380
Actually wxBitmapComboBox. Also commited configure. Not yet updated Makefiles. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/bmpcbox.h
|
|
// Purpose: wxBitmapComboBox base header
|
|
// Author: Jaakko Salli
|
|
// Modified by:
|
|
// Created: Aug-31-2006
|
|
// Copyright: (c) Jaakko Salli
|
|
// RCS-ID: $Id:
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_BMPCBOX_H_BASE_
|
|
#define _WX_BMPCBOX_H_BASE_
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#if wxUSE_BITMAPCOMBOBOX
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxBitmapComboBoxNameStr[];
|
|
|
|
|
|
class WXDLLIMPEXP_ADV wxBitmapComboBoxBase
|
|
{
|
|
public:
|
|
|
|
// ctors and such
|
|
wxBitmapComboBoxBase() { }
|
|
|
|
virtual ~wxBitmapComboBoxBase() { }
|
|
|
|
// Returns the image of the item with the given index.
|
|
virtual wxBitmap GetItemBitmap(unsigned int n) const = 0;
|
|
|
|
// Sets the image for the given item.
|
|
virtual void SetItemBitmap(unsigned int n, const wxBitmap& bitmap) = 0;
|
|
|
|
// Returns size of the image used in list
|
|
virtual wxSize GetBitmapSize() const = 0;
|
|
|
|
protected:
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
#include "wx/generic/bmpcbox.h"
|
|
#else
|
|
#include "wx/generic/bmpcbox.h"
|
|
#endif
|
|
|
|
#endif // wxUSE_BITMAPCOMBOBOX
|
|
|
|
#endif
|
|
// _WX_BMPCBOX_H_BASE_
|