~sil2100/nux/revert_640

« back to all changes in this revision

Viewing changes to Nux/View.h

  • Committer: Łukasz 'sil2100' Zemczak
  • Date: 2012-08-08 12:58:24 UTC
  • Revision ID: lukasz.zemczak@canonical.com-20120808125824-12o0md3gbv5jrawm
Reverting revision 640, as it was causing many serious regressions. The direct cause seems to be libgeis, not the nux changes themselves - but this is the easiest way of resolving the problem. This code can be re-added once geis is fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef ABSTRACTOBJECTBASE_H
24
24
#define ABSTRACTOBJECTBASE_H
25
25
 
26
 
#include "Features.h"
27
26
#include "Nux.h"
28
27
#include "NuxCore/Property.h"
29
28
 
32
31
namespace nux
33
32
{
34
33
  class Layout;
35
 
#ifdef NUX_GESTURES_SUPPORT
36
 
  class GestureEvent;
37
 
#endif
38
34
 
39
35
  class View: public InputArea
40
36
  {
151
147
 
152
148
    void IsHitDetectionSkipingChildren(bool skip_children);
153
149
 
154
 
#ifdef NUX_GESTURES_SUPPORT
155
 
    virtual Area* GetInputAreaHitByGesture(const nux::GestureEvent &event);
156
 
#endif
157
150
 
158
151
  protected:
159
152