summaryrefslogtreecommitdiffstats
path: root/src/widgets/shrink-wrap-button.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/shrink-wrap-button.h')
-rw-r--r--src/widgets/shrink-wrap-button.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/widgets/shrink-wrap-button.h b/src/widgets/shrink-wrap-button.h
new file mode 100644
index 000000000..ce615960f
--- /dev/null
+++ b/src/widgets/shrink-wrap-button.h
@@ -0,0 +1,35 @@
+/*
+ * 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
+ */
+
+#ifndef SEEN_INKSCAPE_WIDGETS_SHRINK_WRAP_BUTTON_H
+#define SEEN_INKSCAPE_WIDGETS_SHRINK_WRAP_BUTTON_H
+
+namespace Gtk { class Button; }
+
+namespace Inkscape {
+namespace Widgets {
+
+void shrink_wrap_button(Gtk::Button &button);
+
+}
+}
+
+#endif
+/*
+ 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:encoding=utf-8:textwidth=99 :