summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/handlebox.h
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2012-06-17 07:08:03 +0000
committerJon A. Cruz <jon@joncruz.org>2012-06-17 07:08:03 +0000
commitaa042e930bc5cce596829086ce84f2c3c7c885ad (patch)
treec04b14ad87ac3df0fe0b4f83146a0b1019922c76 /src/ui/widget/handlebox.h
parentSet GDL-3 as a fixed dependency for GTK+ 3 build. (diff)
downloadinkscape-aa042e930bc5cce596829086ce84f2c3c7c885ad.tar.gz
inkscape-aa042e930bc5cce596829086ce84f2c3c7c885ad.zip
Removed outdated classes.
Pruned header to not introduce extraneous includes. (bzr r11502)
Diffstat (limited to 'src/ui/widget/handlebox.h')
-rw-r--r--src/ui/widget/handlebox.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/ui/widget/handlebox.h b/src/ui/widget/handlebox.h
deleted file mode 100644
index db384552b..000000000
--- a/src/ui/widget/handlebox.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- *
- * Author:
- * Derek P. Moore <derekm@hackunix.org>
- *
- * Copyright (C) 2004 Derek P. Moore
- *
- * Released under GNU GPL. Read the file 'COPYING' for more information.
- */
-
-#ifndef INKSCAPE_UI_WIDGET_HANDLEBOX_H
-#define INKSCAPE_UI_WIDGET_HANDLEBOX_H
-
-#include <gtkmm/handlebox.h>
-
-namespace Inkscape {
-namespace UI {
-namespace Widget {
-
-/**
- * Adds a detachment handle to another widget.
- *
- * This work really doesn't amount to much more than a convenience constructor
- * for Gtk::HandleBox. Maybe this could be contributed back to Gtkmm, as
- * Gtkmm provides several convenience constructors for other widgets as well.
- */
-class HandleBox : public Gtk::HandleBox
-{
-public:
- HandleBox(Gtk::Widget *widget,
- Gtk::PositionType position = Gtk::POS_LEFT);
-
-protected:
- Gtk::Widget *_widget;
-};
-
-} // namespace Widget
-} // namespace UI
-} // namespace Inkscape
-
-#endif // INKSCAPE_UI_WIDGET_HANDLEBOX_H
-
-/*
- Local Variables:
- mode:c++
- c-file-style:"stroustrup"
- c-file-offsets:((innamespace . 0)(inline-open . 0))
- indent-tabs-mode:nil
- fill-column:99
- End:
-*/
-// vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :