blob: fc844f5ecce19b5ebc02806f3f0aa4cd55d50470 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* Inkscape::Widgets::shrink_wrap_button - shrink a button to minimum size
*
* Authors:
* MenTaLguY <mental@rydia.net>
*
* Copyright (C) 2004 MenTaLguY
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <gtkmm/button.h>
#include <gtk/gtk.h>
namespace Inkscape {
namespace Widgets {
void shrink_wrap_button(Gtk::Button &button) {
button.set_border_width(0);
button.set_can_focus(false);
button.set_can_default(false);
Gtk::Widget* child = button.get_child();
Gtk::Requisition req_min;
if (child) {
#if WITH_GTKMM_3_0
Gtk::Requisition req_nat;
child->get_preferred_size(req_min, req_nat);
#else
req_min = child->size_request();
#endif
} else {
req_min.width = 0;
req_min.height = 0;
}
// TODO: Use Gtk::StyleContext instead
GtkStyle* style = gtk_widget_get_style(GTK_WIDGET(button.gobj()));
req_min.width += 2 + 2 * std::max(2, style->xthickness);
req_min.height += 2 + 2 * std::max(2, style->ythickness);
button.set_size_request(req_min.width, req_min.height);
}
}
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
|