]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/gauge.cpp
Remove Palm OS port.
[wxWidgets.git] / src / palmos / gauge.cpp
diff --git a/src/palmos/gauge.cpp b/src/palmos/gauge.cpp
deleted file mode 100644 (file)
index 85d1cc4..0000000
+++ /dev/null
@@ -1,116 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        src/palmos/gauge.cpp
-// Purpose:     wxGauge class
-// Author:      William Osborne - minimal working wxPalmOS port
-// Modified by:
-// Created:     10/13/04
-// RCS-ID:      $Id$
-// Copyright:   (c) William Osborne
-// Licence:     wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-// ============================================================================
-// declarations
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// headers
-// ----------------------------------------------------------------------------
-
-// For compilers that support precompilation, includes "wx.h".
-#include "wx/wxprec.h"
-
-#ifdef __BORLANDC__
-    #pragma hdrstop
-#endif
-
-#if wxUSE_GAUGE
-
-#include "wx/gauge.h"
-
-#ifndef WX_PRECOMP
-#endif
-
-#include "wx/palmos/private.h"
-
-// ----------------------------------------------------------------------------
-// constants
-// ----------------------------------------------------------------------------
-
-#ifndef PBS_SMOOTH
-    #define PBS_SMOOTH 0x01
-#endif
-
-#ifndef PBS_VERTICAL
-    #define PBS_VERTICAL 0x04
-#endif
-
-#ifndef PBM_SETBARCOLOR
-    #define PBM_SETBARCOLOR         (WM_USER+9)
-#endif
-
-#ifndef PBM_SETBKCOLOR
-    #define PBM_SETBKCOLOR          0x2001
-#endif
-
-// ----------------------------------------------------------------------------
-// wxWin macros
-// ----------------------------------------------------------------------------
-
-// ============================================================================
-// wxGauge implementation
-// ============================================================================
-
-// ----------------------------------------------------------------------------
-// wxGauge creation
-// ----------------------------------------------------------------------------
-
-bool wxGauge::Create(wxWindow *parent,
-                       wxWindowID id,
-                       int range,
-                       const wxPoint& pos,
-                       const wxSize& size,
-                       long style,
-                       const wxValidator& validator,
-                       const wxString& name)
-{
-    return false;
-}
-
-WXDWORD wxGauge::MSWGetStyle(long style, WXDWORD *exstyle) const
-{
-    return 0;
-}
-
-// ----------------------------------------------------------------------------
-// wxGauge geometry
-// ----------------------------------------------------------------------------
-
-wxSize wxGauge::DoGetBestSize() const
-{
-    return wxSize(0,0);
-}
-
-// ----------------------------------------------------------------------------
-// wxGauge setters
-// ----------------------------------------------------------------------------
-
-void wxGauge::SetRange(int r)
-{
-}
-
-void wxGauge::SetValue(int pos)
-{
-}
-
-bool wxGauge::SetForegroundColour(const wxColour& col)
-{
-    return false;
-}
-
-bool wxGauge::SetBackgroundColour(const wxColour& col)
-{
-    return false;
-}
-
-#endif // wxUSE_GAUGE