~ubuntu-branches/ubuntu/wily/tupi/wily-proposed

« back to all changes in this revision

Viewing changes to src/plugins/tools/opacitytool/settings.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-06-23 12:48:05 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130623124805-9xq9kggclxvli7r9
Tags: 0.2+git02-1
* New upstream release [June 2013].
  + ready for "libav9" transition.
* Build-Depends:
  + libquazip-dev
* Packaging updates:
  + added ugly override for broken upstream libav detection;
    "pkg-config" is added to Build-Depends for that matter.
  + rules simplified as upstream introduced support for $(DESTDIR).
  + re-build translations after configure.
  + re-build/re-compress man page.
  + dropped all patches.
  + updated lintian-overrides, new overrides for
    "library-not-linked-against-libc" in private libs.
  + ship all icons and docs in -data package.
  + data de-duplication in -data package.
  + debian/watch to check for tags at github as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#ifndef SETTINGS_H
37
37
#define SETTINGS_H
38
38
 
 
39
#include "tuptoolplugin.h"
 
40
 
39
41
#include <QWidget>
40
42
 
41
43
class TupItemTweener;
49
51
    Q_OBJECT
50
52
 
51
53
    public:
52
 
        enum Mode { Add = 1, Edit, View };
53
 
        enum EditMode { Selection = 0, Properties, None };
 
54
        // enum Mode { Add = 1, Edit, View };
 
55
        // enum EditMode { Selection = 0, Properties, None };
54
56
 
55
57
        Settings(QWidget *parent = 0);
56
58
        ~Settings();
63
65
        int totalSteps();
64
66
 
65
67
        QString currentTweenName() const;
66
 
        void activatePropertiesMode(Settings::EditMode mode);
 
68
        void activatePropertiesMode(TupToolPlugin::EditMode mode);
67
69
        void notifySelection(bool flag);
68
70
        QString tweenToXml(int currentFrame);
69
71