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

« back to all changes in this revision

Viewing changes to src/libbase/tuptoolplugin.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:
66
66
        enum ViewTools { InvalidView = -1, ZoomInTool = 0, ZoomOutTool, HandTool };
67
67
        enum ColorTools { InvalidColor = -1, ColorTool = 0 };
68
68
 
 
69
        enum Mode { Add = 1, Edit, View };
 
70
        enum EditMode { None, Selection = 0, Path, Properties };
 
71
 
69
72
        explicit TupToolPlugin(QObject *parent = 0);
70
73
        ~TupToolPlugin();
71
74
        
106
109
 
107
110
        virtual void autoZoom();
108
111
        virtual void setProjectSize(const QSize size);
 
112
 
 
113
        virtual TupToolPlugin::Mode currentMode();
 
114
        virtual TupToolPlugin::EditMode currentEditMode();
109
115
        
110
116
    signals:
111
117
        void requested(const TupProjectRequest *request);