]> git.saurik.com Git - wxWidgets.git/commitdiff
set tooltips for the both subcontrols (patch 1622531)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 7 Jan 2007 16:00:11 +0000 (16:00 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 7 Jan 2007 16:00:11 +0000 (16:00 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44120 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/pickerbase.h
src/common/pickerbase.cpp

index 417767664c0238e820f5c31101ea47516f0f4ccb..b49fc3e7b835eda8d1e689baf7110ac722dd7181 100644 (file)
@@ -17,6 +17,7 @@
 #include "wx/containr.h"
 
 class WXDLLIMPEXP_CORE wxTextCtrl;
 #include "wx/containr.h"
 
 class WXDLLIMPEXP_CORE wxTextCtrl;
+class WXDLLEXPORT wxToolTip;
 
 extern WXDLLEXPORT_DATA(const wxChar) wxButtonNameStr[];
 
 
 extern WXDLLEXPORT_DATA(const wxChar) wxButtonNameStr[];
 
@@ -51,6 +52,7 @@ public:
                     const wxValidator& validator = wxDefaultValidator,
                     const wxString& name = wxButtonNameStr);
 
                     const wxValidator& validator = wxDefaultValidator,
                     const wxString& name = wxButtonNameStr);
 
+    virtual void DoSetToolTip( wxToolTip *tip );
 
 public:     // public API
 
 
 public:     // public API
 
index f02542619313d0b9861249c806bd9cef22ef708b..05ff622e368ba1d1a4ee0617e3c3ddafe65cac66 100644 (file)
     wxUSE_FONTPICKERCTRL
 
 #include "wx/pickerbase.h"
     wxUSE_FONTPICKERCTRL
 
 #include "wx/pickerbase.h"
+#include "wx/tooltip.h"
 
 #ifndef WX_PRECOMP
     #include "wx/textctrl.h"
 #endif
 
 
 #ifndef WX_PRECOMP
     #include "wx/textctrl.h"
 #endif
 
+
 // ============================================================================
 // implementation
 // ============================================================================
 // ============================================================================
 // implementation
 // ============================================================================
@@ -122,6 +124,23 @@ void wxPickerBase::PostCreation()
     SetMinSize( m_sizer->GetMinSize() );
 }
 
     SetMinSize( m_sizer->GetMinSize() );
 }
 
+void wxPickerBase::DoSetToolTip( wxToolTip *tip )
+{
+    // don't set the tooltip on us but rather on our two child windows
+    // as otherwise it would appear only when the cursor is placed on the
+    // small area around the child windows which belong to wxPickerBase
+    m_picker->SetToolTip(tip);
+
+    // do a copy as wxWindow will own the pointer we pass
+    m_text->SetToolTip(tip ? new wxToolTip(tip->GetTip()) : NULL);
+}
+
+
+
+// ----------------------------------------------------------------------------
+// wxPickerBase - event handlers
+// ----------------------------------------------------------------------------
+
 void wxPickerBase::OnTextCtrlKillFocus(wxFocusEvent &)
 {
     wxASSERT(m_text);
 void wxPickerBase::OnTextCtrlKillFocus(wxFocusEvent &)
 {
     wxASSERT(m_text);