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

« back to all changes in this revision

Viewing changes to plugins/zynaddsubfx/fltk/FL/Fl_Hold_Browser.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_Hold_Browser.H 6614 2009-01-01 16:11:32Z matt $"
 
2
// "$Id: Fl_Hold_Browser.H 8736 2011-05-24 20:00:56Z AlbrechtS $"
3
3
//
4
4
// Hold browser 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
42
42
  user releases the mouse, but you can change this with when().
43
43
  <P>See Fl_Browser for methods to add and remove lines from the browser.
44
44
*/
45
 
class Fl_Hold_Browser : public Fl_Browser {
 
45
class FL_EXPORT Fl_Hold_Browser : public Fl_Browser {
46
46
public:
47
47
  /**
48
48
    Creates a new Fl_Hold_Browser widget using the given
50
50
    The constructor specializes Fl_Browser() by setting the type to FL_HOLD_BROWSER.
51
51
    The destructor destroys the widget and frees all memory that has been allocated.
52
52
 */
53
 
  Fl_Hold_Browser(int X,int Y,int W,int H,const char *l=0)
54
 
        : Fl_Browser(X,Y,W,H,l) {type(FL_HOLD_BROWSER);}
 
53
#if defined(FL_DLL)     // implementation in src/Fl_Browser.cxx
 
54
  Fl_Hold_Browser(int X,int Y,int W,int H,const char *L=0);
 
55
#else
 
56
  Fl_Hold_Browser(int X,int Y,int W,int H,const char *L=0)
 
57
        : Fl_Browser(X,Y,W,H,L) {type(FL_HOLD_BROWSER);}
 
58
#endif
55
59
};
56
60
 
57
61
#endif
58
62
 
59
63
//
60
 
// End of "$Id: Fl_Hold_Browser.H 6614 2009-01-01 16:11:32Z matt $".
 
64
// End of "$Id: Fl_Hold_Browser.H 8736 2011-05-24 20:00:56Z AlbrechtS $".
61
65
//