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

« back to all changes in this revision

Viewing changes to skrooge_bank/skgbankpluginwidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-05-02 06:47:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090502064715-b7l4eciitw3asos3
Tags: 0.2.7-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
class SKGDocumentBank;
30
30
class SKGObjectModel;
 
31
class SKGAutoHide;
31
32
 
32
33
/**
33
34
 * This file is Skrooge plugin for bank management
40
41
        /**
41
42
         * Default Constructor
42
43
         */
43
 
        SKGBankPluginWidget(SKGMainPanel* iParent, SKGDocumentBank* iDocument);
 
44
        SKGBankPluginWidget ( SKGMainPanel* iParent, SKGDocumentBank* iDocument );
44
45
 
45
46
        /**
46
47
         * Default Destructor
72
73
         * MUST BE OVERWRITTEN
73
74
         * @param iState must be interpreted to set the state of the widget
74
75
         */
75
 
        virtual void setState(const QString& iState);
 
76
        virtual void setState ( const QString& iState );
76
77
 
77
78
        /**
78
79
         * Get the widget must be printed
96
97
        void onFilterRegExpChanged();
97
98
        void onComputeRIB();
98
99
 
 
100
        void refreshInfoZone();
 
101
 
99
102
private:
100
 
        Q_DISABLE_COPY(SKGBankPluginWidget);
 
103
        Q_DISABLE_COPY ( SKGBankPluginWidget );
101
104
 
102
105
        Ui::skgbankplugin_base ui;;
103
106
        SKGObjectModel* objectModel;
 
107
        SKGAutoHide* autoHidder;
104
108
 
105
109
        QStringList listBankNumbers;
106
110
};