~om26er/ubuntu/oneiric/nux/sru-888039

« back to all changes in this revision

Viewing changes to Nux/RGBValuator.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2011-07-21 18:41:46 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20110721184146-po1lz9xhvsz1x7kt
Tags: 1.0.6-0ubuntu1
* New upstream release.
* debian/control:
  - dep on libglu1-mesa-dev
* debian/rules:
  - bump shlib

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
  {
106
106
    hlayout             = new HLayout (TEXT ("RGBValuatorLayout"), NUX_TRACKER_LOCATION);
107
107
    redlayout           = new HLayout (TEXT ("RedLayout"), NUX_TRACKER_LOCATION);
108
 
    greenlayout         = new HLayout (NUX_TRACKER_LOCATION);
109
 
    bluelayout          = new HLayout (NUX_TRACKER_LOCATION);
110
 
    alphalayout         = new HLayout (NUX_TRACKER_LOCATION);
 
108
    greenlayout         = new HLayout (TEXT ("GreenLayout"), NUX_TRACKER_LOCATION);
 
109
    bluelayout          = new HLayout (TEXT ("BlueLayout"), NUX_TRACKER_LOCATION);
 
110
    alphalayout         = new HLayout (TEXT ("AlphaLayout"), NUX_TRACKER_LOCATION);
111
111
    vlayout             = new VLayout (TEXT ("RGBVLayout"), NUX_TRACKER_LOCATION);
112
112
    colormodel_layout   = new VLayout (TEXT ("ColorModel"), NUX_TRACKER_LOCATION);
113
113
 
1486
1486
    sigColorChanged.emit (rgb_.red, rgb_.green, rgb_.blue, alpha_);
1487
1487
  }
1488
1488
 
 
1489
  bool RGBValuator::AcceptKeyNavFocus()
 
1490
  {
 
1491
    return false;
 
1492
  }
1489
1493
}