summaryrefslogtreecommitdiffstats
path: root/src/k3bdataprojectinterface.cpp
blob: bbb2701b0514158c24aff150d4ee0d118d9760c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* 
 *
 * $Id: k3bdataprojectinterface.cpp 619556 2007-01-03 17:38:12Z trueg $
 * Copyright (C) 2003 Sebastian Trueg <trueg@k3b.org>
 *
 * This file is part of the K3b project.
 * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
 *
 * 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.
 * See the file "COPYING" for the exact licensing terms.
 */

#include "k3bdataprojectinterface.h"

#include <k3bdatadoc.h>
#include <k3bdiritem.h>
#include <k3bisooptions.h>


K3bDataProjectInterface::K3bDataProjectInterface( K3bDataDoc* doc, const char* name )
  : K3bProjectInterface( doc, name ),
    m_dataDoc(doc)
{
}


K3bDataProjectInterface::~K3bDataProjectInterface()
{
}


bool K3bDataProjectInterface::createFolder( const TQString& name )
{
  return createFolder( name, "/" );
}


bool K3bDataProjectInterface::createFolder( const TQString& name, const TQString& tqparent )
{
  K3bDataItem* p = m_dataDoc->root()->findByPath( tqparent );
  if( p && p->isDir() && !static_cast<K3bDirItem*>(p)->tqfind( name ) ) {
    m_dataDoc->addEmptyDir( name, static_cast<K3bDirItem*>(p) );
    return true;
  }
  return false;
}


void K3bDataProjectInterface::addUrl( const TQString& url, const TQString& tqparent )
{
  addUrls( TQStringList(url), tqparent );
}


void K3bDataProjectInterface::addUrls( const TQStringList& urls, const TQString& tqparent )
{
  K3bDataItem* p = m_dataDoc->root()->findByPath( tqparent );
  if( p && p->isDir() )
    m_dataDoc->addUrls( KURL::List(urls), static_cast<K3bDirItem*>(p) );
}


bool K3bDataProjectInterface::removeItem( const TQString& path )
{
  K3bDataItem* p = m_dataDoc->root()->findByPath( path );
  if( p && p->isRemoveable() ) {
    m_dataDoc->removeItem( p );
    return true;
  }
  else
    return false;
}


bool K3bDataProjectInterface::renameItem( const TQString& path, const TQString& newName )
{
  K3bDataItem* p = m_dataDoc->root()->findByPath( path );
  if( p && p->isRenameable() && !newName.isEmpty() ) {
    p->setK3bName( newName );
    return true;
  }
  else
    return false;
}


void K3bDataProjectInterface::setVolumeID( const TQString& id )
{
  m_dataDoc->setVolumeID( id );
}

bool K3bDataProjectInterface::isFolder( const TQString& path ) const
{
  K3bDataItem* p =  m_dataDoc->root()->findByPath( path );
  if( p )
    return p->isDir();
  else
    return false;
}


TQStringList K3bDataProjectInterface::tqchildren( const TQString& path ) const
{
  TQStringList l;
  K3bDataItem* item =  m_dataDoc->root()->findByPath( path );
  if( item && item->isDir() ) {
    const TQPtrList<K3bDataItem>& cl = static_cast<K3bDirItem*>(item)->tqchildren();
    for( TQPtrListIterator<K3bDataItem> it( cl ); *it; ++it )
      l.append( it.current()->k3bName() );
  }

  return l;
}


bool K3bDataProjectInterface::setSortWeight( const TQString& path, long weight ) const
{
  K3bDataItem* item =  m_dataDoc->root()->findByPath( path );
  if( item ) {
    item->setSortWeight( weight );
    return true;
  }
  else
    return false;
}