/[svn]/gigedit/trunk/src/gigedit/wrapLabel.hh
ViewVC logotype

Contents of /gigedit/trunk/src/gigedit/wrapLabel.hh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2344 - (show annotations) (download)
Sun Apr 29 16:15:45 2012 UTC (11 years, 11 months ago) by persson
File size: 1837 byte(s)
* gtkmm 3 fix: the WrapLabel custom widget is not needed in gtkmm 3

1 /* *************************************************************************
2 * Copyright (c) 2005 VMware, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * *************************************************************************/
23
24 #ifndef LIBVIEW_WRAP_LABEL_HH
25 #define LIBVIEW_WRAP_LABEL_HH
26
27
28 #include <gtkmm/label.h>
29
30
31 namespace view {
32
33
34 class WrapLabel
35 : public Gtk::Label
36 {
37 public:
38 WrapLabel(const Glib::ustring &text = "");
39
40 void set_text(const Glib::ustring &str);
41 void set_markup(const Glib::ustring &str);
42
43 protected:
44 virtual void on_size_allocate(Gtk::Allocation &alloc);
45 virtual void on_size_request(Gtk::Requisition *req);
46
47 private:
48 void SetWrapWidth(int width);
49
50 int mWrapWidth;
51 int mWrapHeight;
52 };
53
54
55 } /* namespace view */
56
57
58 #endif /* LIBVIEW_WRAP_LABEL_HH */

  ViewVC Help
Powered by ViewVC