summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/sync/gallerywindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/sync/gallerywindow.h')
-rw-r--r--kipi-plugins/sync/gallerywindow.h106
1 files changed, 106 insertions, 0 deletions
diff --git a/kipi-plugins/sync/gallerywindow.h b/kipi-plugins/sync/gallerywindow.h
new file mode 100644
index 0000000..7e4aa0e
--- /dev/null
+++ b/kipi-plugins/sync/gallerywindow.h
@@ -0,0 +1,106 @@
+/* ============================================================
+ * File : gallerywindow.h
+ * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ * Date : 2004-11-30
+ * Copyright 2004 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
+ *
+ * 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 GALLERYWINDOW_H
+#define GALLERYWINDOW_H
+
+#include <kdialogbase.h>
+#include <qvaluelist.h>
+#include <qpair.h>
+#include <qintdict.h>
+
+class QListView;
+class QPushButton;
+class QSpinBox;
+class QCheckBox;
+class QProgressDialog;
+class KHTMLPart;
+class KURL;
+
+namespace KIPI
+{
+class Interface;
+}
+namespace KIPIPlugins
+{
+class KPAboutData;
+}
+
+namespace KIPIGalleryExportPlugin
+{
+
+class Galleries;
+class GalleryTalker;
+class GAlbum;
+class GPhoto;
+class GAlbumViewItem;
+
+class GalleryWindow : public KDialogBase
+{
+ Q_OBJECT
+
+public:
+
+ GalleryWindow(KIPI::Interface *interface, QWidget *parent, Galleries* pGalleries);
+ ~GalleryWindow();
+
+private:
+
+ QListView *m_albumView;
+ KHTMLPart *m_photoView;
+ QPushButton *m_newAlbumBtn;
+ QPushButton *m_addPhotoBtn;
+ QPushButton *m_helpButton;
+ QCheckBox *m_resizeCheckBox;
+ QSpinBox *m_dimensionSpinBox;
+ GalleryTalker *m_talker;
+ QIntDict<GAlbumViewItem> m_albumDict;
+ QString m_lastSelectedAlbum;
+ KIPI::Interface *m_interface;
+ KIPIPlugins::KPAboutData *m_about;
+
+ QProgressDialog *m_progressDlg;
+ unsigned int m_uploadCount;
+ unsigned int m_uploadTotal;
+ QValueList< QPair<QString,QString> > m_uploadQueue;
+
+ Galleries* mpGalleries;
+ Gallery* mpGallery;
+
+private slots:
+
+ void slotDoLogin();
+ void slotLoginFailed( const QString& msg );
+ void slotBusy( bool val );
+ void slotError( const QString& msg );
+ void slotAlbums( const QValueList<GAlbum>& albumList );
+ void slotPhotos( const QValueList<GPhoto>& photoList );
+ void slotAlbumSelected();
+ void slotOpenPhoto( const KURL& url );
+ void slotNewAlbum();
+ void slotAddPhotos();
+ void slotAddPhotoNext();
+ void slotAddPhotoSucceeded();
+ void slotAddPhotoFailed( const QString& msg );
+ void slotAddPhotoCancel();
+ void slotHelp();
+};
+
+}
+
+#endif /* GALLERYWINDOW_H */