+#ifdef __WXMSW__
+ #undef wxUSE_POPUPWIN
+ #define wxUSE_POPUPWIN 0 // Popup not working
+ #define TXTCTRL_FLAGS wxNO_BORDER
+ #define BTN_FLAGS wxNO_BORDER
+ #define CALBORDER 0
+ #define RIGHTBUTTONBORDER 3
+ #define TOPBUTTONBORDER 0
+ #define BUTTONBORDER 3
+ #define TXTPOSY 1
+#else
+ #define TXTCTRL_FLAGS 0
+ #define BTN_FLAGS wxBU_AUTODRAW
+ #define CALBORDER 4
+ #define RIGHTBUTTONBORDER 0
+ #define TOPBUTTONBORDER 0
+ #define BUTTONBORDER 0
+ #define TXTPOSY 0
+#endif
+
+
+// ----------------------------------------------------------------------------
+// local classes
+// ----------------------------------------------------------------------------
+
+
+class wxDropdownButton : public wxBitmapButton
+{
+public:
+ wxDropdownButton() { Init(); }
+ wxDropdownButton(wxWindow *parent,
+ wxWindowID id,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style=0,
+ const wxValidator& validator = wxDefaultValidator);
+
+ void Init()
+ {
+ m_borderX = -1;
+ m_borderY = -1;
+ }
+ bool Create(wxWindow *parent,
+ wxWindowID id,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator);
+
+ void DoMoveWindow(int x, int y, int w, int h);
+
+protected:
+ int m_borderX, m_borderY;
+};
+
+
+wxDropdownButton::wxDropdownButton(wxWindow *parent,
+ wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style,
+ const wxValidator& validator)
+{
+ Init();
+ Create(parent, id, pos, size, style, validator);
+}
+
+
+bool wxDropdownButton::Create(wxWindow *parent,
+ wxWindowID id,
+ const wxPoint& pos,
+ const wxSize& size,
+ long WXUNUSED(style),
+ const wxValidator& validator)
+{
+ m_marginX = 0;
+ m_marginY = 0;
+
+ wxBitmap chkBmp(15,15); // arbitrary
+ if ( !wxBitmapButton::Create(parent, id, chkBmp,
+ pos, wxDefaultSize, BTN_FLAGS, validator) )
+ return false;
+
+#if (BTNFLAGS & wxBU_AUTODRAW ) == 0
+ m_windowStyle |= wxBU_AUTODRAW;
+#endif
+
+ const wxSize sz = GetSize();
+ int w = chkBmp.GetWidth(),
+ h = chkBmp.GetHeight();
+ m_borderX = sz.x - m_marginX - w;
+ m_borderY = sz.y - m_marginY - h;
+
+ w = size.x > 0 ? size.x : sz.x;
+ h = size.y > 0 ? size.y : sz.y;
+
+ DoMoveWindow(pos.x, pos.y, w, h);
+
+ return true;
+}
+
+
+void wxDropdownButton::DoMoveWindow(int x, int y, int w, int h)
+{
+ if (m_borderX >= 0 && m_borderY >= 0 && (w >= 0 || h >= 0))
+ {
+ wxMemoryDC dc;
+ if (w < 0)
+ w = GetSize().x;
+#ifdef __WXGTK__
+ else
+ w = m_marginX + m_borderX + 15; // GTK magic size
+#endif
+ if (h < 0)
+ h = GetSize().y;
+
+ int bw = w - m_marginX - m_borderX;
+ int bh = h - m_marginY - m_borderY;
+ if (bh < 11) bh=11;
+ if (bw < 9) bw=9;
+
+ wxBitmap bmp(bw, bh);
+ dc.SelectObject(bmp);
+
+ wxRendererNative::Get().DrawComboBoxDropButton(this, dc, wxRect(0,0,bw, bh));
+ SetBitmapLabel(bmp);
+ }
+
+ wxBitmapButton::DoMoveWindow(x, y, w, h);
+}
+
+
+#if wxUSE_POPUPWIN
+
+#include "wx/popupwin.h"
+
+class wxDatePopupInternal : public wxPopupTransientWindow
+{
+public:
+ wxDatePopupInternal(wxWindow *parent) : wxPopupTransientWindow(parent) { }
+
+ void ShowAt(int x, int y)
+ {
+ Position(wxPoint(x, y), wxSize(0, 0));
+ Popup();
+ }
+
+ void Hide()
+ {
+ Dismiss();
+ }
+};
+
+#else // !wxUSE_POPUPWIN
+
+class wxDatePopupInternal : public wxDialog
+{
+public:
+ wxDatePopupInternal(wxWindow *parent)
+ : wxDialog(parent,
+ wxID_ANY,
+ wxEmptyString,
+ wxDefaultPosition,
+ wxDefaultSize,
+ wxSIMPLE_BORDER)
+ {
+ }
+
+ void ShowAt(int x, int y)
+ {
+ Show();
+ Move(x, y);
+ }
+
+ void Hide()
+ {
+ wxDialog::Hide();
+ }
+};
+
+#endif // wxUSE_POPUPWIN/!wxUSE_POPUPWIN
+