You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.7 KiB
C++
82 lines
1.7 KiB
C++
/* ============================================================
|
|
* File : sinks.h
|
|
* Author: Colin Guthrie <kde@colin.guthr.ie>
|
|
* Date : 2007-01-14
|
|
*
|
|
* Copyright 2007 by Colin Guthrie <kde@colin.guthr.ie>
|
|
*
|
|
* 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, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
* ============================================================ */
|
|
|
|
#ifndef SINKS_H
|
|
#define SINKS_H
|
|
|
|
#include <tqptrlist.h>
|
|
#include <tqlistview.h>
|
|
|
|
// Some sinks may wish to make use of the Wallet to store sensitive
|
|
// information so we manage it here.
|
|
namespace TDEWallet
|
|
{
|
|
class Wallet;
|
|
}
|
|
|
|
namespace KIPISyncPlugin
|
|
{
|
|
|
|
// Forward Declarations
|
|
class Sink;
|
|
|
|
/* Simple Stub Class to allow easy access to Sinks from GUI elements */
|
|
class SinkTQListViewItem : public TQListViewItem
|
|
{
|
|
|
|
public:
|
|
SinkTQListViewItem(Sink* pSink, TQListView* pParent);
|
|
|
|
Sink* GetSink();
|
|
void Refresh();
|
|
|
|
private:
|
|
Sink* mpSink;
|
|
|
|
};
|
|
|
|
|
|
typedef TQPtrList<Sink> SinkPtrList;
|
|
|
|
/* Container class for all Sinks */
|
|
class Sinks
|
|
{
|
|
|
|
public:
|
|
Sinks();
|
|
~Sinks();
|
|
|
|
Sink* Add(TQString type, TQString name);
|
|
void Remove(Sink* pSink);
|
|
void Save();
|
|
void asTQListView(TQListView* pListView);
|
|
|
|
private:
|
|
void Load();
|
|
|
|
TDEWallet::Wallet* mpWallet;
|
|
|
|
SinkPtrList mSinks;
|
|
unsigned int mMaxSinkId;
|
|
};
|
|
|
|
|
|
}
|
|
|
|
#endif /* SINKS_H */
|