~ubuntu-branches/ubuntu/saucy/merkaartor/saucy

« back to all changes in this revision

Viewing changes to Utils/PictureViewerDialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2009-09-13 00:52:12 UTC
  • mto: (1.2.7 upstream) (0.1.3 upstream) (3.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090913005212-pjecal8zxm07x0fj
ImportĀ upstreamĀ versionĀ 0.14+svnfixes~20090912

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
// C++ Interface: PictureViewerDialog
3
 
//
4
 
// Description: 
5
 
//
6
 
//
7
 
// Author: Chris Browet <cbro@semperpax.com>, (C) 2008
8
 
//
9
 
// Copyright: See COPYING file that comes with this distribution
10
 
//
11
 
//
12
 
#ifndef PICTUREVIEWERDIALOG_H
13
 
#define PICTUREVIEWERDIALOG_H
14
 
 
15
 
#include <QWidget>
16
 
 
17
 
#include <ui_PictureViewerDialog.h>
18
 
 
19
 
class PictureViewerDialog: public QDialog , public Ui::PictureViewerDialog
20
 
{
21
 
        Q_OBJECT
22
 
 
23
 
public:
24
 
    PictureViewerDialog(const QString& title, const QString &filename, QWidget *parent=NULL);
25
 
        PictureViewerDialog(const QString& title, const QPixmap& thePixmap, QWidget *parent=NULL);
26
 
 
27
 
private:
28
 
        QString m_filename;
29
 
 
30
 
public slots:
31
 
        void on_buttonBox_clicked(QAbstractButton * button);
32
 
 
33
 
protected:
34
 
 
35
 
private:
36
 
 
37
 
};
38
 
 
39
 
#endif