]> git.saurik.com Git - wxWidgets.git/commitdiff
more SetXXXVisible/ShowXXX() replacements
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 11 Dec 2006 14:17:44 +0000 (14:17 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 11 Dec 2006 14:17:44 +0000 (14:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/srchctrl.cpp

index 7af18fe1840a4a71375e258925ee9143d4611a14..2ac713e705670063eac20e75682339200d81a8fb 100644 (file)
@@ -100,7 +100,7 @@ void wxMacSearchFieldControl::CreateControl( wxTextCtrl* /*peer*/, const Rect* b
 }
 
 // search field options
 }
 
 // search field options
-void wxMacSearchFieldControl::SetSearchButtonVisible( bool show )
+void wxMacSearchFieldControl::ShowSearchButton( bool show )
 {
     if ( UMAGetSystemVersion() >= 0x1040 )
     {
 {
     if ( UMAGetSystemVersion() >= 0x1040 )
     {
@@ -118,14 +118,14 @@ void wxMacSearchFieldControl::SetSearchButtonVisible( bool show )
     }
 }
 
     }
 }
 
-bool wxMacSearchFieldControl::GetSearchButtonVisible() const
+bool wxMacSearchFieldControl::IsSearchButtonVisible() const
 {
     OptionBits attributes = 0;
     verify_noerr( HISearchFieldGetAttributes( m_controlRef, &attributes ) );
     return ( attributes & kHISearchFieldAttributesSearchIcon ) != 0;
 }
 
 {
     OptionBits attributes = 0;
     verify_noerr( HISearchFieldGetAttributes( m_controlRef, &attributes ) );
     return ( attributes & kHISearchFieldAttributesSearchIcon ) != 0;
 }
 
-void wxMacSearchFieldControl::SetCancelButtonVisible( bool show )
+void wxMacSearchFieldControl::ShowCancelButton( bool show )
 {
     OptionBits set = 0;
     OptionBits clear = 0;
 {
     OptionBits set = 0;
     OptionBits clear = 0;
@@ -140,7 +140,7 @@ void wxMacSearchFieldControl::SetCancelButtonVisible( bool show )
     HISearchFieldChangeAttributes( m_controlRef, set, clear );
 }
 
     HISearchFieldChangeAttributes( m_controlRef, set, clear );
 }
 
-bool wxMacSearchFieldControl::GetCancelButtonVisible() const
+bool wxMacSearchFieldControl::IsCancelButtonVisible() const
 {
     OptionBits attributes = 0;
     verify_noerr( HISearchFieldGetAttributes( m_controlRef, &attributes ) );
 {
     OptionBits attributes = 0;
     verify_noerr( HISearchFieldGetAttributes( m_controlRef, &attributes ) );
@@ -317,35 +317,35 @@ wxMenu* wxSearchCtrl::GetMenu()
     return m_menu;
 }
 
     return m_menu;
 }
 
-void wxSearchCtrl::SetSearchButtonVisible( bool show )
+void wxSearchCtrl::ShowSearchButton( bool show )
 {
 {
-    if ( GetSearchButtonVisible() == show )
+    if ( IsSearchButtonVisible() == show )
     {
         // no change
         return;
     }
     {
         // no change
         return;
     }
-    GetPeer()->SetSearchButtonVisible( show );
+    GetPeer()->ShowSearchButton( show );
 }
 
 }
 
-bool wxSearchCtrl::GetSearchButtonVisible() const
+bool wxSearchCtrl::IsSearchButtonVisible() const
 {
 {
-    return GetPeer()->GetSearchButtonVisible();
+    return GetPeer()->IsSearchButtonVisible();
 }
 
 
 }
 
 
-void wxSearchCtrl::SetCancelButtonVisible( bool show )
+void wxSearchCtrl::ShowCancelButton( bool show )
 {
 {
-    if ( GetCancelButtonVisible() == show )
+    if ( IsCancelButtonVisible() == show )
     {
         // no change
         return;
     }
     {
         // no change
         return;
     }
-    GetPeer()->SetCancelButtonVisible( show );
+    GetPeer()->ShowCancelButton( show );
 }
 
 }
 
-bool wxSearchCtrl::GetCancelButtonVisible() const
+bool wxSearchCtrl::IsCancelButtonVisible() const
 {
 {
-    return GetPeer()->GetCancelButtonVisible();
+    return GetPeer()->IsCancelButtonVisible();
 }
 
 wxInt32 wxSearchCtrl::MacSearchFieldSearchHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF WXUNUSED(event) )
 }
 
 wxInt32 wxSearchCtrl::MacSearchFieldSearchHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF WXUNUSED(event) )