]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/pen.cpp
Committed William Osborne's wxPalmOS port
[wxWidgets.git] / src / palmos / pen.cpp
diff --git a/src/palmos/pen.cpp b/src/palmos/pen.cpp
new file mode 100644 (file)
index 0000000..6cfa473
--- /dev/null
@@ -0,0 +1,122 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name:        palmos/pen.cpp
+// Purpose:     wxPen
+// Author:      William Osborne
+// Modified by:
+// Created:     10/13/04
+// RCS-ID:      $Id: 
+// Copyright:   (c) William Osborne
+// Licence:     wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
+#pragma implementation "pen.h"
+#endif
+
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
+#ifdef __BORLANDC__
+#pragma hdrstop
+#endif
+
+#ifndef WX_PRECOMP
+#include <stdio.h>
+#include "wx/setup.h"
+#include "wx/list.h"
+#include "wx/utils.h"
+#include "wx/app.h"
+#include "wx/pen.h"
+#endif
+
+static int wx2msPenStyle(int wx_style);
+
+IMPLEMENT_DYNAMIC_CLASS(wxPen, wxGDIObject)
+
+wxPenRefData::wxPenRefData()
+{
+}
+
+wxPenRefData::wxPenRefData(const wxPenRefData& data)
+{
+}
+
+wxPenRefData::~wxPenRefData()
+{
+}
+
+// Pens
+
+wxPen::wxPen()
+{
+}
+
+wxPen::~wxPen()
+{
+}
+
+// Should implement Create
+wxPen::wxPen(const wxColour& col, int Width, int Style)
+{
+}
+
+wxPen::wxPen(const wxBitmap& stipple, int Width)
+{
+}
+
+bool wxPen::RealizeResource()
+{
+    return false;
+}
+
+WXHANDLE wxPen::GetResourceHandle() const
+{
+    return 0;
+}
+
+bool wxPen::FreeResource(bool WXUNUSED(force))
+{
+    return false;
+}
+
+bool wxPen::IsFree() const
+{
+    return false;
+}
+
+void wxPen::Unshare()
+{
+}
+
+void wxPen::SetColour(const wxColour& col)
+{
+}
+
+void wxPen::SetColour(unsigned char r, unsigned char g, unsigned char b)
+{
+}
+
+void wxPen::SetWidth(int Width)
+{
+}
+
+void wxPen::SetStyle(int Style)
+{
+}
+
+void wxPen::SetStipple(const wxBitmap& Stipple)
+{
+}
+
+void wxPen::SetDashes(int nb_dashes, const wxDash *Dash)
+{
+}
+
+void wxPen::SetJoin(int Join)
+{
+}
+
+void wxPen::SetCap(int Cap)
+{
+}
+