~ubuntu-branches/ubuntu/feisty/digikam/feisty

« back to all changes in this revision

Viewing changes to utilities/kexif/kexiflistview.h

  • Committer: Bazaar Package Importer
  • Author(s): Achim Bohnet
  • Date: 2005-03-10 02:39:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050310023902-023nymfst5mg696c
Tags: 0.7.2-2
* debian/TODO: clean
* digikam manpage: better --detect-camera description

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef KEXIFLISTVIEW_H
2
 
#define KEXIFLISTVIEW_H
3
 
 
4
 
#include <klistview.h>
5
 
#include <qptrlist.h>
6
 
 
7
 
class KExifEntry;
8
 
 
9
 
class KExifListView : public KListView {
10
 
 
11
 
    Q_OBJECT
12
 
 
13
 
public:
14
 
 
15
 
    KExifListView(QWidget* parent);
16
 
    ~KExifListView();
17
 
 
18
 
    void addItems(const QPtrList<KExifEntry>& entryList);
19
 
 
20
 
private slots:
21
 
 
22
 
    void slot_selectionChanged(QListViewItem *item);
23
 
 
24
 
signals:
25
 
 
26
 
    void signal_itemDescription(const QString& desc);
27
 
 
28
 
};
29
 
 
30
 
#endif