summaryrefslogtreecommitdiffstats
path: root/tderadio3/src/station-drag-object.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2022-05-30 19:40:31 +0900
committerMichele Calgaro <[email protected]>2022-05-31 01:17:58 +0900
commitd95a4fea540b371fa86493d069fdbd54f33c5b40 (patch)
tree079b038ab559439eb7ded40a07bd79fd92926b3b /tderadio3/src/station-drag-object.cpp
parente54890e0480e5adee69f5220a7c6dd072bbd75ea (diff)
downloadtderadio-d95a4fea540b371fa86493d069fdbd54f33c5b40.tar.gz
tderadio-d95a4fea540b371fa86493d069fdbd54f33c5b40.zip
Standardize folder structure.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tderadio3/src/station-drag-object.cpp')
-rw-r--r--tderadio3/src/station-drag-object.cpp93
1 files changed, 0 insertions, 93 deletions
diff --git a/tderadio3/src/station-drag-object.cpp b/tderadio3/src/station-drag-object.cpp
deleted file mode 100644
index 29f082c..0000000
--- a/tderadio3/src/station-drag-object.cpp
+++ /dev/null
@@ -1,93 +0,0 @@
-/***************************************************************************
- station-drag-object.cpp - description
- -------------------
- begin : Sun Aug 28 2005
- copyright : (C) 2005 by Martin Witte
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or *
- * (at your option) any later version. *
- * *
- ***************************************************************************/
-
-#include "include/station-drag-object.h"
-#include "include/errorlog-interfaces.h"
-#include <tdelocale.h>
-
-#define STATION_LIST_MIME_TYPE "multimedia/tderadio-stationids"
-
-StationDragObject::StationDragObject(const TQStringList &stationIDs, TQWidget *dragSource, const char * name)
- : TQStoredDrag(STATION_LIST_MIME_TYPE, dragSource, name)
-{
- setStations(stationIDs);
-}
-
-StationDragObject::StationDragObject(TQWidget *dragSource, const char * name)
- : TQStoredDrag(STATION_LIST_MIME_TYPE, dragSource, name)
-{
-}
-
-
-StationDragObject::~StationDragObject()
-{
-}
-
-const char *StationDragObject::format(int i) const
-{
- if (i == 0)
- return STATION_LIST_MIME_TYPE;
- else
- return NULL;
-}
-
-
-void StationDragObject::setStations(const TQStringList &stationIDs)
-{
- TQByteArray tmp;
- int pos = 0;
- for (TQValueListConstIterator<TQString> it=stationIDs.begin(); it != stationIDs.end(); ++it) {
- const TQString &s = *it;
- tmp.resize(tmp.size()+s.length() + 1);
- for (unsigned int k = 0; k < s.length(); ++k) {
- tmp[pos++] = s[k].latin1();
- }
- tmp[pos++] = 0;
- }
- setEncodedData(tmp);
-}
-
-
-bool StationDragObject::canDecode (const TQMimeSource *e)
-{
- IErrorLogClient::staticLogDebug(e->format(0));
- bool retval = (e && e->format(0) == TQString(STATION_LIST_MIME_TYPE));
- if (retval)
- IErrorLogClient::staticLogDebug(i18n("canDecode = true"));
- return retval;
-}
-
-
-bool StationDragObject::decode (const TQMimeSource *e, TQStringList &stationIDs)
-{
- stationIDs.clear();
- if (canDecode(e)) {
- const TQByteArray &tmp = e->encodedData(e->format(0));
- TQString str = "";
- for (unsigned int pos = 0; pos < tmp.size(); ++pos) {
- if (tmp[pos]) {
- str.append(tmp[pos]);
- } else {
- stationIDs.append(str);
- str = "";
- }
- }
- }
- return true;
-}
-
-