~ubuntu-branches/ubuntu/trusty/lmms/trusty

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/fltk/FL/fl_show_colormap.H

  • Committer: Charlie Smotherman
  • Date: 2012-12-05 22:08:38 UTC
  • mfrom: (33.1.7 lmms_0.4.13)
  • Revision ID: cjsmo@cableone.net-20121205220838-09pjfzew9m5023hr
* New  Upstream release.
  - Minor tweaking to ZynAddSubFX, CALF, SWH plugins  and Stefan Fendt's RC
    filters.
  - Added UI fixes: Magnentic effect of knobs and Piano-roll fixes
  - Updated German localization and copyright year
* debian/lmms-common.install:
  - added /usr/share/applications so the lmms.desktop file will correctly
    install (LP: #863366)
  - This should also fix the Software Center not displaying lmms in sound
    and video (LP: #824231)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//
2
 
// "$Id: fl_show_colormap.H 6614 2009-01-01 16:11:32Z matt $"
 
2
// "$Id: fl_show_colormap.H 8621 2011-04-23 15:46:30Z AlbrechtS $"
3
3
//
4
4
// Colormap picker header file for the Fast Light Tool Kit (FLTK).
5
5
//
6
 
// Copyright 1998-2009 by Bill Spitzak and others.
 
6
// Copyright 1998-2010 by Bill Spitzak and others.
7
7
//
8
8
// This library is free software; you can redistribute it and/or
9
9
// modify it under the terms of the GNU Library General Public
25
25
//     http://www.fltk.org/str.php
26
26
//
27
27
 
 
28
/** \file
 
29
   The fl_show_colormap() function hides the implementation classes used
 
30
   to provide the popup window and color selection mechanism.
 
31
*/
 
32
 
28
33
#ifndef fl_show_colormap_H
29
34
#define fl_show_colormap_H
30
35
 
 
36
/* doxygen comment here to avoid exposing ColorMenu in fl_show_colormap.cxx
 
37
*/
 
38
 
 
39
/** \addtogroup  fl_attributes
 
40
    @{ */
 
41
 
 
42
/**
 
43
  \brief Pops up a window to let the user pick a colormap entry.
 
44
  \image html fl_show_colormap.png
 
45
  \image latex fl_show_colormap.png "fl_show_colormap" height=10cm
 
46
  \param[in] oldcol color to be highlighted when grid is shown.
 
47
  \retval Fl_Color value of the chosen colormap entry.
 
48
  \see Fl_Color_Chooser
 
49
*/
31
50
FL_EXPORT Fl_Color fl_show_colormap(Fl_Color oldcol);
32
51
 
 
52
/** @} */
 
53
 
33
54
#endif
34
55
 
35
56
//
36
 
// End of "$Id: fl_show_colormap.H 6614 2009-01-01 16:11:32Z matt $".
 
57
// End of "$Id: fl_show_colormap.H 8621 2011-04-23 15:46:30Z AlbrechtS $".
37
58
//