]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/popupwin.cpp
renaming
[wxWidgets.git] / src / mac / carbon / popupwin.cpp
diff --git a/src/mac/carbon/popupwin.cpp b/src/mac/carbon/popupwin.cpp
deleted file mode 100644 (file)
index c2ecd3c..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-///////////////////////////////////////////////////////////////////////////////
-// Name:        src/mac/popupwin.cpp
-// Purpose:     implements wxPopupWindow for wxMac
-// Author:      Stefan Csomor
-// Modified by:
-// Created:     
-// RCS-ID:      $Id$
-// Copyright:   (c) 2006 Stefan Csomor
-// License:     wxWindows licence
-///////////////////////////////////////////////////////////////////////////////
-
-// ============================================================================
-// declarations
-// ============================================================================
-
-// CAUTION : This is only experimental stuff right now
-
-// ----------------------------------------------------------------------------
-// headers
-// ----------------------------------------------------------------------------
-
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
-#if wxUSE_POPUPWIN
-
-#ifndef WX_PRECOMP
-#endif //WX_PRECOMP
-
-#include "wx/popupwin.h"
-#include "wx/tooltip.h"
-
-#include "wx/mac/private.h"    
-
-// ============================================================================
-// implementation
-// ============================================================================
-
-wxPopupWindow::~wxPopupWindow()
-{
-}
-
-bool wxPopupWindow::Create(wxWindow *parent, int flags)
-{
-    // popup windows are created hidden by default
-    Hide();
-
-    return wxPopupWindowBase::Create(parent) &&
-               wxNonOwnedWindow::Create(parent, wxID_ANY,
-                                wxDefaultPosition, wxDefaultSize,
-                                flags | wxPOPUP_WINDOW);
-
-}
-
-#endif // #if wxUSE_POPUPWIN