~ubuntu-branches/ubuntu/lucid/skrooge/lucid

« back to all changes in this revision

Viewing changes to skrooge_scheduled/skgscheduledboardwidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-07-28 15:38:43 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728153843-91b74m0vcam50krt
Tags: 0.2.9-0ubuntu1
* New upstream release
* Added kubuntu_01_cmake_fix.patch:
  Fix FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by S. MANKOWSKI / G. DE BURE skrooge@miraks.com    *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (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, see <http://www.gnu.org/licenses/>  *
 
16
 ***************************************************************************/
 
17
#ifndef SKGSCHEDULEDBOARDWIDGET_H
 
18
#define SKGSCHEDULEDBOARDWIDGET_H
 
19
/** @file
 
20
* This file is Skrooge plugin for bank management.
 
21
*
 
22
* @author Stephane MANKOWSKI / Guillaume DE BURE
 
23
*/
 
24
#include "ui_skgscheduledpluginwidget_board.h"
 
25
#include "skgwidget.h"
 
26
 
 
27
/**
 
28
 * This file is Skrooge plugin for bank management
 
29
 */
 
30
class SKGScheduledBoardWidget : public SKGWidget
 
31
{
 
32
        Q_OBJECT
 
33
 
 
34
public:
 
35
        /**
 
36
         * Default Constructor
 
37
         */
 
38
        SKGScheduledBoardWidget (SKGDocument* iDocument );
 
39
 
 
40
        /**
 
41
         * Default Destructor
 
42
         */
 
43
        virtual ~SKGScheduledBoardWidget();
 
44
 
 
45
private slots:
 
46
        void dataModified(const QString& iTableName, int iIdTransaction);
 
47
 
 
48
private:
 
49
        Q_DISABLE_COPY ( SKGScheduledBoardWidget );
 
50
 
 
51
        Ui::skgscheduledplugin_board ui;;
 
52
};
 
53
 
 
54
#endif // SKGSCHEDULEDBOARDWIDGET_H