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.
kipi-plugins/kipi-plugins/sync/plugin_sync.h

70 lines
1.6 KiB

/* ============================================================
* File : plugin_sync.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 bythe 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 PLUGIN_SYNC_H
#define PLUGIN_SYNC_H
// libKIPI includes.
#include <libkipi/plugin.h>
class TDEAction;
// Let this header know this exists (no need to load full definition)
namespace KIPISyncPlugin
{
class Sinks;
}
class Plugin_Sync : public KIPI::Plugin
{
TQ_OBJECT
public:
Plugin_Sync(TQObject* pParent,
const char* pName,
const TQStringList &rArgs);
~Plugin_Sync();
virtual KIPI::Category category(TDEAction* pAction) const;
virtual void setup(TQWidget* pWidget);
public slots:
void slotSync();
void slotConfigure();
void slotSettingsCollection();
void slotSettingsImage();
private:
KIPISyncPlugin::Sinks* mpSinks;
TDEAction* mpActionSync;
TDEAction* mpActionConfigure;
TDEAction* mpActionSettingsCollection;
TDEAction* mpActionSettingsImage;
};
#endif