~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to importwizard/sylpheed/sylpheedsettings.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
class SylpheedSettings : public AbstractSettings
29
29
{
30
30
public:
31
 
  explicit SylpheedSettings(const QString& filename, const QString &path, ImportWizard *parent );
 
31
  explicit SylpheedSettings(ImportWizard *parent );
32
32
  ~SylpheedSettings();
33
 
private:
 
33
  virtual void importSettings(const QString& filename, const QString& path);
 
34
 
 
35
 
 
36
protected:
34
37
  void readCustomHeader(QFile *customHeaderFile);
35
 
  void readGlobalSettings(const KConfigGroup& group);
 
38
  virtual void readGlobalSettings(const KConfigGroup& group);
36
39
  void readAccount(const KConfigGroup& accountConfig, bool checkMailOnStartup , int intervalCheckMail);
37
40
  void readIdentity( const KConfigGroup& accountConfig );
38
41
  QString readTransport( const KConfigGroup& accountConfig );
39
42
  void readPop3Account(const KConfigGroup& accountConfig, bool checkMailOnStartup , int intervalCheckMail);
40
43
  void readImapAccount(const KConfigGroup& accountConfig, bool checkMailOnStartup , int intervalCheckMail);
41
44
  void readSignature( const KConfigGroup& accountConfig, KPIMIdentities::Identity* identity );
42
 
  bool readConfig( const QString& key, const KConfigGroup& accountConfig, QString& value, bool remove_underscore = false );
43
 
  bool readConfig( const QString& key, const KConfigGroup& accountConfig, int& value, bool remove_underscore = false );
44
45
 
45
46
  virtual void readSettingsColor(const KConfigGroup& group);
46
47
  virtual void readTemplateFormat(const KConfigGroup& group);
47
48
 
 
49
  virtual void readTagColor(const KConfigGroup& group);
 
50
 
 
51
  virtual void readDateFormat(const KConfigGroup& group);
48
52
  QString convertToKmailTemplate(const QString& templateStr);
49
53
 
50
54