~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to src/settingsfileio.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2009-06-15 12:41:19 UTC
  • mfrom: (1.1.3 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090615124119-eoojhlvkmw3o9tkm
Tags: 0.2.2-1
* New upstream version (Closes: #487301, #507837, #518959, #520392).
* Bumped Standards-Version to 3.8.1. No changes necessary.
* Added 'DM-Upload-Allowed: yes'.
* Added missing '${misc:Depends}'.
* Support for per-file encoding settings (Closes: #514356)
* Upgrade debhelper compatibility to version 5.
* Update debian/copyright for 2009 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef SETTINGSFILEIO_H
21
21
#define SETTINGSFILEIO_H
22
22
 
 
23
#ifdef HAVE_CONFIG_H
 
24
#include <config.h>
 
25
#endif
 
26
 
23
27
#include <qwidget.h>
24
28
 
25
29
class QComboBox;
26
30
class QCheckBox;
27
 
class QLineEdit;
 
31
class QSpinBox;
 
32
class KLineEdit;
28
33
 
29
34
namespace KBibTeX
30
35
{
43
48
 
44
49
    protected slots:
45
50
        void slotConfigChanged();
 
51
        void slotBib2db5BasePath();
 
52
        void slotCheckBib2Db5Path();
46
53
 
47
54
    private:
48
55
        QComboBox *m_comboBoxEncoding;
53
60
        QComboBox *m_comboBoxBibliographyStyle;
54
61
        QCheckBox *m_checkBoxEmbedFiles;
55
62
        QComboBox *m_comboBoxExportSystemHTML;
 
63
        QCheckBox *m_checkBoxUseBibUtils;
 
64
        KLineEdit *m_lineeditBib2Db5Path;
 
65
        QString m_bib2db5BasePath;
 
66
        QSpinBox *m_spinBoxNumberOfBackups;
56
67
 
57
68
        void setupGUI();
58
69