~hikiko/nux/arb-srgba-shader

« back to all changes in this revision

Viewing changes to Nux/VToolBar.cpp

  • Committer: Travis Watkins
  • Date: 2011-08-03 10:34:36 UTC
  • mfrom: (409 nux-logger-fix)
  • mto: (454.5.1 nux-gles)
  • mto: This revision was merged to the branch mainline in revision 501.
  • Revision ID: travis.watkins@linaro.org-20110803103436-biz9c9930l2refsi
merge with lp:nux

Show diffs side-by-side

added added

removed removed

Lines of Context:
159
159
 
160
160
  void VToolBar::RecvMouseDownOnIcon (int x, int y, unsigned long button_flags, unsigned long key_flags)
161
161
  {
162
 
    NeedRedraw();
 
162
    QueueDraw();
163
163
  }
164
164
 
165
165
  void VToolBar::RecvMouseUpOnIcon (int x, int y, unsigned long button_flags, unsigned long key_flags)
166
166
  {
167
 
    NeedRedraw();
 
167
    QueueDraw();
168
168
  }
169
169
 
170
170
  void VToolBar::RecvMouseMoveOnIcon (int x, int y, unsigned long button_flags, unsigned long key_flags)
171
171
  {
172
 
    NeedRedraw();
 
172
    QueueDraw();
173
173
  }
174
174
 
175
175
  void VToolBar::RecvMouseDragOnIcon (int x, int y, int dx, int dy, unsigned long button_flags, unsigned long key_flags)
176
176
  {
177
 
    NeedRedraw();
 
177
    QueueDraw();
178
178
  }
179
179
 
180
180
  void VToolBar::RecvMouseEnterIcon (int x, int y, unsigned long button_flags, unsigned long key_flags)
181
181
  {
182
 
    NeedRedraw();
 
182
    QueueDraw();
183
183
  }
184
184
 
185
185
  void VToolBar::RecvMouseLeaveIcon (int x, int y, unsigned long button_flags, unsigned long key_flags)
186
186
  {
187
 
    NeedRedraw();
 
187
    QueueDraw();
188
188
  }
189
189
}