~ubuntu-branches/debian/lenny/kipi-plugins/lenny

« back to all changes in this revision

Viewing changes to kipi-plugins/galleryexport/gallerylist.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-10-16 08:26:01 UTC
  • mfrom: (2.1.15 hardy)
  • Revision ID: james.westby@ubuntu.com-20081016082601-3f8ozqd96zwuuuki
Tags: 0.1.5-4
* Revert unsuccessful PicasaWebExport.patch 
  - this version suitable for inclusion in lenny
  - kipi plugins - picasa bug (Closes: #501771)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ============================================================
 
2
 * File  : gallerylist.h
 
3
 * Author: Colin Guthrie <kde@colin.guthr.ie>
 
4
 * Date  : 2006-09-04
 
5
 * Copyright 2006 by Colin Guthrie <kde@colin.guthr.ie>
 
6
 *
 
7
 * This program is free software; you can redistribute it
 
8
 * and/or modify it under the terms of the GNU General
 
9
 * Public License as published by the Free Software Foundation;
 
10
 * either version 2, or (at your option)
 
11
 * any later version.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 * ============================================================ */
 
18
 
 
19
#ifndef GALLERYLIST_H
 
20
#define GALLERYLIST_H
 
21
 
 
22
#include <kdialogbase.h>
 
23
 
 
24
#include <qlistview.h>
 
25
 
 
26
namespace KIPIGalleryExportPlugin
 
27
{
 
28
 
 
29
class Gallery;
 
30
class Galleries;
 
31
 
 
32
class GalleryList : public KDialogBase
 
33
{
 
34
  Q_OBJECT
 
35
 
 
36
public:
 
37
 
 
38
  GalleryList(QWidget *parent, Galleries* pGalleries, bool blnShowOpen = true);
 
39
  ~GalleryList();
 
40
 
 
41
  Gallery* GetGallery(void);
 
42
 
 
43
private:
 
44
 
 
45
  Galleries* mpGalleries;
 
46
  Gallery* mpCurrentGallery;
 
47
  QListView* mpGalleryList;
 
48
 
 
49
private slots:
 
50
 
 
51
  void selectionChanged();
 
52
  void doubleClicked(QListViewItem*, const QPoint&, int);
 
53
 
 
54
  void slotUser1();
 
55
  void slotUser2();
 
56
  void slotUser3();
 
57
};
 
58
 
 
59
}
 
60
 
 
61
#endif /* GALLERYLIST_H */