]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/window.cpp
Changed __GTK__, __WINDOWS__ and __MOTIF__ to __WXGTK__, __WXMSW__ and __WXMOTIF__
[wxWidgets.git] / src / gtk / window.cpp
index 26f5f1b9897af49d8a239edbd1c408630055423b..7726cf96690214bfc821c1eb5041b8db66991e4a 100644 (file)
@@ -1739,7 +1739,7 @@ wxString wxWindow::GetName(void) const
   return (wxString&)m_windowName;
 };
 
-bool wxWindow::IsShown(void)
+bool wxWindow::IsShown(void) const
 {
   return m_isShown;
 };
@@ -2393,3 +2393,7 @@ void wxWindow::GetPositionConstraint(int *x, int *y) const
     GetPosition(x, y);
 }
 
+bool wxWindow::AcceptsFocus() const
+{
+  return IsEnabled() && IsShown();
+}