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

« back to all changes in this revision

Viewing changes to skgbasegui/skgtablewithgraph.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:
79
79
         * @param iPrimaryUnit the primary unit
80
80
         * @param iSecondaryUnit the secondary unit
81
81
         * @param iSecondaryUnitValue the secondary unit value
 
82
         * @param iShowSumAndAverage show sum and average columns
82
83
         */
83
84
        virtual void setData(const SKGStringListList& iData,
84
85
                             const QString& iPrimaryUnit,
85
86
                             const QString& iSecondaryUnit,
86
 
                             double iSecondaryUnitValue);
 
87
                             double iSecondaryUnitValue,
 
88
                             bool iShowSumAndAverage=true);
87
89
 
88
90
        /**
89
91
         * Get the table content
144
146
        QString primaryUnit;
145
147
        QString secondaryUnit;
146
148
        double secondaryUnitValue;
 
149
        bool showSumAndAverage;
147
150
 
148
151
        KMenu* mainMenu;
149
152
};