~ubuntu-branches/ubuntu/saucy/qgis/saucy

« back to all changes in this revision

Viewing changes to src/gui/qgshelpviewer.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                                qgshelpviewer.h 
3
 
                              Simple help browser
4
 
                             -------------------
5
 
    begin                : 2004-01-28
6
 
    copyright            : (C) 2004 by Gary E.Sherman
7
 
    email                : sherman at mrcc.com
8
 
***************************************************************************/
9
 
 
10
 
/***************************************************************************
11
 
 *                                                                         *
12
 
 *   This program is free software; you can redistribute it and/or modify  *
13
 
 *   it under the terms of the GNU General Public License as published by  *
14
 
 *   the Free Software Foundation; either version 2 of the License, or     *
15
 
 *   (at your option) any later version.                                   *
16
 
 *                                                                         *
17
 
 ***************************************************************************/
18
 
 /* $Id: qgshelpviewer.h 4774 2006-01-29 01:37:36Z g_j_m $ */
19
 
 
20
 
#ifndef QGSHELPVIEWER_H
21
 
#define QGSHELPVIEWER_H
22
 
 
23
 
#include "ui_qgshelpviewerbase.h"
24
 
 
25
 
class QString;
26
 
 
27
 
class QgsHelpViewer : public QDialog, private Ui::QgsHelpViewerBase
28
 
{
29
 
    Q_OBJECT
30
 
 
31
 
public:
32
 
    QgsHelpViewer( QWidget* parent = 0, Qt::WFlags fl = 0 );
33
 
    ~QgsHelpViewer();
34
 
    void showContent(QString path, QString doc);
35
 
 
36
 
 
37
 
};
38
 
 
39
 
#endif // QGSHELPVIEWER_H