~ubuntu-branches/ubuntu/oneiric/herculesstudio/oneiric

« back to all changes in this revision

Viewing changes to HercStudio/HelpAbout.h

  • Committer: Bazaar Package Importer
  • Author(s): Liang Guo
  • Date: 2011-04-10 02:47:38 UTC
  • Revision ID: james.westby@ubuntu.com-20110410024738-f61r77k8v33h5a63
Tags: upstream-1.2.0
ImportĀ upstreamĀ versionĀ 1.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  File:       HelpAbout.h
 
3
 *
 
4
 *  Author:     Jacob Dekel
 
5
 *  Created on: Aug 7, 2009
 
6
 *
 
7
 *  Copyright (c) 2009 Jacob Dekel
 
8
 *  $Id: HelpAbout.h 34 2009-11-07 06:15:58Z jacob $
 
9
 *
 
10
 *  This program is free software: you can redistribute it and/or modify
 
11
 *  it under the terms of the GNU General Public License as published by
 
12
 *  the Free Software Foundation, either version 3 of the License, or
 
13
 *  (at your option) any later version.
 
14
 *
 
15
 *  This program is distributed in the hope that it will be useful,
 
16
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 *  GNU General Public License for more details.
 
19
 *
 
20
 *  You should have received a copy of the GNU General Public License
 
21
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
 *
 
23
 */
 
24
 
 
25
#ifndef HELPABOUT_H
 
26
#define HELPABOUT_H
 
27
 
 
28
#include <QtGui/QWidget>
 
29
#include "ui_helpabout.h"
 
30
 
 
31
class HelpAbout : public QDialog
 
32
{
 
33
    Q_OBJECT
 
34
 
 
35
public:
 
36
    HelpAbout(QWidget *parent = 0);
 
37
    ~HelpAbout();
 
38
 
 
39
public slots:
 
40
    void okPressed();
 
41
 
 
42
private:
 
43
    Ui::HelpAboutClass ui;
 
44
 
 
45
};
 
46
 
 
47
#endif // HELPABOUT_H