summaryrefslogtreecommitdiff
path: root/starmath/inc/utility.hxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-13 20:59:34 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-13 22:47:24 +0100
commit8df7d613a026861501dbff935ce9c2c829cc9c12 (patch)
tree7cbdb268edaeae6dd6d58eac57dd4ecb2ca39694 /starmath/inc/utility.hxx
parent712938517dfc3d554d183eb48e9a4dd1ddb5f365 (diff)
Remove NEVER
Diffstat (limited to 'starmath/inc/utility.hxx')
-rw-r--r--starmath/inc/utility.hxx106
1 files changed, 0 insertions, 106 deletions
diff --git a/starmath/inc/utility.hxx b/starmath/inc/utility.hxx
index 9302173296e7..3dca4c91c7d8 100644
--- a/starmath/inc/utility.hxx
+++ b/starmath/inc/utility.hxx
@@ -133,29 +133,6 @@ public:
SmFace & operator *= (SmFace &rFace, const Fraction &rFrac);
-#ifdef NEVER
-////////////////////////////////////////////////////////////
-//
-// SmInfoText
-//
-
-class SmInfoText : public FixedText
-{
-protected:
- USHORT nMaxLen;
- String aText;
-
-public:
- SmInfoText(Window* pParent, WinBits nWinStyle = 0, USHORT nMax = 128);
- SmInfoText(Window* pParent, const ResId& rResId, USHORT nMax = 128);
-
- void SetText(const String& rStr);
-
- XubString GetText() const { return (aText); }
-};
-#endif
-
-
////////////////////////////////////////////////////////////
//
// SmPickList
@@ -204,63 +181,6 @@ public:
////////////////////////////////////////////////////////////
//
-// SmStringPickList
-//
-#ifdef NEVER
-class SmStringPickList : public SmPickList
-{
-protected:
- virtual void *CreateItem(const String& rString);
- virtual void *CreateItem(const void *pItem);
- virtual void DestroyItem(void *pItem);
-
- virtual bool CompareItem(const void *pFirstItem, const void *pSecondItem) const;
-
- virtual String GetStringItem(void *pItem);
-
-public:
- SmStringPickList()
- : SmPickList(0, 5) {}
- SmStringPickList(USHORT nInitSize, USHORT nMaxSize)
- : SmPickList(nInitSize, nMaxSize) {}
- SmStringPickList(const SmPickList& rOrig )
- : SmPickList(rOrig) {}
- virtual ~SmStringPickList() { Clear(); }
-
- virtual void Insert(const String &rString);
- virtual void Update(const String &rString, const String &rNewString);
- virtual void Remove(const String &rString);
-
- inline bool Contains(const String &rString) const;
- inline String Get(USHORT nPos = 0) const;
-
- inline SmStringPickList& operator = (const SmStringPickList& rList);
- inline String operator [] (USHORT nPos) const;
-};
-
-inline SmStringPickList& SmStringPickList::operator = (const SmStringPickList& rList)
-{
- *(SmPickList *)this = *(SmPickList *)&rList; return *this;
-}
-
-inline String SmStringPickList::operator [] (USHORT nPos) const
-{
- return *((String *)SmPickList::operator[](nPos));
-}
-
-inline String SmStringPickList::Get(USHORT nPos) const
-{
- return nPos < Count() ? *((String *)SmPickList::Get(nPos)) : String();
-}
-
-inline bool SmStringPickList::Contains(const String &rString) const
-{
- return SmPickList::Contains((void *)&rString);
-}
-#endif
-
-////////////////////////////////////////////////////////////
-//
// SmFontPickList
//
@@ -328,32 +248,6 @@ inline bool SmFontPickList::Contains(const Font &rFont) const
////////////////////////////////////////////////////////////
//
-// SmStringPickComboBox
-//
-#ifdef NEVER
-class SmStringPickComboBox : public SmStringPickList, public ComboBox
-{
-protected:
- virtual void LoseFocus();
-
- DECL_LINK(SelectHdl, ComboBox *);
-
-public:
- SmStringPickComboBox(Window* pParent, WinBits nWinStyle = 0, USHORT nMax = 4);
- SmStringPickComboBox(Window* pParent, const ResId& rResId, USHORT nMax = 4);
-
- SmStringPickComboBox& operator = (const SmStringPickList& rList);
-
- void SetText(const String& rStr);
-
- virtual void Insert(const String &rString);
- virtual void Update(const String &rString, const String &rNewString);
- virtual void Remove(const String &rString);
-};
-#endif
-
-////////////////////////////////////////////////////////////
-//
// SmFontPickListBox
//