summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/kameraklient/cameraui.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/kameraklient/cameraui.h')
-rw-r--r--kipi-plugins/kameraklient/cameraui.h188
1 files changed, 188 insertions, 0 deletions
diff --git a/kipi-plugins/kameraklient/cameraui.h b/kipi-plugins/kameraklient/cameraui.h
new file mode 100644
index 0000000..2fc6b52
--- /dev/null
+++ b/kipi-plugins/kameraklient/cameraui.h
@@ -0,0 +1,188 @@
+/* ============================================================
+ * File : cameraui.h
+ * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ * Date : 2003-01-21
+ * Description :
+ *
+ * Copyright 2003 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ * Copyright 2004 by Tudor Calin <tudor@1xtech.com>
+
+ * 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 CAMERAUI_H
+#define CAMERAUI_H
+
+// Qt includes.
+
+#include <qdict.h>
+#include <qstring.h>
+#include <qwidget.h>
+
+// KDE includes.
+
+#include <kfileitem.h>
+
+// Local includes.
+
+#include "kpaboutdata.h"
+#include "gpfileiteminfo.h"
+#include "cameratype.h"
+
+class QComboBox;
+class QImage;
+class QLabel;
+class QLineEdit;
+class QPushButton;
+class QSplitter;
+
+class KAccel;
+class KComboBox;
+class KDirLister;
+class KProgress;
+class KStatusBar;
+class KToggleAction;
+
+
+
+namespace KIO {
+class Job;
+}
+
+namespace KIPIKameraKlientPlugin
+{
+
+class CameraList;
+class CameraType;
+class GPEventFilter;
+class GPController;
+class GPFileItemContainer;
+class CameraIconItem;
+class CameraIconView;
+class CameraFolderItem;
+class CameraFolderView;
+
+class CameraUI : public QWidget
+{
+ Q_OBJECT
+
+public:
+
+ CameraUI();
+ ~CameraUI();
+ void setCameraConnected(bool val);
+ const CameraType* cameraType();
+ void setCameraType(const CameraType& ctype);
+ void cameraInitialized(bool val);
+ void cameraSubFolder(const QString& folder, const QString& subFolder);
+ void cameraNewItems(const QString& folder, const GPFileItemInfoList& infoList);
+ void cameraNewItems(const GPFileItemInfoList& infoList);
+ void cameraNewThumbnail(const QString& folder, const QString& itemName, const QImage& thumbnail);
+ void cameraDownloadedItem(const QString& folder, const QString& itemName);
+ void cameraDeletedItem(const QString& folder, const QString& itemName);
+ void cameraErrorMsg(const QString& msg);
+
+private:
+
+ void setupAccel();
+ void setupConnections();
+ bool cameraReadyForUpload(QString& reason);
+ void downloadOneItem(const QString& item, const QString& folder,
+ const QString& downloadDir, bool& proceedFurther, bool& overwriteAll);
+
+signals:
+
+ void signalStatusMsg(const QString&);
+ void signalProgressVal(int);
+ void signalBusy(bool);
+
+public slots:
+
+ void slotCameraConnectToggle();
+ void slotCameraDownloadSelected();
+ void slotCameraDeleteSelected();
+ void slotCameraUpload();
+ void slotCameraCancel();
+ void slotSelectAll();
+ void slotSelectNone();
+ void slotSelectInvert();
+ void slotSelectNew();
+
+private slots:
+
+ void slotSetStatusMsg(const QString& msg);
+ void slotSetProgressVal(int val);
+ void slotResetStatusBar();
+ void slotBusy(bool val);
+ void slotSetupCamera();
+ void slotSyncCameraComboBox();
+ void slotFolderSelected(CameraFolderItem *item);
+ void slotChangeDownloadDirectory();
+ void writeSettings();
+ void readSettings();
+ void slotHelp();
+
+private:
+
+ QLabel *mStatusLabel;
+
+ KProgress *mProgressBar;
+
+ QComboBox *mCameraComboBox;
+
+ QPushButton *mCameraConnectBtn;
+ QPushButton *mCameraSetupBtn;
+ QPushButton *mCameraStopBtn;
+ QPushButton *mCameraDownloadBtn;
+ QPushButton *mCameraUploadBtn;
+ QPushButton *mCameraDeleteBtn;
+ QPushButton *mDialogCloseBtn;
+ QPushButton *mChangeDownloadDirectoryBtn;
+ QPushButton *mhelpButton;
+
+ KAccel *mCameraUIAccel;
+
+ KToggleAction *mCameraConnectAction;
+
+ CameraType *mCameraType;
+
+ CameraList *mCameraList;
+
+ KStatusBar *mStatusBar;
+
+ KConfig *mConfig;
+
+ GPEventFilter *efilter_;
+
+ GPController *controller_;
+
+ GPFileItemContainer *container_;
+
+ QSplitter *mSplitter;
+
+ CameraFolderView *mFolderView;
+
+ CameraIconView *mIconView;
+
+ QString cameraPath_;
+
+ bool cameraConnected_;
+
+ QLineEdit *mDownloadDirectoryEdit;
+
+ KIPIPlugins::KPAboutData *m_about;
+};
+
+} // NameSpace KIPIKameraKlientPlugin
+
+#endif