You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeaddons/noatun-plugins/oblique/base.h

107 lines
2.0 KiB

// Copyright (c) 2003,2004 Charles Samuels <charles@kde.org>
// See the file COPYING for redistribution terms.
#ifndef BASE_H
#define BASE_H
// ;)
#define unless(e) if(!(e))
#include <tqstring.h>
#include <tqobject.h>
#include <tqptrlist.h>
class File;
class Slice;
typedef unsigned int FileId;
class Base : public TQObject
{
Q_OBJECT
struct Private;
Private *d; // not for BC, but for compile times :)
friend class Slice;
friend class File;
unsigned int mFormatVersion;
public:
Base(const TQString &file);
~Base();
File add(const TQString &file);
File find(FileId id);
void clear();
/**
* get the highest FileID
**/
FileId high() const;
/**
* @return first item after the given id (inclusive)
**/
File first(FileId id=1);
TQString property(FileId id, const TQString &property) const;
void setProperty(FileId id, const TQString &key, const TQString &value);
TQStringList properties(FileId id) const;
void clearProperty(FileId, const TQString &key);
/**
* same as File::remove
**/
void remove(File f);
/**
* change the id of a file
**/
void move(FileId oldid, FileId newid);
void dump();
TQPtrList<Slice> slices();
Slice *addSlice(const TQString &name);
Slice *defaultSlice();
Slice *sliceById(int id);
unsigned int formatVersion() const { return mFormatVersion; }
void resetFormatVersion();
public slots:
void notifyChanged(const File &file);
signals:
void added(File file);
void removed(File file);
void modified(File file);
void addedTo(Slice *slice, File file);
void removedFrom(Slice *slice, File file);
/**
* emitted when something of the slices gets modified
* @ref Slice calls this itself via a friendship
**/
void slicesModified();
private:
void loadIntoCache(FileId id) const;
private: // friends for Slice
void removeSlice(Slice *slice);
private:
/**
* load the xml that lives at the head of the db and contains
* potentially lots of structured data
**/
void loadMetaXML(const TQString &xml);
TQString saveMetaXML();
};
#endif