~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/gtkmm2ext/gtkmm2ext/click_box.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (C) 1999 Paul Barton-Davis 
 
3
 
 
4
    This program is free software; you can redistribute it and/or modify
 
5
    it under the terms of the GNU General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or
 
7
    (at your option) any later version.
 
8
 
 
9
    This program is distributed in the hope that it will be useful,
 
10
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
    GNU General Public License for more details.
 
13
 
 
14
    You should have received a copy of the GNU General Public License
 
15
    along with this program; if not, write to the Free Software
 
16
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 
 
18
*/
 
19
 
 
20
#ifndef __gtkmm2ext_click_box_h__
 
21
#define __gtkmm2ext_click_box_h__
 
22
 
 
23
#include <string>
 
24
#include <gtkmm.h>
 
25
 
 
26
#include <gtkmm2ext/auto_spin.h>
 
27
 
 
28
namespace Gtkmm2ext {
 
29
 
 
30
class ClickBox : public Gtk::DrawingArea, public AutoSpin
 
31
{
 
32
  public:
 
33
        ClickBox (Gtk::Adjustment *adj, const std::string &name, bool round_to_steps = false);
 
34
        ~ClickBox ();
 
35
 
 
36
        /** Set a slot to `print' the value to put in the box.
 
37
         *  The slot should write the value of the Gtk::Adjustment
 
38
         *  into the char array, and should return true if it has done the printing,
 
39
         *  or false to use the ClickBox's default printing method.
 
40
         */
 
41
        void set_printer (sigc::slot<bool, char *, Gtk::Adjustment &>);
 
42
 
 
43
  protected:
 
44
        bool on_expose_event (GdkEventExpose*);
 
45
 
 
46
  private:
 
47
        Glib::RefPtr<Pango::Layout> layout;
 
48
        int twidth;
 
49
        int theight;
 
50
 
 
51
        void set_label ();
 
52
        void style_changed (const Glib::RefPtr<Gtk::Style> &);
 
53
        bool button_press_handler (GdkEventButton *);
 
54
        bool button_release_handler (GdkEventButton *);
 
55
 
 
56
        sigc::slot<bool, char *, Gtk::Adjustment &> _printer;
 
57
};
 
58
 
 
59
} /* namespace */
 
60
 
 
61
#endif  /* __gtkmm2ext_click_box_h__ */