~ubuntu-branches/ubuntu/quantal/cantor/quantal

« back to all changes in this revision

Viewing changes to src/backends/qalculate/qalculatesyntaxhelpobject.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:54 UTC
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: package-import@ubuntu.com-20111215141754-mpepwpmr42120lpf
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*************************************************************************************
 
2
 *  Copyright (C) 2009 by Milian Wolff <mail@milianw.de>                               *
 
3
 *                                                                                   *
 
4
 *  This program is free software; you can redistribute it and/or                    *
 
5
 *  modify it under the terms of the GNU General Public License                      *
 
6
 *  as published by the Free Software Foundation; either version 2                   *
 
7
 *  of the License, or (at your option) any later version.                           *
 
8
 *                                                                                   *
 
9
 *  This program is distributed in the hope that it will be useful,                  *
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of                   *
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                    *
 
12
 *  GNU General Public License for more details.                                     *
 
13
 *                                                                                   *
 
14
 *  You should have received a copy of the GNU General Public License                *
 
15
 *  along with this program; if not, write to the Free Software                      *
 
16
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA   *
 
17
 *************************************************************************************/
 
18
 
 
19
#ifndef QALCULATESYNTAXHELPOBJECT_H
 
20
#define QALCULATESYNTAXHELPOBJECT_H
 
21
 
 
22
#include <syntaxhelpobject.h>
 
23
 
 
24
class QalculateSession;
 
25
 
 
26
class QalculateSyntaxHelpObject : public Cantor::SyntaxHelpObject
 
27
{
 
28
public:
 
29
    QalculateSyntaxHelpObject( const QString& command, QalculateSession* session );
 
30
    QString answer();
 
31
 
 
32
protected:
 
33
    virtual void fetchInformation();
 
34
 
 
35
    void setPlotInformation();
 
36
    void setSaveVariablesInformation();
 
37
    void setLoadVariablesInformation();
 
38
 
 
39
    QString m_answer;
 
40
};
 
41
 
 
42
#endif // QALCULATESYNTAXHELPOBJECT_H