/* ============================================================ * File : plugin_sync.h * Author: Colin Guthrie * Date : 2007-01-14 * * Copyright 2007 by Colin Guthrie * * 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 class TDEAction; // Let this header know this exists (no need to load full definition) namespace KIPISyncPlugin { class Sinks; } class Plugin_Sync : public KIPI::Plugin { Q_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