2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/popupwin.h
|
|
|
|
// Purpose: wxPopupWindow interface declaration
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 06.01.01
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2004-05-23 16:53:33 -04:00
|
|
|
// License: wxWindows licence
|
2001-06-26 16:59:19 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_POPUPWIN_H_BASE_
|
|
|
|
#define _WX_POPUPWIN_H_BASE_
|
|
|
|
|
2005-03-16 11:18:31 -05:00
|
|
|
#include "wx/defs.h"
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
#if wxUSE_POPUPWIN
|
2005-03-16 11:18:31 -05:00
|
|
|
|
2007-01-22 10:04:49 -05:00
|
|
|
#include "wx/nonownedwnd.h"
|
2005-03-16 11:18:31 -05:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxPopupWindow: a special kind of top level window used for popup menus,
|
|
|
|
// combobox popups and such.
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxPopupWindowBase : public wxNonOwnedWindow
|
2001-06-26 16:59:19 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxPopupWindowBase() { }
|
2002-01-07 16:52:28 -05:00
|
|
|
virtual ~wxPopupWindowBase();
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// create the popup window
|
|
|
|
//
|
|
|
|
// style may only contain border flags
|
|
|
|
bool Create(wxWindow *parent, int style = wxBORDER_NONE);
|
|
|
|
|
|
|
|
// move the popup window to the right position, i.e. such that it is
|
|
|
|
// entirely visible
|
|
|
|
//
|
|
|
|
// the popup is positioned at ptOrigin + size if it opens below and to the
|
|
|
|
// right (default), at ptOrigin - sizePopup if it opens above and to the
|
|
|
|
// left &c
|
|
|
|
//
|
|
|
|
// the point must be given in screen coordinates!
|
|
|
|
virtual void Position(const wxPoint& ptOrigin,
|
|
|
|
const wxSize& size);
|
2003-07-21 20:24:07 -04:00
|
|
|
|
2004-09-20 07:31:49 -04:00
|
|
|
virtual bool IsTopLevel() const { return true; }
|
2004-03-04 12:03:55 -05:00
|
|
|
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxPopupWindowBase);
|
2001-06-26 16:59:19 -04:00
|
|
|
};
|
|
|
|
|
2001-10-17 18:25:56 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// include the real class declaration
|
2005-07-21 13:08:28 -04:00
|
|
|
#if defined(__WXMSW__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/msw/popupwin.h"
|
2005-07-21 13:08:28 -04:00
|
|
|
#elif defined(__WXPM__)
|
2001-10-17 18:25:56 -04:00
|
|
|
#include "wx/os2/popupwin.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-07-07 17:42:30 -04:00
|
|
|
#include "wx/gtk/popupwin.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/popupwin.h"
|
2005-07-21 13:08:28 -04:00
|
|
|
#elif defined(__WXX11__)
|
2002-02-05 11:34:33 -05:00
|
|
|
#include "wx/x11/popupwin.h"
|
2005-07-21 13:08:28 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
2003-10-14 13:05:28 -04:00
|
|
|
#include "wx/motif/popupwin.h"
|
2007-01-22 10:04:49 -05:00
|
|
|
#elif defined(__WXDFB__)
|
|
|
|
#include "wx/dfb/popupwin.h"
|
2005-07-21 13:08:28 -04:00
|
|
|
#elif defined(__WXMGL__)
|
2001-10-01 18:09:14 -04:00
|
|
|
#include "wx/mgl/popupwin.h"
|
2007-11-20 09:10:09 -05:00
|
|
|
#elif defined(__WXMAC__)
|
2008-06-11 15:17:41 -04:00
|
|
|
#include "wx/osx/popupwin.h"
|
2001-06-26 16:59:19 -04:00
|
|
|
#else
|
|
|
|
#error "wxPopupWindow is not supported under this platform."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxPopupTransientWindow: a wxPopupWindow which disappears automatically
|
|
|
|
// when the user clicks mouse outside it or if it loses focus in any other way
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPopupWindowHandler;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPopupFocusHandler;
|
2002-02-15 10:11:06 -05:00
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxPopupTransientWindow : public wxPopupWindow
|
2001-06-26 16:59:19 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// ctors
|
|
|
|
wxPopupTransientWindow() { Init(); }
|
2001-10-12 14:11:46 -04:00
|
|
|
wxPopupTransientWindow(wxWindow *parent, int style = wxBORDER_NONE);
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
virtual ~wxPopupTransientWindow();
|
|
|
|
|
|
|
|
// popup the window (this will show it too) and keep focus at winFocus
|
|
|
|
// (or itself if it's NULL), dismiss the popup if we lose focus
|
|
|
|
virtual void Popup(wxWindow *focus = NULL);
|
|
|
|
|
|
|
|
// hide the window
|
|
|
|
virtual void Dismiss();
|
2002-02-28 17:42:14 -05:00
|
|
|
|
2002-05-25 09:02:58 -04:00
|
|
|
// can the window be dismissed now?
|
|
|
|
//
|
|
|
|
// VZ: where is this used??
|
2002-02-28 17:42:14 -05:00
|
|
|
virtual bool CanDismiss()
|
2004-09-20 07:31:49 -04:00
|
|
|
{ return true; }
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2004-09-20 07:31:49 -04:00
|
|
|
// called when a mouse is pressed while the popup is shown: return true
|
2001-06-26 16:59:19 -04:00
|
|
|
// from here to prevent its normal processing by the popup (which consists
|
|
|
|
// in dismissing it if the mouse is cilcked outside it)
|
|
|
|
virtual bool ProcessLeftDown(wxMouseEvent& event);
|
|
|
|
|
2005-01-29 06:32:46 -05:00
|
|
|
// Overridden to grab the input on some plaforms
|
|
|
|
virtual bool Show( bool show = true );
|
2005-03-16 11:18:31 -05:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
protected:
|
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
// this is called when the popup is disappeared because of anything
|
|
|
|
// else but direct call to Dismiss()
|
|
|
|
virtual void OnDismiss();
|
|
|
|
|
|
|
|
// dismiss and notify the derived class
|
|
|
|
void DismissAndNotify();
|
|
|
|
|
|
|
|
// remove our event handlers
|
|
|
|
void PopHandlers();
|
|
|
|
|
2005-04-12 01:18:20 -04:00
|
|
|
// get alerted when child gets deleted from under us
|
|
|
|
void OnDestroy(wxWindowDestroyEvent& event);
|
|
|
|
|
2008-03-25 03:39:43 -04:00
|
|
|
#if defined( __WXMSW__ ) || defined( __WXMAC__)
|
2005-04-14 23:04:30 -04:00
|
|
|
// check if the mouse needs captured or released
|
|
|
|
void OnIdle(wxIdleEvent& event);
|
|
|
|
#endif
|
2005-07-21 13:08:28 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// the child of this popup if any
|
|
|
|
wxWindow *m_child;
|
|
|
|
|
|
|
|
// the window which has the focus while we're shown
|
|
|
|
wxWindow *m_focus;
|
|
|
|
|
2002-01-25 11:02:21 -05:00
|
|
|
// these classes may call our DismissAndNotify()
|
2001-06-26 16:59:19 -04:00
|
|
|
friend class wxPopupWindowHandler;
|
|
|
|
friend class wxPopupFocusHandler;
|
2002-01-03 11:01:02 -05:00
|
|
|
|
2002-01-25 11:02:21 -05:00
|
|
|
// the handlers we created, may be NULL (if not, must be deleted)
|
|
|
|
wxPopupWindowHandler *m_handlerPopup;
|
|
|
|
wxPopupFocusHandler *m_handlerFocus;
|
|
|
|
|
2005-04-14 23:04:30 -04:00
|
|
|
DECLARE_EVENT_TABLE()
|
2002-01-03 11:01:02 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxPopupTransientWindow)
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxPopupTransientWindow);
|
2001-06-26 16:59:19 -04:00
|
|
|
};
|
|
|
|
|
2001-07-10 18:46:27 -04:00
|
|
|
#if wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxPopupComboWindow: wxPopupTransientWindow used by wxComboBox
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxComboBox;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxComboCtrl;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxPopupComboWindow : public wxPopupTransientWindow
|
2001-06-26 16:59:19 -04:00
|
|
|
{
|
|
|
|
public:
|
2002-01-06 18:11:47 -05:00
|
|
|
wxPopupComboWindow() { m_combo = NULL; }
|
2006-05-16 18:57:40 -04:00
|
|
|
wxPopupComboWindow(wxComboCtrl *parent);
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2006-05-16 18:57:40 -04:00
|
|
|
bool Create(wxComboCtrl *parent);
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// position the window correctly relatively to the combo
|
|
|
|
void PositionNearCombo();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// notify the combo here
|
|
|
|
virtual void OnDismiss();
|
|
|
|
|
2002-03-20 21:36:25 -05:00
|
|
|
// forward the key presses to the combobox
|
|
|
|
void OnKeyDown(wxKeyEvent& event);
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// the parent combobox
|
2006-05-16 18:57:40 -04:00
|
|
|
wxComboCtrl *m_combo;
|
2002-01-03 11:01:02 -05:00
|
|
|
|
2002-03-20 21:36:25 -05:00
|
|
|
DECLARE_EVENT_TABLE()
|
2002-01-03 11:01:02 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxPopupComboWindow)
|
2001-06-26 16:59:19 -04:00
|
|
|
};
|
|
|
|
|
2001-07-10 18:46:27 -04:00
|
|
|
#endif // wxUSE_COMBOBOX && defined(__WXUNIVERSAL__)
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
#endif // wxUSE_POPUPWIN
|
|
|
|
|
|
|
|
#endif // _WX_POPUPWIN_H_BASE_
|