~ubuntu-branches/debian/experimental/qtcurve/experimental

« back to all changes in this revision

Viewing changes to qt4/config/exportthemedialog.h

  • Committer: Package Import Robot
  • Author(s): Boris Pek, Thanks to Scarlett Clark
  • Date: 2015-07-26 04:17:05 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20150726041705-yuxbierbpely1fvp
Tags: 1.8.18+git20150711-a3fff13-1
* Upstream Git snapshot (1.8.18-242-ga3fff13) is taken from:
  http://quickgit.kde.org/?p=qtcurve.git
* Localization files are taken from last stable release (1.8.18).
* Fixed in upstream:
  - gtk2-engines-qtcurve: inkscape 0.91 crashes after palette mouse-over
    (Closes: #786831)
  - gtk2-engines-qtcurve: massive memory leak in mysql-workbench
    (Closes: #682162)
* Update debian/patches:
  - delete qt53-build-fix.diff (fixed in upstream)
  - add enable-translations.patch
* Update debian/control:
  - bump Standards-Version to 3.9.6 (was 3.9.5): no changes required
  - update Build-Depends for transition from KDE4 to KF5:
    + delete dependencies from: kdebase-workspace-dev and qtdeclarative5-dev
    + add dependencies from: extra-cmake-modules, kio-dev,
      libkf5archive-dev, libkf5config-dev, libkf5configwidgets-dev,
      libkf5i18n-dev, libkf5kdelibs4support-dev, libkf5widgetsaddons-dev,
      libkf5xmlgui-dev, libqt5x11extras5-dev, libxcb1-dev, pkg-config
      [Thanks to Scarlett Clark]
  - delete package kwin-style-qtcurve: it is not available for KF5 yet
    (LP: #1452218)
  - package kde-style-qtcurve now provides package kde-style-qtcurve-qt4
  - package kde-style-qtcurve is "Multi-Arch: same" now
  - metapackage qtcurve now depends on kde-style-qtcurve-qt5 and recommends
    kwin-decoration-oxygen, oxygen-icon-theme and oxygencursors
* Update debian/rules:
  - build using kf5 libraries instead of kde4
  - update configure flags
  - use xz compression in packages
* Update debian/kde-style-qtcurve.install:
  there are no KDE4 related files anymore.
* Update debian/kde-style-qtcurve-qt5.install.
* Update debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 *   Copyright 2007 - 2010 Craig Drummond <craig.p.drummond@gmail.com>       *
3
 
 *   Copyright 2013 - 2013 Yichao Yu <yyc1992@gmail.com>                     *
 
3
 *   Copyright 2013 - 2015 Yichao Yu <yyc1992@gmail.com>                     *
4
4
 *                                                                           *
5
5
 *   This program is free software; you can redistribute it and/or modify    *
6
6
 *   it under the terms of the GNU Lesser General Public License as          *
24
24
#define __EXPORT_THEME_DIALOG_H__
25
25
 
26
26
#include <kdialog.h>
27
 
#include "common.h"
 
27
#include <common/common.h>
28
28
 
29
29
class KUrlRequester;
30
30
class QLineEdit;
31
31
 
32
 
class CExportThemeDialog : public KDialog
33
 
{
 
32
class CExportThemeDialog: public KDialog {
34
33
    Q_OBJECT
35
 
 
36
 
    public:
37
 
 
 
34
public:
38
35
    CExportThemeDialog(QWidget *parent);
39
36
 
40
 
    void  run(const Options &o);
 
37
    void run(const Options &o);
41
38
    QSize sizeHint() const;
42
39
 
43
 
    private slots:
44
 
 
 
40
private:
45
41
    void slotButtonClicked(int button);
46
42
 
47
 
    private:
48
 
 
49
 
    QLineEdit     *themeName,
50
 
                  *themeComment;
 
43
    QLineEdit *themeName;
 
44
    QLineEdit *themeComment;
51
45
    KUrlRequester *themeUrl;
52
 
    Options       opts;
 
46
    Options opts;
53
47
};
54
48
 
55
49
#endif